@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Roboto&family=Noto+Sans+JP:wght@300;400;500;700&family=Poppins:wght@100;300;400;600;700&family=Zen+Maru+Gothic:wght@700&display=swap");
/* # =================================================================
#	メイン
# ================================================================= */
/*!
 * blocks-content.css
 * - common.css の強いリセット（*{margin:0…}）の影響下でも “本文だけ” 破綻しにくい設計
 *
 * 想定HTML:
 * <* class="post-content wp-block-post-content is-layout-flow"> ... </*>
 */
/* =========================================================
   0) 本文コンテナのベース
   ========================================================= */
.wp-block-post-content {
  /* common.css が font-size: inherit を全要素に当てるので、本文側で基準を作る */
  font-size: var(--wp--preset--font-size--medium, 18px);
  line-height: 1.8;
  font-family: "Noto Sans JP", "游ゴシック", "YuGothic", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Helvetica, Arial, Verdana, sans-serif;
  font-weight: 400;
  -webkit-font-feature-settings: "liga";
  font-feature-settings: "liga";
  /* 文字色は theme.json があるならそれを優先 */
  color: var(--wp--preset--color--contrast, inherit);
  /* 長文の読みやすさ */
  word-break: break-word;
  overflow-wrap: anywhere;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
}

/* 画像や埋め込みがはみ出しにくいように */
.wp-block-post-content img,
.wp-block-post-content video,
.wp-block-post-content iframe {
  max-width: 100%;
}

.wp-block-post-content iframe[src*='youtube'] {
  aspect-ratio: 16 / 9;
  height: auto;
}

/* =========================================================
   1) ブロック間の標準余白（Twenty系の肝）
   ========================================================= */
/* theme.json の blockGap を尊重。無ければ 1.5rem を標準に。 */
.wp-block-post-content.is-layout-flow {
  --my--content-gap: var(--wp--style--block-gap, 1.5rem);
}

/* 「兄弟ブロックの間にだけ」余白を付ける */
.wp-block-post-content.is-layout-flow > * + * {
  -webkit-margin-before: var(--my--content-gap);
  margin-block-start: var(--my--content-gap);
}

/* =========================================================
   2) 見出し（控えめに Twenty系っぽく）
   ========================================================= */
.wp-block-post-content :where(h1, h2, h3, h4, h5, h6) {
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: 0.01em;
}

/* 見出しはブロック間余白だけだと弱いことがあるので、少し強調 */
.wp-block-post-content :where(h1) {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.wp-block-post-content :where(h2) {
  font-size: clamp(1.5rem, 2.4vw, 2rem);
}

.wp-block-post-content :where(h3) {
  font-size: clamp(1.25rem, 2vw, 1.6rem);
}

.wp-block-post-content :where(h4) {
  font-size: 1.15rem;
}

.wp-block-post-content :where(h5) {
  font-size: 1.05rem;
}

.wp-block-post-content :where(h6) {
  font-size: 1.0rem;
}

/* 見出し直後の余白は少し詰める（文章のまとまり感） */
.wp-block-post-content :where(h1, h2, h3, h4, h5, h6) + * {
  -webkit-margin-before: calc(var(--my--content-gap) * 0.55);
  margin-block-start: calc(var(--my--content-gap) * 0.55);
}

/* =========================================================
   3) 段落・リンク
   ========================================================= */
.wp-block-post-content {
  font-size: 16px;
  line-height: 1.75em;
}

@media only screen and (max-width: 767px) {
  .wp-block-post-content {
    font-size: 14px;
  }
}

.wp-block-post-content p {
  /* ブロック間余白が主役なので、p自体のmarginは持たせない（=Twenty寄り） */
  margin: 0;
}

.wp-block-post-content a {
  color: var(--wp--preset--color--primary, currentColor);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

.wp-block-post-content a:hover {
  text-decoration-thickness: 0.12em;
}

/* =========================================================
   4) リスト（common.cssで潰れがちなので復活）
   ========================================================= */
.wp-block-post-content :where(ul, ol) {
  margin: 0;
  -webkit-padding-start: 1.5em;
  padding-inline-start: 1.5em;
}

.wp-block-post-content ul {
  list-style: disc;
}

.wp-block-post-content ol {
  list-style: decimal;
}

.wp-block-post-content li + li {
  -webkit-margin-before: 0.25em;
  margin-block-start: 0.25em;
}

/* 入れ子は少し詰める */
.wp-block-post-content li :where(ul, ol) {
  -webkit-margin-before: 0.35em;
  margin-block-start: 0.35em;
}

/* =========================================================
   5) 引用・プルクオート
   ========================================================= */
.wp-block-post-content blockquote {
  margin: 0;
  padding: 0.2em 0 0.2em 1.1em;
  border-left: 3px solid currentColor;
  opacity: 0.9;
}

.wp-block-post-content blockquote cite {
  display: block;
  margin-top: 0.6em;
  font-size: 0.9em;
  opacity: 0.8;
}

/* pullquote はコア側CSSもあるので最低限の整え */
.wp-block-post-content .wp-block-pullquote {
  margin: 0;
  padding: 1.2em 1.4em;
  border-top: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
}

.wp-block-post-content .wp-block-pullquote blockquote {
  border-left: none;
  padding: 0;
}

/* =========================================================
   6) 区切り線（separator）
   ========================================================= */
.wp-block-post-content hr,
.wp-block-post-content .wp-block-separator {
  border: none;
  border-top: 1px solid currentColor;
  opacity: 0.25;
  margin: 0;
  /* 余白は blockGap に任せる */
}

/* =========================================================
   7) コード・整形済みテキスト
   ========================================================= */
.wp-block-post-content :where(code, kbd, samp) {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 0.95em;
  padding: 0.15em 0.35em;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.06);
}

.wp-block-post-content pre {
  margin: 0;
  padding: 1em 1.1em;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.06);
  overflow: auto;
}

.wp-block-post-content pre code {
  padding: 0;
  background: transparent;
}

/* =========================================================
   8) テーブル
   ========================================================= */
.wp-block-post-content table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

.wp-block-post-content th,
.wp-block-post-content td {
  padding: 0.6em 0.75em;
  border: 1px solid rgba(0, 0, 0, 0.15);
  vertical-align: top;
}

.wp-block-post-content thead th {
  background: rgba(0, 0, 0, 0.05);
}

/* =========================================================
   9) 画像・キャプション・ギャラリー
   ========================================================= */
.wp-block-post-content figure {
  margin: 0;
}

.wp-block-post-content figcaption {
  margin-top: 0.6em;
  font-size: 0.9em;
  line-height: 1.6;
  opacity: 0.8;
}

/* gallery はコアCSSに寄せつつ微調整 */
.wp-block-post-content .wp-block-gallery {
  margin: 0;
}

/* =========================================================
   10) ボタン（coreの見た目を邪魔しない程度）
   ========================================================= */
.wp-block-post-content .wp-block-button .wp-block-button__link {
  text-decoration: none;
  border-radius: 9999px;
}

/* =========================================================
   11) アライン（wide/full）
   - レイアウト幅は theme.json 側（layout.contentSize/wideSize）推奨
   ========================================================= */
.wp-block-post-content :where(.alignwide, .alignfull) {
  width: 100%;
}

/* “とりあえず” wide/full を効かせたい場合の簡易版（必要なら調整）
   ※レイアウト設計によっては邪魔になるので、不要なら削除OK */
.wp-block-post-content .alignwide {
  max-width: var(--wp--style--global--wide-size, 1100px);
  margin-inline: auto;
}

.wp-block-post-content .alignfull {
  max-width: none;
  width: 100%;
  margin-inline: 0;
}

/* =========================================================
   12) 便利な最低限の保険
   ========================================================= */
/* 空の段落が高さだけ持つのを防ぎたい場合 */
.wp-block-post-content p:empty {
  display: none;
}

/* details ブロック等 */
.wp-block-post-content details {
  margin: 0;
  padding: 0.6em 0.8em;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 10px;
}

.wp-block-post-content details > summary {
  cursor: pointer;
  font-weight: 600;
}

.wp-block-columns {
  gap: 0;
}

/* フォーム要素を個別にデフォルトに戻す */
.wp-block-post-content .wpcf7 input,
.wp-block-post-content .wpcf7 textarea,
.wp-block-post-content .wpcf7 select,
.wp-block-post-content .wpcf7 button {
  all: revert;
}

.wp-block-post-content .wpcf7 .wpcf7-form-control.wpcf7-text {
  max-width: 90%;
  border: 1px solid #cccccc;
}

.wp-block-post-content .wpcf7 .wpcf7-select {
  max-width: 90%;
  border: 1px solid #cccccc;
}

.wp-block-post-content .wpcf7 .wpcf7-textarea {
  width: 90%;
  border: 1px solid #cccccc;
}

.wp-block-post-content .wpcf7 .wpcf7-form-control.wpcf7-submit {
  border-radius: 0;
  cursor: pointer;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid #000000;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #ffffff;
  color: #000000;
  position: relative;
  left: 0px;
  top: 0px;
  min-height: 50px;
  padding: 10px 40px;
  text-align: center;
  font-weight: bold;
}

.wpcf7-form > * {
  -webkit-margin-before: 1.5em !important;
  margin-block-start: 1.5em !important;
  -webkit-margin-after: 1.5em !important;
  margin-block-end: 1.5em !important;
}

.wpcf7 form.sent .wpcf7-response-output {
  background-color: #F3FFF3;
  border-color: #46b450;
  border-style: solid;
  border-width: 2px;
  margin-left: 0;
  margin-right: 0;
  padding: 1em 0.6em;
  border-radius: 8px;
  color: #46b450;
  font-size: 1.0em;
  line-height: 1.5em;
}

.wpcf7 form.invalid .wpcf7-response-output {
  background-color: #FFF5F5;
  border-color: #dc3232;
  border-style: solid;
  border-width: 2px;
  margin-left: 0;
  margin-right: 0;
  padding: 1em 0.6em;
  border-radius: 8px;
  color: #dc3232;
  font-size: 1.0em;
  line-height: 1.5em;
}

.wp-block-post-content.is-layout-flow,
.wp-block-post-content.is-layout-flow.old-post {
  /*> iframe {
		width: 100%;
		aspect-ratio: 500 / 281;
	}*/
  /* writer profile */
  /* card link */
}

.wp-block-post-content.is-layout-flow .postTxt.flame,
.wp-block-post-content.is-layout-flow.old-post .postTxt.flame {
  background-color: rgba(188, 157, 0, 0.1);
  padding: 20px;
  font-size: 16px;
  line-height: 1.75em;
}

.wp-block-post-content.is-layout-flow .postTxt.flame > *,
.wp-block-post-content.is-layout-flow.old-post .postTxt.flame > * {
  margin-bottom: 1.75em;
}

.wp-block-post-content.is-layout-flow .postTxt.flame > *:nth-last-child(1),
.wp-block-post-content.is-layout-flow.old-post .postTxt.flame > *:nth-last-child(1) {
  margin-bottom: 0;
}

@media only screen and (max-width: 767px) {
  .wp-block-post-content.is-layout-flow .postTxt.flame,
  .wp-block-post-content.is-layout-flow.old-post .postTxt.flame {
    margin-top: 20px;
    margin-left: -20px;
    margin-right: -20px;
    font-size: 14px;
    line-height: 1.75em;
  }
}

.wp-block-post-content.is-layout-flow h2.wp-block-heading,
.wp-block-post-content.is-layout-flow h2.a_ttl,
.wp-block-post-content.is-layout-flow.old-post h2.wp-block-heading,
.wp-block-post-content.is-layout-flow.old-post h2.a_ttl {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border-left: 10px solid #BC9D00;
  padding-left: 18px;
  font-size: 24px;
  line-height: 1.75em;
  font-weight: bold;
  -webkit-margin-before: 45px;
  margin-block-start: 45px;
  -webkit-margin-after: 15px;
  margin-block-end: 15px;
}

.wp-block-post-content.is-layout-flow h2.wp-block-heading:nth-child(1),
.wp-block-post-content.is-layout-flow h2.a_ttl:nth-child(1),
.wp-block-post-content.is-layout-flow.old-post h2.wp-block-heading:nth-child(1),
.wp-block-post-content.is-layout-flow.old-post h2.a_ttl:nth-child(1) {
  -webkit-margin-before: 0;
  margin-block-start: 0;
}

@media only screen and (max-width: 767px) {
  .wp-block-post-content.is-layout-flow h2.wp-block-heading,
  .wp-block-post-content.is-layout-flow h2.a_ttl,
  .wp-block-post-content.is-layout-flow.old-post h2.wp-block-heading,
  .wp-block-post-content.is-layout-flow.old-post h2.a_ttl {
    border-left-width: 6px;
    padding-left: 10px;
    font-size: 18px;
    -webkit-margin-before: 40px;
    margin-block-start: 40px;
    -webkit-margin-after: 10px;
    margin-block-end: 10px;
  }
}

.wp-block-post-content.is-layout-flow h2.wp-block-heading.is-style-other,
.wp-block-post-content.is-layout-flow h2.a_ttl.is-style-other,
.wp-block-post-content.is-layout-flow.old-post h2.wp-block-heading.is-style-other,
.wp-block-post-content.is-layout-flow.old-post h2.a_ttl.is-style-other {
  border-left: none;
  padding: 0;
  font-size: 28px;
  line-height: 1.25em;
  font-weight: bold;
}

.wp-block-post-content.is-layout-flow h2.wp-block-heading.is-style-other:before,
.wp-block-post-content.is-layout-flow h2.a_ttl.is-style-other:before,
.wp-block-post-content.is-layout-flow.old-post h2.wp-block-heading.is-style-other:before,
.wp-block-post-content.is-layout-flow.old-post h2.a_ttl.is-style-other:before {
  content: 'ENGLISH';
  text-transform: uppercase;
  display: block;
  font-size: 14px;
  line-height: 1.25em;
  font-weight: bold;
  color: #BC9D00;
  margin-bottom: 2px;
}

.wp-block-post-content.is-layout-flow h2.wp-block-heading.is-style-other[data-eng]:before,
.wp-block-post-content.is-layout-flow h2.a_ttl.is-style-other[data-eng]:before,
.wp-block-post-content.is-layout-flow.old-post h2.wp-block-heading.is-style-other[data-eng]:before,
.wp-block-post-content.is-layout-flow.old-post h2.a_ttl.is-style-other[data-eng]:before {
  content: attr(data-eng);
}

@media only screen and (max-width: 767px) {
  .wp-block-post-content.is-layout-flow h2.wp-block-heading.is-style-other,
  .wp-block-post-content.is-layout-flow h2.a_ttl.is-style-other,
  .wp-block-post-content.is-layout-flow.old-post h2.wp-block-heading.is-style-other,
  .wp-block-post-content.is-layout-flow.old-post h2.a_ttl.is-style-other {
    font-size: 20px;
  }
  .wp-block-post-content.is-layout-flow h2.wp-block-heading.is-style-other:before,
  .wp-block-post-content.is-layout-flow h2.a_ttl.is-style-other:before,
  .wp-block-post-content.is-layout-flow.old-post h2.wp-block-heading.is-style-other:before,
  .wp-block-post-content.is-layout-flow.old-post h2.a_ttl.is-style-other:before {
    font-size: 12px;
  }
}

.wp-block-post-content.is-layout-flow h3.wp-block-heading,
.wp-block-post-content.is-layout-flow h3.typeA_ttl,
.wp-block-post-content.is-layout-flow.old-post h3.wp-block-heading,
.wp-block-post-content.is-layout-flow.old-post h3.typeA_ttl {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  background-image: url("../img/ic_li_square.svg");
  background-repeat: no-repeat;
  background-position: 0 0.5em;
  background-size: 10px auto;
  padding-left: 20px;
  font-size: 18px;
  line-height: 1.5em;
  font-weight: bold;
  -webkit-margin-before: 45px;
  margin-block-start: 45px;
  -webkit-margin-after: 15px;
  margin-block-end: 15px;
}

.wp-block-post-content.is-layout-flow h3.wp-block-heading:nth-child(1),
.wp-block-post-content.is-layout-flow h3.typeA_ttl:nth-child(1),
.wp-block-post-content.is-layout-flow.old-post h3.wp-block-heading:nth-child(1),
.wp-block-post-content.is-layout-flow.old-post h3.typeA_ttl:nth-child(1) {
  -webkit-margin-before: 0;
  margin-block-start: 0;
}

@media only screen and (max-width: 767px) {
  .wp-block-post-content.is-layout-flow h3.wp-block-heading,
  .wp-block-post-content.is-layout-flow h3.typeA_ttl,
  .wp-block-post-content.is-layout-flow.old-post h3.wp-block-heading,
  .wp-block-post-content.is-layout-flow.old-post h3.typeA_ttl {
    background-size: 6px auto;
    padding-left: 15px;
    font-size: 16px;
    -webkit-margin-before: 40px;
    margin-block-start: 40px;
    -webkit-margin-after: 10px;
    margin-block-end: 10px;
  }
}

.wp-block-post-content.is-layout-flow h1 + *,
.wp-block-post-content.is-layout-flow h2 + *,
.wp-block-post-content.is-layout-flow h3 + *,
.wp-block-post-content.is-layout-flow h4 + *,
.wp-block-post-content.is-layout-flow h5 + *,
.wp-block-post-content.is-layout-flow h6 + *,
.wp-block-post-content.is-layout-flow.old-post h1 + *,
.wp-block-post-content.is-layout-flow.old-post h2 + *,
.wp-block-post-content.is-layout-flow.old-post h3 + *,
.wp-block-post-content.is-layout-flow.old-post h4 + *,
.wp-block-post-content.is-layout-flow.old-post h5 + *,
.wp-block-post-content.is-layout-flow.old-post h6 + * {
  -webkit-margin-before: 0;
  margin-block-start: 0;
}

.wp-block-post-content.is-layout-flow .post_photo,
.wp-block-post-content.is-layout-flow.old-post .post_photo {
  -webkit-margin-before: var(--my--content-gap);
  margin-block-start: var(--my--content-gap);
}

.wp-block-post-content.is-layout-flow .post_photo:nth-child(1),
.wp-block-post-content.is-layout-flow.old-post .post_photo:nth-child(1) {
  -webkit-margin-before: 0;
  margin-block-start: 0;
}

.wp-block-post-content.is-layout-flow .wp-block-image figcaption,
.wp-block-post-content.is-layout-flow .post_photo figure figcaption,
.wp-block-post-content.is-layout-flow.old-post .wp-block-image figcaption,
.wp-block-post-content.is-layout-flow.old-post .post_photo figure figcaption {
  margin: 0.4em 0 0;
  text-align: left;
  color: #000000;
  font-size: 1.0em;
}

.wp-block-post-content.is-layout-flow .wp-block-button .wp-element-button,
.wp-block-post-content.is-layout-flow .wp-block-button .wp-block-button__link,
.wp-block-post-content.is-layout-flow.old-post .wp-block-button .wp-element-button,
.wp-block-post-content.is-layout-flow.old-post .wp-block-button .wp-block-button__link {
  border-radius: 0;
  cursor: pointer;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid #000000;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #ffffff;
  color: #000000;
  position: relative;
  left: 0px;
  top: 0px;
  min-height: 50px;
  padding: 10px 40px;
  text-align: center;
  font-weight: bold;
}

.wp-block-post-content.is-layout-flow .wp-block-button .wp-element-button:after,
.wp-block-post-content.is-layout-flow .wp-block-button .wp-block-button__link:after,
.wp-block-post-content.is-layout-flow.old-post .wp-block-button .wp-element-button:after,
.wp-block-post-content.is-layout-flow.old-post .wp-block-button .wp-block-button__link:after {
  display: block;
  content: "";
  background-image: url("../img/ic_arw01.svg");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  position: absolute;
  top: 0px;
  bottom: 0px;
  right: 10px;
  margin: auto 0px;
  width: 17px;
  height: 17px;
}

.wp-block-post-content.is-layout-flow .wp-block-button .wp-element-button:link, .wp-block-post-content.is-layout-flow .wp-block-button .wp-element-button:visited,
.wp-block-post-content.is-layout-flow .wp-block-button .wp-block-button__link:link,
.wp-block-post-content.is-layout-flow .wp-block-button .wp-block-button__link:visited,
.wp-block-post-content.is-layout-flow.old-post .wp-block-button .wp-element-button:link,
.wp-block-post-content.is-layout-flow.old-post .wp-block-button .wp-element-button:visited,
.wp-block-post-content.is-layout-flow.old-post .wp-block-button .wp-block-button__link:link,
.wp-block-post-content.is-layout-flow.old-post .wp-block-button .wp-block-button__link:visited {
  color: #000000;
  text-decoration: none;
  opacity: 1.0;
}

.wp-block-post-content.is-layout-flow .wp-block-button .wp-element-button:hover, .wp-block-post-content.is-layout-flow .wp-block-button .wp-element-button:active,
.wp-block-post-content.is-layout-flow .wp-block-button .wp-block-button__link:hover,
.wp-block-post-content.is-layout-flow .wp-block-button .wp-block-button__link:active,
.wp-block-post-content.is-layout-flow.old-post .wp-block-button .wp-element-button:hover,
.wp-block-post-content.is-layout-flow.old-post .wp-block-button .wp-element-button:active,
.wp-block-post-content.is-layout-flow.old-post .wp-block-button .wp-block-button__link:hover,
.wp-block-post-content.is-layout-flow.old-post .wp-block-button .wp-block-button__link:active {
  color: #000000;
  text-decoration: none;
  opacity: 0.7;
}

.wp-block-post-content.is-layout-flow .wp-block-button .wp-element-button.invert,
.wp-block-post-content.is-layout-flow .wp-block-button .wp-block-button__link.invert,
.wp-block-post-content.is-layout-flow.old-post .wp-block-button .wp-element-button.invert,
.wp-block-post-content.is-layout-flow.old-post .wp-block-button .wp-block-button__link.invert {
  background-color: transparent;
  border-color: #ffffff;
  color: #ffffff;
}

.wp-block-post-content.is-layout-flow .wp-block-button .wp-element-button.invert:after,
.wp-block-post-content.is-layout-flow .wp-block-button .wp-block-button__link.invert:after,
.wp-block-post-content.is-layout-flow.old-post .wp-block-button .wp-element-button.invert:after,
.wp-block-post-content.is-layout-flow.old-post .wp-block-button .wp-block-button__link.invert:after {
  background-image: url("../img/ic_arw01_fff.svg");
}

.wp-block-post-content.is-layout-flow .btnBase.typeA,
.wp-block-post-content.is-layout-flow.old-post .btnBase.typeA {
  border-radius: 0;
  cursor: pointer;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid #000000;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #ffffff;
  color: #000000;
  position: relative;
  left: 0px;
  top: 0px;
  min-height: 50px;
  padding: 10px 40px;
  text-align: center;
  font-weight: bold;
}

.wp-block-post-content.is-layout-flow .btnBase.typeA:after,
.wp-block-post-content.is-layout-flow.old-post .btnBase.typeA:after {
  display: block;
  content: "";
  background-image: url("../img/ic_arw01.svg");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  position: absolute;
  top: 0px;
  bottom: 0px;
  right: 10px;
  margin: auto 0px;
  width: 17px;
  height: 17px;
}

.wp-block-post-content.is-layout-flow .btnBase.typeA:link, .wp-block-post-content.is-layout-flow .btnBase.typeA:visited,
.wp-block-post-content.is-layout-flow.old-post .btnBase.typeA:link,
.wp-block-post-content.is-layout-flow.old-post .btnBase.typeA:visited {
  color: #000000;
  text-decoration: none;
  opacity: 1.0;
}

.wp-block-post-content.is-layout-flow .btnBase.typeA:hover, .wp-block-post-content.is-layout-flow .btnBase.typeA:active,
.wp-block-post-content.is-layout-flow.old-post .btnBase.typeA:hover,
.wp-block-post-content.is-layout-flow.old-post .btnBase.typeA:active {
  color: #000000;
  text-decoration: none;
  opacity: 0.7;
}

.wp-block-post-content.is-layout-flow .btnBase.typeA.invert,
.wp-block-post-content.is-layout-flow.old-post .btnBase.typeA.invert {
  background-color: transparent;
  border-color: #ffffff;
  color: #ffffff;
}

.wp-block-post-content.is-layout-flow .btnBase.typeA.invert:after,
.wp-block-post-content.is-layout-flow.old-post .btnBase.typeA.invert:after {
  background-image: url("../img/ic_arw01_fff.svg");
}

.wp-block-post-content.is-layout-flow .btnBase[style],
.wp-block-post-content.is-layout-flow.old-post .btnBase[style] {
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  display: inline-block;
  color: #fff;
  -webkit-box-shadow: 2px 2px 0 #bbb;
  box-shadow: 2px 2px 0 #bbb;
}

.wp-block-post-content.is-layout-flow .btnBase[style]:after,
.wp-block-post-content.is-layout-flow.old-post .btnBase[style]:after {
  display: none;
}

.wp-block-post-content.is-layout-flow .btnBase.typeA[style],
.wp-block-post-content.is-layout-flow.old-post .btnBase.typeA[style] {
  width: 200px;
  padding: 12px 0;
  background: #c90e0e;
}

.wp-block-post-content.is-layout-flow .btnBase.typeB[style],
.wp-block-post-content.is-layout-flow.old-post .btnBase.typeB[style] {
  width: 120px;
  padding: 8px 0;
  background: #000;
}

.wp-block-post-content.is-layout-flow .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr th, .wp-block-post-content.is-layout-flow .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr td,
.wp-block-post-content.is-layout-flow table tr th,
.wp-block-post-content.is-layout-flow table tr td,
.wp-block-post-content.is-layout-flow.old-post .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr th,
.wp-block-post-content.is-layout-flow.old-post .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr td,
.wp-block-post-content.is-layout-flow.old-post table tr th,
.wp-block-post-content.is-layout-flow.old-post table tr td {
  border-color: #BC9D00;
}

.wp-block-post-content.is-layout-flow .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr th,
.wp-block-post-content.is-layout-flow table tr th,
.wp-block-post-content.is-layout-flow.old-post .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr th,
.wp-block-post-content.is-layout-flow.old-post table tr th {
  background-color: #F8F5E5;
  font-weight: bold;
}

.wp-block-post-content.is-layout-flow .wp-block-separator,
.wp-block-post-content.is-layout-flow.old-post .wp-block-separator {
  opacity: 1.0;
  color: #cccccc;
  width: 100%;
  -webkit-margin-before: 1.75em;
  margin-block-start: 1.75em;
  -webkit-margin-after: 1.75em;
  margin-block-end: 1.75em;
}

.wp-block-post-content.is-layout-flow .wp-block-embed,
.wp-block-post-content.is-layout-flow .cont_video .embed-responsive,
.wp-block-post-content.is-layout-flow.old-post .wp-block-embed,
.wp-block-post-content.is-layout-flow.old-post .cont_video .embed-responsive {
  width: 100% !important;
  height: auto !important;
  display: block !important;
}

.wp-block-post-content.is-layout-flow .wp-block-embed lite-youtube,
.wp-block-post-content.is-layout-flow .cont_video .embed-responsive lite-youtube,
.wp-block-post-content.is-layout-flow.old-post .wp-block-embed lite-youtube,
.wp-block-post-content.is-layout-flow.old-post .cont_video .embed-responsive lite-youtube {
  max-width: none;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
}

.wp-block-post-content.is-layout-flow .wp-block-embed iframe,
.wp-block-post-content.is-layout-flow .cont_video .embed-responsive iframe,
.wp-block-post-content.is-layout-flow.old-post .wp-block-embed iframe,
.wp-block-post-content.is-layout-flow.old-post .cont_video .embed-responsive iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
}

.wp-block-post-content.is-layout-flow > *[style*='width:100%'],
.wp-block-post-content.is-layout-flow > *[style*='width: 100%'],
.wp-block-post-content.is-layout-flow.old-post > *[style*='width:100%'],
.wp-block-post-content.is-layout-flow.old-post > *[style*='width: 100%'] {
  -webkit-box-sizing: border-box !important;
  box-sizing: border-box !important;
}

.wp-block-post-content.is-layout-flow .fieldType_C .photoList,
.wp-block-post-content.is-layout-flow.old-post .fieldType_C .photoList {
  list-style-type: none;
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  direction: ltr;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  grid-template-rows: auto;
}

.wp-block-post-content.is-layout-flow .fieldType_C .photoList > li,
.wp-block-post-content.is-layout-flow.old-post .fieldType_C .photoList > li {
  margin: 0;
}

@media only screen and (max-width: 767px) {
  .wp-block-post-content.is-layout-flow .fieldType_C .photoList,
  .wp-block-post-content.is-layout-flow.old-post .fieldType_C .photoList {
    grid-template-columns: 100% !important;
  }
}

.wp-block-post-content.is-layout-flow .fieldType_A,
.wp-block-post-content.is-layout-flow .fieldType_B,
.wp-block-post-content.is-layout-flow.old-post .fieldType_A,
.wp-block-post-content.is-layout-flow.old-post .fieldType_B {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  direction: ltr;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  grid-template-rows: auto;
}

@media only screen and (max-width: 767px) {
  .wp-block-post-content.is-layout-flow .fieldType_A,
  .wp-block-post-content.is-layout-flow .fieldType_B,
  .wp-block-post-content.is-layout-flow.old-post .fieldType_A,
  .wp-block-post-content.is-layout-flow.old-post .fieldType_B {
    grid-template-columns: 100% !important;
  }
}

@media all and (min-width: 768px) {
  .wp-block-post-content.is-layout-flow .fieldType_B > *:nth-child(1),
  .wp-block-post-content.is-layout-flow.old-post .fieldType_B > *:nth-child(1) {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
  }
  .wp-block-post-content.is-layout-flow .fieldType_B > *:nth-child(2),
  .wp-block-post-content.is-layout-flow.old-post .fieldType_B > *:nth-child(2) {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
  }
}

.wp-block-post-content.is-layout-flow .wp-block-media-text,
.wp-block-post-content.is-layout-flow .fieldType_C .photoList,
.wp-block-post-content.is-layout-flow .fieldType_A,
.wp-block-post-content.is-layout-flow .fieldType_B,
.wp-block-post-content.is-layout-flow.old-post .wp-block-media-text,
.wp-block-post-content.is-layout-flow.old-post .fieldType_C .photoList,
.wp-block-post-content.is-layout-flow.old-post .fieldType_A,
.wp-block-post-content.is-layout-flow.old-post .fieldType_B {
  -webkit-column-gap: 40px;
  -moz-column-gap: 40px;
  column-gap: 40px;
  row-gap: 1.75em;
}

.wp-block-post-content.is-layout-flow .wp-block-media-text > .wp-block-media-text__content,
.wp-block-post-content.is-layout-flow .fieldType_C .photoList > .wp-block-media-text__content,
.wp-block-post-content.is-layout-flow .fieldType_A > .wp-block-media-text__content,
.wp-block-post-content.is-layout-flow .fieldType_B > .wp-block-media-text__content,
.wp-block-post-content.is-layout-flow.old-post .wp-block-media-text > .wp-block-media-text__content,
.wp-block-post-content.is-layout-flow.old-post .fieldType_C .photoList > .wp-block-media-text__content,
.wp-block-post-content.is-layout-flow.old-post .fieldType_A > .wp-block-media-text__content,
.wp-block-post-content.is-layout-flow.old-post .fieldType_B > .wp-block-media-text__content {
  padding: 0;
}

.wp-block-post-content.is-layout-flow .page_next,
.wp-block-post-content.is-layout-flow.old-post .page_next {
  background-color: rgba(188, 157, 0, 0.1);
  padding: 20px;
  text-align: center;
}

.wp-block-post-content.is-layout-flow .page_next > br:nth-child(1),
.wp-block-post-content.is-layout-flow .page_next > br:nth-child(1) + br,
.wp-block-post-content.is-layout-flow.old-post .page_next > br:nth-child(1),
.wp-block-post-content.is-layout-flow.old-post .page_next > br:nth-child(1) + br {
  display: none;
}

.wp-block-post-content.is-layout-flow .page_next > p,
.wp-block-post-content.is-layout-flow.old-post .page_next > p {
  -webkit-margin-after: var(--my--content-gap);
  margin-block-end: var(--my--content-gap);
}

.wp-block-post-content.is-layout-flow .page_next > p:nth-last-child(1),
.wp-block-post-content.is-layout-flow.old-post .page_next > p:nth-last-child(1) {
  -webkit-margin-after: 0;
  margin-block-end: 0;
}

.wp-block-post-content.is-layout-flow .wp-block[data-type='acf/writer-profile'] .acf-block-component.acf-block-body > div,
.wp-block-post-content.is-layout-flow.old-post .wp-block[data-type='acf/writer-profile'] .acf-block-component.acf-block-body > div {
  background-color: #f9f9f9;
  min-height: 3em;
}

.wp-block-post-content.is-layout-flow .wp-block[data-type='acf/writer-profile'] .acf-block-preview:empty:before,
.wp-block-post-content.is-layout-flow.old-post .wp-block[data-type='acf/writer-profile'] .acf-block-preview:empty:before {
  content: "ライタープロフィールを選択してください";
}

.wp-block-post-content.is-layout-flow .writer-profile,
.wp-block-post-content.is-layout-flow.old-post .writer-profile {
  background-color: rgba(188, 157, 0, 0.1);
  color: #000000;
  position: relative;
  padding: 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  color: inherit;
  text-decoration: none;
}

@media only screen and (max-width: 767px) {
  .wp-block-post-content.is-layout-flow .writer-profile,
  .wp-block-post-content.is-layout-flow.old-post .writer-profile {
    padding: 20px;
  }
}

.wp-block-post-content.is-layout-flow .writer-profile .thumb,
.wp-block-post-content.is-layout-flow.old-post .writer-profile .thumb {
  width: 120px;
  height: 120px;
  margin: 0;
  padding: 0;
}

@media only screen and (max-width: 767px) {
  .wp-block-post-content.is-layout-flow .writer-profile .thumb,
  .wp-block-post-content.is-layout-flow.old-post .writer-profile .thumb {
    width: 80px;
    height: 80px;
  }
}

.wp-block-post-content.is-layout-flow .writer-profile .thumb img,
.wp-block-post-content.is-layout-flow.old-post .writer-profile .thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.wp-block-post-content.is-layout-flow .writer-profile .data,
.wp-block-post-content.is-layout-flow.old-post .writer-profile .data {
  width: calc(100% - 120px - 30px);
}

@media only screen and (max-width: 767px) {
  .wp-block-post-content.is-layout-flow .writer-profile .data,
  .wp-block-post-content.is-layout-flow.old-post .writer-profile .data {
    width: calc(100% - 80px - 20px);
  }
}

.wp-block-post-content.is-layout-flow .writer-profile .title,
.wp-block-post-content.is-layout-flow.old-post .writer-profile .title {
  font-size: 18px;
  line-height: 1.5em;
  font-weight: bold;
  margin: 0;
  padding: 0;
}

@media only screen and (max-width: 767px) {
  .wp-block-post-content.is-layout-flow .writer-profile .title,
  .wp-block-post-content.is-layout-flow.old-post .writer-profile .title {
    font-size: 16px;
  }
}

.wp-block-post-content.is-layout-flow .writer-profile .position,
.wp-block-post-content.is-layout-flow.old-post .writer-profile .position {
  font-size: 14px;
  line-height: 1.5em;
  color: #666666;
  margin: 0;
  padding: 0;
  margin-top: 5px;
}

@media only screen and (max-width: 767px) {
  .wp-block-post-content.is-layout-flow .writer-profile .position,
  .wp-block-post-content.is-layout-flow.old-post .writer-profile .position {
    font-size: 12px;
  }
}

.wp-block-post-content.is-layout-flow .writer-profile .summary,
.wp-block-post-content.is-layout-flow.old-post .writer-profile .summary {
  font-size: 16px;
  line-height: 1.5em;
  margin: 0;
  padding: 0;
  padding-top: 14px;
  margin-top: 8px;
  border-top: 1px solid #000000;
}

@media only screen and (max-width: 767px) {
  .wp-block-post-content.is-layout-flow .writer-profile .summary,
  .wp-block-post-content.is-layout-flow.old-post .writer-profile .summary {
    font-size: 12px;
  }
}

.wp-block-post-content.is-layout-flow .writer-profile .summary > *,
.wp-block-post-content.is-layout-flow.old-post .writer-profile .summary > * {
  margin: 0;
  padding: 0;
  margin-bottom: 1.5em;
}

.wp-block-post-content.is-layout-flow .writer-profile .summary > *:nth-last-child(1),
.wp-block-post-content.is-layout-flow.old-post .writer-profile .summary > *:nth-last-child(1) {
  margin: 0;
}

.wp-block-post-content.is-layout-flow .wp-block[data-type='acf/card-link'] .acf-block-component.acf-block-body > div,
.wp-block-post-content.is-layout-flow.old-post .wp-block[data-type='acf/card-link'] .acf-block-component.acf-block-body > div {
  background-color: #f9f9f9;
  min-height: 3em;
}

.wp-block-post-content.is-layout-flow .wp-block[data-type='acf/card-link'] .acf-block-preview:empty:before,
.wp-block-post-content.is-layout-flow.old-post .wp-block[data-type='acf/card-link'] .acf-block-preview:empty:before {
  content: "カード型内部リンク";
}

.wp-block-post-content.is-layout-flow .card-link01,
.wp-block-post-content.is-layout-flow .blog_card,
.wp-block-post-content.is-layout-flow.old-post .card-link01,
.wp-block-post-content.is-layout-flow.old-post .blog_card {
  border: 1px solid #000000;
  color: #000000;
}

.wp-block-post-content.is-layout-flow .blog_card,
.wp-block-post-content.is-layout-flow.old-post .blog_card {
  display: block;
  position: relative;
  color: inherit;
  text-decoration: none;
}

.wp-block-post-content.is-layout-flow .card-link01 > a,
.wp-block-post-content.is-layout-flow .blog_card > .wrap,
.wp-block-post-content.is-layout-flow.old-post .card-link01 > a,
.wp-block-post-content.is-layout-flow.old-post .blog_card > .wrap {
  display: block;
  padding: 40px 20px 20px 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  color: inherit;
  text-decoration: none;
}

@media only screen and (max-width: 767px) {
  .wp-block-post-content.is-layout-flow .card-link01 > a,
  .wp-block-post-content.is-layout-flow .blog_card > .wrap,
  .wp-block-post-content.is-layout-flow.old-post .card-link01 > a,
  .wp-block-post-content.is-layout-flow.old-post .blog_card > .wrap {
    padding: 35px 15px 15px 15px;
  }
}

.wp-block-post-content.is-layout-flow .card-link01 > a,
.wp-block-post-content.is-layout-flow.old-post .card-link01 > a {
  position: relative;
}

.wp-block-post-content.is-layout-flow .card-link01 > a .shoulder,
.wp-block-post-content.is-layout-flow .blog_card .label,
.wp-block-post-content.is-layout-flow.old-post .card-link01 > a .shoulder,
.wp-block-post-content.is-layout-flow.old-post .blog_card .label {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: absolute;
  left: 0;
  top: 0;
  padding: 5px 10px;
  background-color: #000000;
  color: #ffffff;
  font-size: 16px;
  line-height: 1.0em;
  font-weight: bold;
  white-space: nowrap;
}

@media only screen and (max-width: 767px) {
  .wp-block-post-content.is-layout-flow .card-link01 > a .shoulder,
  .wp-block-post-content.is-layout-flow .blog_card .label,
  .wp-block-post-content.is-layout-flow.old-post .card-link01 > a .shoulder,
  .wp-block-post-content.is-layout-flow.old-post .blog_card .label {
    font-size: 14px;
  }
}

.wp-block-post-content.is-layout-flow .card-link01 > a .thumb,
.wp-block-post-content.is-layout-flow .blog_card > .wrap .photo,
.wp-block-post-content.is-layout-flow.old-post .card-link01 > a .thumb,
.wp-block-post-content.is-layout-flow.old-post .blog_card > .wrap .photo {
  width: 200px;
}

@media only screen and (max-width: 767px) {
  .wp-block-post-content.is-layout-flow .card-link01 > a .thumb,
  .wp-block-post-content.is-layout-flow .blog_card > .wrap .photo,
  .wp-block-post-content.is-layout-flow.old-post .card-link01 > a .thumb,
  .wp-block-post-content.is-layout-flow.old-post .blog_card > .wrap .photo {
    width: 80px;
  }
}

.wp-block-post-content.is-layout-flow .card-link01 > a .data,
.wp-block-post-content.is-layout-flow .blog_card > .wrap .txt_area,
.wp-block-post-content.is-layout-flow.old-post .card-link01 > a .data,
.wp-block-post-content.is-layout-flow.old-post .blog_card > .wrap .txt_area {
  width: calc(100% - 200px - 20px);
}

@media only screen and (max-width: 767px) {
  .wp-block-post-content.is-layout-flow .card-link01 > a .data,
  .wp-block-post-content.is-layout-flow .blog_card > .wrap .txt_area,
  .wp-block-post-content.is-layout-flow.old-post .card-link01 > a .data,
  .wp-block-post-content.is-layout-flow.old-post .blog_card > .wrap .txt_area {
    width: calc(100% - 80px - 15px);
  }
}

.wp-block-post-content.is-layout-flow .card-link01 > a .title,
.wp-block-post-content.is-layout-flow .blog_card > .wrap .ttl,
.wp-block-post-content.is-layout-flow.old-post .card-link01 > a .title,
.wp-block-post-content.is-layout-flow.old-post .blog_card > .wrap .ttl {
  margin: 0;
  font-size: 20px;
  line-height: 1.5em;
  font-weight: bold;
}

@media only screen and (max-width: 767px) {
  .wp-block-post-content.is-layout-flow .card-link01 > a .title,
  .wp-block-post-content.is-layout-flow .blog_card > .wrap .ttl,
  .wp-block-post-content.is-layout-flow.old-post .card-link01 > a .title,
  .wp-block-post-content.is-layout-flow.old-post .blog_card > .wrap .ttl {
    font-size: 18px;
  }
}

.wp-block-post-content.is-layout-flow .card-link01 > a .summary,
.wp-block-post-content.is-layout-flow .blog_card > .wrap p,
.wp-block-post-content.is-layout-flow.old-post .card-link01 > a .summary,
.wp-block-post-content.is-layout-flow.old-post .blog_card > .wrap p {
  margin: 0;
  font-size: 16px;
  line-height: 1.5em;
  padding-top: 10px;
  -webkit-margin-before: 10px;
  margin-block-start: 10px;
  border-top: 1px solid #cccccc;
}

@media only screen and (max-width: 767px) {
  .wp-block-post-content.is-layout-flow .card-link01 > a .summary,
  .wp-block-post-content.is-layout-flow .blog_card > .wrap p,
  .wp-block-post-content.is-layout-flow.old-post .card-link01 > a .summary,
  .wp-block-post-content.is-layout-flow.old-post .blog_card > .wrap p {
    font-size: 14px;
  }
}

.wp-block-post-content.is-layout-flow .simpletoc,
.wp-block-post-content.is-layout-flow.old-post .simpletoc {
  padding: 1em;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 10px;
  margin: 0;
  -webkit-margin-before: 40px;
  margin-block-start: 40px;
  margin-blcok-end: 40px;
}

.wp-block-post-content.is-layout-flow .simpletoc:nth-child(1),
.wp-block-post-content.is-layout-flow.old-post .simpletoc:nth-child(1) {
  -webkit-margin-before: 0;
  margin-block-start: 0;
}

.wp-block-post-content.is-layout-flow .simpletoc-list ul,
.wp-block-post-content.is-layout-flow .simpletoc-list ol,
.wp-block-post-content.is-layout-flow.old-post .simpletoc-list ul,
.wp-block-post-content.is-layout-flow.old-post .simpletoc-list ol {
  margin: .5em 0 0;
  padding-left: 1.2em;
}

.wp-block-post-content.is-layout-flow .simpletoc-list li,
.wp-block-post-content.is-layout-flow.old-post .simpletoc-list li {
  margin: .25em 0;
  font-size: 16px;
  line-height: 1.5em;
}

@media only screen and (max-width: 767px) {
  .wp-block-post-content.is-layout-flow .simpletoc-list li,
  .wp-block-post-content.is-layout-flow.old-post .simpletoc-list li {
    font-size: 14px;
  }
}

.wp-block-post-content.is-layout-flow .simpletoc-list a,
.wp-block-post-content.is-layout-flow.old-post .simpletoc-list a {
  text-decoration: underline;
}

.wp-block-post-content.is-layout-flow .simpletoc,
.wp-block-post-content.is-layout-flow.old-post .simpletoc {
  padding: 20px 30px 15px 58px;
  border: 1px solid #000000;
  border-radius: 0;
}

.wp-block-post-content.is-layout-flow .simpletoc h1, .wp-block-post-content.is-layout-flow .simpletoc h2, .wp-block-post-content.is-layout-flow .simpletoc h3, .wp-block-post-content.is-layout-flow .simpletoc h4, .wp-block-post-content.is-layout-flow .simpletoc h5, .wp-block-post-content.is-layout-flow .simpletoc h6,
.wp-block-post-content.is-layout-flow.old-post .simpletoc h1,
.wp-block-post-content.is-layout-flow.old-post .simpletoc h2,
.wp-block-post-content.is-layout-flow.old-post .simpletoc h3,
.wp-block-post-content.is-layout-flow.old-post .simpletoc h4,
.wp-block-post-content.is-layout-flow.old-post .simpletoc h5,
.wp-block-post-content.is-layout-flow.old-post .simpletoc h6 {
  margin: 0;
  border-left: 10px solid #BC9D00;
  padding: 2px 0 2px 15px;
  margin-left: -28px;
  margin-bottom: 15px;
  font-size: 24px;
  line-height: 1.25em;
  font-weight: bold;
}

.wp-block-post-content.is-layout-flow .simpletoc a,
.wp-block-post-content.is-layout-flow.old-post .simpletoc a {
  color: inherit;
  text-decoration: none;
}

.wp-block-post-content.is-layout-flow .simpletoc a:hover,
.wp-block-post-content.is-layout-flow.old-post .simpletoc a:hover {
  text-decoration: underline;
}

.wp-block-post-content.is-layout-flow .simpletoc ul,
.wp-block-post-content.is-layout-flow.old-post .simpletoc ul {
  list-style-type: none;
  list-style-image: url("../img/ic_li_square.svg");
  margin: 0;
  padding: 0 0 0 15px;
}

.wp-block-post-content.is-layout-flow .simpletoc ul > li,
.wp-block-post-content.is-layout-flow.old-post .simpletoc ul > li {
  margin: 0.5em 0 0.5em 0;
  padding: 0;
  font-weight: bold;
}

.wp-block-post-content.is-layout-flow .simpletoc ol,
.wp-block-post-content.is-layout-flow.old-post .simpletoc ol {
  margin: 0;
  padding: 0 0 0 15px;
}

.wp-block-post-content.is-layout-flow .simpletoc ol > li,
.wp-block-post-content.is-layout-flow.old-post .simpletoc ol > li {
  margin: 0.5em 0 0.5em 0;
  padding: 0;
  font-weight: bold;
}

@media only screen and (max-width: 767px) {
  .wp-block-post-content.is-layout-flow .simpletoc,
  .wp-block-post-content.is-layout-flow.old-post .simpletoc {
    padding: 15px 20px 10px 38px;
  }
  .wp-block-post-content.is-layout-flow .simpletoc h1, .wp-block-post-content.is-layout-flow .simpletoc h2, .wp-block-post-content.is-layout-flow .simpletoc h3, .wp-block-post-content.is-layout-flow .simpletoc h4, .wp-block-post-content.is-layout-flow .simpletoc h5, .wp-block-post-content.is-layout-flow .simpletoc h6,
  .wp-block-post-content.is-layout-flow.old-post .simpletoc h1,
  .wp-block-post-content.is-layout-flow.old-post .simpletoc h2,
  .wp-block-post-content.is-layout-flow.old-post .simpletoc h3,
  .wp-block-post-content.is-layout-flow.old-post .simpletoc h4,
  .wp-block-post-content.is-layout-flow.old-post .simpletoc h5,
  .wp-block-post-content.is-layout-flow.old-post .simpletoc h6 {
    border-left-width: 6px;
    padding: 2px 0 2px 8px;
    margin-left: -16px;
    margin-bottom: 10px;
    font-size: 18px;
    line-height: 1.25em;
  }
}

.wp-block-post-content.is-layout-flow .simpletoc.is-custom-style-other,
.wp-block-post-content.is-layout-flow.old-post .simpletoc.is-custom-style-other {
  padding: 15px 30px 15px 30px;
  border: 1px solid #BC9D00;
  border-radius: 0;
  position: relative;
  -webkit-margin-before: 80px;
  margin-block-start: 80px;
  -webkit-margin-after: 40px;
  margin-block-end: 40px;
}

.wp-block-post-content.is-layout-flow .simpletoc.is-custom-style-other h1, .wp-block-post-content.is-layout-flow .simpletoc.is-custom-style-other h2, .wp-block-post-content.is-layout-flow .simpletoc.is-custom-style-other h3, .wp-block-post-content.is-layout-flow .simpletoc.is-custom-style-other h4, .wp-block-post-content.is-layout-flow .simpletoc.is-custom-style-other h5, .wp-block-post-content.is-layout-flow .simpletoc.is-custom-style-other h6,
.wp-block-post-content.is-layout-flow.old-post .simpletoc.is-custom-style-other h1,
.wp-block-post-content.is-layout-flow.old-post .simpletoc.is-custom-style-other h2,
.wp-block-post-content.is-layout-flow.old-post .simpletoc.is-custom-style-other h3,
.wp-block-post-content.is-layout-flow.old-post .simpletoc.is-custom-style-other h4,
.wp-block-post-content.is-layout-flow.old-post .simpletoc.is-custom-style-other h5,
.wp-block-post-content.is-layout-flow.old-post .simpletoc.is-custom-style-other h6 {
  margin: 0;
  border-left: none;
  background-color: #BC9D00;
  color: #ffffff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 4px 10px;
  min-height: 40px;
  font-size: 16px;
  line-height: 1.25em;
  font-weight: bold;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  left: -1px;
  top: -41px;
}

.wp-block-post-content.is-layout-flow .simpletoc.is-custom-style-other a,
.wp-block-post-content.is-layout-flow.old-post .simpletoc.is-custom-style-other a {
  color: inherit;
  text-decoration: underline;
}

.wp-block-post-content.is-layout-flow .simpletoc.is-custom-style-other a:hover,
.wp-block-post-content.is-layout-flow.old-post .simpletoc.is-custom-style-other a:hover {
  text-decoration: underline;
}

.wp-block-post-content.is-layout-flow .simpletoc.is-custom-style-other ul,
.wp-block-post-content.is-layout-flow.old-post .simpletoc.is-custom-style-other ul {
  margin: 0;
  padding: 0 0 0 15px;
}

.wp-block-post-content.is-layout-flow .simpletoc.is-custom-style-other ul > li,
.wp-block-post-content.is-layout-flow.old-post .simpletoc.is-custom-style-other ul > li {
  margin: 0.5em 0 0.5em 0;
  padding: 0;
  font-weight: normal;
}

.wp-block-post-content.is-layout-flow .simpletoc.is-custom-style-other ol,
.wp-block-post-content.is-layout-flow.old-post .simpletoc.is-custom-style-other ol {
  margin: 0;
  padding: 0 0 0 15px;
}

.wp-block-post-content.is-layout-flow .simpletoc.is-custom-style-other ol > li,
.wp-block-post-content.is-layout-flow.old-post .simpletoc.is-custom-style-other ol > li {
  margin: 0.5em 0 0.5em 0;
  padding: 0;
  font-weight: normal;
}

@media only screen and (max-width: 767px) {
  .wp-block-post-content.is-layout-flow .simpletoc.is-custom-style-other,
  .wp-block-post-content.is-layout-flow.old-post .simpletoc.is-custom-style-other {
    padding: 15px 20px 15px 20px;
  }
  .wp-block-post-content.is-layout-flow .simpletoc.is-custom-style-other h1, .wp-block-post-content.is-layout-flow .simpletoc.is-custom-style-other h2, .wp-block-post-content.is-layout-flow .simpletoc.is-custom-style-other h3, .wp-block-post-content.is-layout-flow .simpletoc.is-custom-style-other h4, .wp-block-post-content.is-layout-flow .simpletoc.is-custom-style-other h5, .wp-block-post-content.is-layout-flow .simpletoc.is-custom-style-other h6,
  .wp-block-post-content.is-layout-flow.old-post .simpletoc.is-custom-style-other h1,
  .wp-block-post-content.is-layout-flow.old-post .simpletoc.is-custom-style-other h2,
  .wp-block-post-content.is-layout-flow.old-post .simpletoc.is-custom-style-other h3,
  .wp-block-post-content.is-layout-flow.old-post .simpletoc.is-custom-style-other h4,
  .wp-block-post-content.is-layout-flow.old-post .simpletoc.is-custom-style-other h5,
  .wp-block-post-content.is-layout-flow.old-post .simpletoc.is-custom-style-other h6 {
    padding: 4px 10px;
    min-height: 34px;
    font-size: 14px;
    line-height: 1.25em;
    position: absolute;
    left: -1px;
    top: -35px;
  }
}

/* slide-box */
.slide-box {
  position: relative;
  margin: 0;
  padding: 0;
  margin-top: 20px;
}

.slide-box .slick-prev {
  top: 0;
  bottom: 0;
  left: -30px;
  right: auto;
  margin: auto 0;
  width: 40px;
  height: 100%;
  text-align: left;
  text-indent: -9000px;
  overflow: hidden;
  background-image: url("../img/ic_arw01.svg") !important;
  background-repeat: no-repeat !important;
  background-position: 50% 50% !important;
  background-size: 100% auto !important;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  -webkit-transform: scale(-1, 1);
  transform: scale(-1, 1);
}

.slide-box .slick-prev:before {
  display: none;
}

@media only screen and (max-width: 767px) {
  .slide-box .slick-prev {
    left: -18px;
    width: 28px;
    height: 28px;
  }
}

.slide-box .slick-next {
  top: 0;
  bottom: 0;
  left: auto;
  right: -30px;
  margin: auto 0;
  width: 40px;
  height: 100%;
  text-align: left;
  text-indent: -9000px;
  overflow: hidden;
  background-image: url("../img/ic_arw01.svg") !important;
  background-repeat: no-repeat !important;
  background-position: 50% 50% !important;
  background-size: 100% auto !important;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

.slide-box .slick-next:before {
  display: none;
}

@media only screen and (max-width: 767px) {
  .slide-box .slick-next {
    right: -18px;
    width: 28px;
    height: 28px;
  }
}

/* slide */
.slide {
  position: relative;
  margin: 0;
  padding: 0;
}

.slide .item {
  position: relative;
  background-color: #454545;
  color: #ffffff;
  height: 100%;
}

.slide .item .image {
  text-align: center;
}

.slide .item .image img {
  margin: 0 auto;
}

.slide .item .caption {
  text-align: center;
  padding: 0.5em;
  font-size: 14px;
  line-height: 1.25em;
}

/* slide-navigation */
.slide-navigation {
  line-height: 0;
  position: relative;
  margin: 0;
  padding: 0;
  margin: 0 -5px;
  -webkit-margin-before: 1.75em;
  margin-block-start: 1.75em;
}

.slide-navigation:nth-child(1) {
  -webkit-margin-before: 0;
  margin-block-start: 0;
}

@media only screen and (max-width: 767px) {
  .slide-navigation {
    margin: 0 -2px;
  }
}

.slide-box + .slide-navigation {
  -webkit-margin-before: 10px;
  margin-block-start: 10px;
}

@media only screen and (max-width: 767px) {
  .slide-box + .slide-navigation {
    -webkit-margin-before: 10px;
    margin-block-start: 10px;
  }
}

.slide-navigation .item {
  position: relative;
  cursor: pointer;
  margin: 0 5px;
}

@media only screen and (max-width: 767px) {
  .slide-navigation .item {
    margin: 0 2px;
  }
}

.slide-navigation .item .image {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 182 / 100;
  margin: 0;
  padding: 0;
}

.slide-box + .slide-navigation .item .image:after {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  opacity: 0.5;
  background: #000;
}

.slide-box + .slide-navigation .slick-current .image:after {
  opacity: 0;
}

.slide-navigation .item .image {
  position: relative;
  overflow: hidden;
}

.slide-navigation .item .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

/* slick */
.slick-vertical .slick-slide {
  border: 0 solid transparent;
}

.slick-arrow {
  z-index: 999;
}

.slide-navigation .slick-prev {
  top: 0;
  bottom: 0;
  left: -15px;
  right: auto;
  margin: auto 0;
  width: 20px;
  height: 100%;
  text-align: left;
  text-indent: -9000px;
  overflow: hidden;
  background-image: url("../img/ic_arw01.svg") !important;
  background-repeat: no-repeat !important;
  background-position: 50% 50% !important;
  background-size: 100% auto !important;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  -webkit-transform: scale(-1, 1);
  transform: scale(-1, 1);
}

.slide-navigation .slick-prev:before {
  display: none;
}

.slide-navigation .slick-next {
  top: 0;
  bottom: 0;
  left: auto;
  right: -15px;
  margin: auto 0;
  width: 20px;
  height: 100%;
  text-align: left;
  text-indent: -9000px;
  overflow: hidden;
  background-image: url("../img/ic_arw01.svg") !important;
  background-repeat: no-repeat !important;
  background-position: 50% 50% !important;
  background-size: 100% auto !important;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

.slide-navigation .slick-next:before {
  display: none;
}

.gallery-button {
  text-align: center;
  margin-top: 20px;
}

/*# sourceMappingURL=blocks-content.css.map */
