@charset "UTF-8";

/* =============================================
   EDITOR STYLE — ikeru theme
   新デザインシステム (Cormorant + DM Sans)
============================================= */

:root {
  --color-bg: #faf8f2;
  --color-surface: #ffffff;
  --color-cream: #f2ecde;
  --color-cream-soft: #f7f2e6;
  --color-primary: #d4ee5a;
  --color-primary-soft: #e6f58e;
  --color-primary-light: #f2f9c2;
  --color-accent: #0f1a2a;
  --color-hot: #e8785f;
  --color-text: #0f1a2a;
  --color-text-muted: #4a5663;
  --color-text-light: #8a93a0;
  --color-border: #e5decc;
  --color-border-light: #f0e9d8;
  --color-tag-bg: #f2ecde;
  --font-serif: 'Cormorant Garamond', 'Noto Serif JP', serif;
  --font-sans: 'DM Sans', 'Noto Sans JP', sans-serif;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-pill: 999px;
  --shadow-sm: 0 2px 10px rgba(15, 26, 42, 0.05);
  --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

#tinymce {
  font-size: 15px;
  font-weight: 400;
  font-family: var(--font-sans, 'DM Sans', 'Noto Sans JP', sans-serif);
  background: #faf8f2;
  color: #0f1a2a;
  line-height: 1.8;
  padding: 20px;
}

#main_block .eyecatch {
  text-align: center;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 40px;
  box-shadow: 0 8px 28px rgba(15, 26, 42, 0.08);
  border: 1px solid #e5decc;
}

/* =============================================
   POST BOX — テキスト・段落
============================================= */
.post_box,
.editwrap {
  text-align: left;
  line-height: 2;
  font-size: 15px;
  font-weight: 400;
  color: #0f1a2a;
}

.post_box img { height: auto !important; }

.post_box a { color: #0f1a2a; text-decoration: underline; }
.post_box a:hover { text-decoration: none; }

.post_box p,
.editwrap p {
  margin: 0 0 1.4em;
  color: #0f1a2a;
}

/* =============================================
   見出し H2
============================================= */
.post_box h2,
.editwrap h2 {
  font-family: var(--font-serif, 'Cormorant Garamond', 'Noto Serif JP', serif);
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 600;
  color: #0f1a2a;
  margin: 52px 0 22px;
  padding-bottom: 16px;
  position: relative;
  letter-spacing: 0.01em;
  line-height: 1.4;
  background: none;
}

.post_box h2::before,
.editwrap h2::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 1px;
  background: #e5decc;
  display: block;
  top: auto;
}

.post_box h2::after,
.editwrap h2::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0;
  width: 72px; height: 4px;
  background: #d4ee5a;
  border-radius: 2px;
  display: block;
  top: auto;
}

/* =============================================
   見出し H3
============================================= */
.post_box h3,
.editwrap h3 {
  font-family: var(--font-serif, 'Cormorant Garamond', 'Noto Serif JP', serif);
  font-size: clamp(17px, 2.4vw, 22px);
  font-weight: 600;
  color: #0f1a2a;
  margin: 40px 0 16px;
  padding-left: 18px;
  border-left: 5px solid #d4ee5a;
  letter-spacing: 0.02em;
  line-height: 1.5;
  position: static;
  background: none;
}

.post_box h3::before,
.editwrap h3::before { display: none; }

/* =============================================
   見出し H4
============================================= */
.post_box h4,
.editwrap h4 {
  font-family: var(--font-serif, 'Cormorant Garamond', 'Noto Serif JP', serif);
  font-size: clamp(15px, 2vw, 18px);
  font-weight: 600;
  color: #0f1a2a;
  margin: 32px 0 14px;
  padding-bottom: 8px;
  position: relative;
  line-height: 1.5;
}

.post_box h4::before {
  content: '';
  display: block;
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: #f0e9d8;
  z-index: -1;
}

.post_box h4::after {
  content: '';
  display: block;
  position: absolute;
  left: 0; bottom: 0;
  width: 48px; height: 2px;
  background: #d4ee5a;
  z-index: 0;
}

.post_box h2:first-child,
.post_box h3:first-child,
.post_box h4:first-child { margin-top: 0; }

/* =============================================
   画像
============================================= */
.post_box .aligncenter,
.post_box .alignnone {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.post_box .alignleft {
  float: left;
  margin: 0.5em 1.2em 0.5em 0;
}

.post_box .alignright {
  float: right;
  margin: 0.5em 0 0.5em 1.2em;
}

/* =============================================
   テーブル
============================================= */
.post_box table,
.editwrap table {
  width: 100%;
  max-width: 100%;
  border-collapse: collapse;
  border: 1px solid #e5decc;
  margin: 0 0 1.4em;
  font-size: 13.5px;
  border-radius: 8px;
  overflow: hidden;
}

.post_box table caption { text-align: center; }

.post_box th,
.editwrap th {
  padding: 12px 16px;
  text-align: left;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0f1a2a;
  background: linear-gradient(135deg, #e6f58e, #f2f9c2);
  border-bottom: 1px solid #e5decc;
}

.post_box td,
.editwrap td {
  padding: 12px 16px;
  color: #0f1a2a;
  border-bottom: 1px solid #f0e9d8;
  line-height: 1.7;
  vertical-align: top;
}

.post_box tbody tr:last-child td,
.editwrap tbody tr:last-child td { border-bottom: none; }

.post_box tbody tr:hover {
  background: #f2ecde;
}

/* スクロール/固定テーブル */
.post_box .fixed_table,
.post_box .scroll_table {
  width: 100%;
  margin: 0 0 1.4em;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  box-sizing: border-box;
  border-radius: 8px;
  border: 1px solid #e5decc;
}

.post_box .fixed_table table,
.post_box .scroll_table table {
  margin: 0;
  white-space: nowrap;
  min-width: 100%;
  border: none;
  border-radius: 0;
}

.post_box .fixed_table table tr > th:first-child {
  word-break: break-all;
  width: 145px;
  box-sizing: border-box;
  left: 0;
  position: -webkit-sticky;
  position: sticky;
  z-index: 1;
  background: linear-gradient(135deg, #e6f58e, #f2f9c2);
  border-bottom: 1px solid #e5decc;
}

/* スクロールアナウンス */
.post_box .announce {
  font-size: 12px;
  text-align: right;
  margin: 6px 0 8px;
  color: #8a93a0;
  animation: yokoyura 1.5s linear infinite;
}

.post_box .announce span {
  font-size: 14px;
  display: inline-block;
  vertical-align: text-bottom;
}

@keyframes yokoyura {
  0%, 100% { transform: translate(5px, 0); }
  50%       { transform: translate(-5px, 0); }
}

/* テーブル内ミニボタン */
.post_box table .minbtn { display: block; margin: 0.2em 0 0; }
.post_box table .minbtn a {
  color: #fff;
  text-decoration: none;
  display: inline-block;
  font-weight: bold;
  padding: 4px 12px;
  font-size: 12px;
  border-radius: 6px;
}

.post_box table .minbtn.pink a  { background: #d4ee5a; color: #0f1a2a; border-bottom: 3px solid #9db530; }
.post_box table .minbtn.green a { background: #b8dbc5; color: #0f1a2a; border-bottom: 3px solid #7aab8b; }
.post_box table .minbtn.blue a  { background: #56BCE3; color: #fff;    border-bottom: 3px solid #5AA0BA; }
.post_box table .minbtn.purple a { background: #e8785f; color: #fff;   border-bottom: 3px solid #a0462c; }

@media (min-width: 768px) {
  .post_box .announce { display: none; }
  .post_box table .minbtn a { font-size: 13px; }
  .post_box th, .post_box td { font-size: 14px; }
}

@media (max-width: 767px) {
  .post_box .fixed_table,
  .post_box .scroll_table {
    width: calc(100% + 20px);
    padding: 0 20px 0 0;
  }
  .post_box table .minbtn a { padding: 4px 10px; font-size: 11px; }
  .post_box th, .post_box td { font-size: 12px; }
}

/* =============================================
   リスト
============================================= */
.post_box ul,
.editwrap ul {
  list-style: none;
  margin: 0 0 1.4em;
  padding: 0;
}

.post_box ul li,
.editwrap ul li {
  padding: 8px 0 8px 24px;
  border-bottom: 1px solid #f0e9d8;
  font-size: 14px;
  line-height: 1.8;
  color: #0f1a2a;
  position: relative;
  margin: 0;
}

.post_box ul li:last-child,
.editwrap ul li:last-child { border-bottom: none; }


.post_box ul > li::before,
.editwrap ul > li::before {
  content: '';
  width: 8px; height: 8px;
  background: #d4ee5a;
  display: block;
  border-radius: 50%;
  border: 2px solid #0f1a2a;
  position: absolute;
  left: 2px;
  top: 17px;
}

.post_box #ez-toc-container ul > li::before {
  display: none;
}

.post_box .su-list ul li::before { display: none; }

.post_box ol,
.editwrap ol {
  counter-reset: ol-counter;
  list-style: none;
  margin: 0 0 1.4em;
  padding: 0;
}

.post_box ol li,
.editwrap ol li {
  padding: 8px 0 8px 28px;
  border-bottom: 1px solid #f0e9d8;
  font-size: 14px;
  line-height: 1.8;
  color: #0f1a2a;
  position: relative;
  counter-increment: ol-counter;
  margin: 0;
}

.post_box ol li:last-child { border-bottom: none; }

.post_box ol li::before,
.editwrap ol li::before {
  content: counter(ol-counter);
  width: 22px; height: 22px;
  background: #d4ee5a;
  color: #0f1a2a;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 12px;
}

/* =============================================
   ボタン (colorbtn / doublebtn)
============================================= */
.post_box .edi_btnwrap {
  text-align: center;
  margin: 28px 0;
}

.post_box .edi_btnwrap.double {
  display: flex;
  gap: 12px;
  justify-content: center;
}

#main_block .edi_btnwrap a.colorbtn,
.post_box .edi_btnwrap a.colorbtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  min-width: 200px;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

#main_block .edi_btnwrap a.colorbtn:hover,
.post_box .edi_btnwrap a.colorbtn:hover {
  transform: translateY(-2px);
  opacity: 1;
  filter: brightness(1.04);
}

#main_block .edi_btnwrap a.colorbtn .btn_inner,
.post_box .edi_btnwrap a.colorbtn .btn_inner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.4;
  position: relative;
  overflow: hidden;
  /* デフォルト: ライムイエロー */
  background: linear-gradient(155deg, #e2f46a 0%, #cae845 60%, #c4e038 100%);
  color: #0f1a2a;
  box-shadow: 0 3px 0 #0f1a2a;
  transition: background 0.28s ease, box-shadow 0.28s ease;
}

#main_block .edi_btnwrap a.colorbtn .btn_inner::after,
.post_box .edi_btnwrap a.colorbtn .btn_inner::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.22), transparent);
  transform: translateX(-220%) skewX(-18deg);
  animation: btn_shimmer 4.5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes btn_shimmer {
  0%   { transform: translateX(-220%) skewX(-18deg); }
  32%  { transform: translateX(380%) skewX(-18deg); }
  100% { transform: translateX(380%) skewX(-18deg); }
}

#main_block .edi_btnwrap a.colorbtn .btn_inner:hover,
.post_box .edi_btnwrap a.colorbtn .btn_inner:hover {
  background: linear-gradient(155deg, #eaf88a 0%, #d8f260 60%, #cfe84e 100%);
}

/* カラーバリエーション */
#main_block .edi_btnwrap a.colorbtn.amazon .btn_inner,
.post_box .edi_btnwrap a.colorbtn.amazon .btn_inner {
  background: linear-gradient(155deg, #e2f46a 0%, #cae845 60%, #c4e038 100%);
  color: #0f1a2a;
  box-shadow: 0 3px 0 #0f1a2a;
}

#main_block .edi_btnwrap a.colorbtn.amazon:hover .btn_inner,
.post_box .edi_btnwrap a.colorbtn.amazon:hover .btn_inner {
  background: linear-gradient(155deg, #eaf88a 0%, #d8f260 60%, #cfe84e 100%);
}

#main_block .edi_btnwrap a.colorbtn.rakuten .btn_inner,
.post_box .edi_btnwrap a.colorbtn.rakuten .btn_inner {
  background: linear-gradient(155deg, #ef9078 0%, #e57258 60%, #db5e40 100%);
  color: #fff;
  box-shadow: 0 3px 0 #a0462c;
}

#main_block .edi_btnwrap a.colorbtn.rakuten:hover .btn_inner,
.post_box .edi_btnwrap a.colorbtn.rakuten:hover .btn_inner {
  background: linear-gradient(155deg, #f39d87 0%, #ea7e68 60%, #e06a52 100%);
}

#main_block .edi_btnwrap a.colorbtn.pink .btn_inner,
.post_box .edi_btnwrap a.colorbtn.pink .btn_inner {
  background: linear-gradient(155deg, #f9c9b8 0%, #f4b099 60%, #eda083 100%);
  color: #0f1a2a;
  box-shadow: 0 3px 0 #b07868;
}

#main_block .edi_btnwrap a.colorbtn.green .btn_inner,
.post_box .edi_btnwrap a.colorbtn.green .btn_inner {
  background: linear-gradient(155deg, #c9e6d5 0%, #b4d9c2 60%, #a0cdb0 100%);
  color: #0f1a2a;
  box-shadow: 0 3px 0 #6a9b79;
}

#main_block .edi_btnwrap a.colorbtn.blue .btn_inner,
.post_box .edi_btnwrap a.colorbtn.blue .btn_inner {
  background: linear-gradient(155deg, #72cbec 0%, #52bce3 60%, #38aeda 100%);
  color: #fff;
  box-shadow: 0 3px 0 #3a8aab;
}

#main_block .edi_btnwrap a.colorbtn.purple .btn_inner,
.post_box .edi_btnwrap a.colorbtn.purple .btn_inner {
  background: linear-gradient(155deg, #1c2e46 0%, #0f1a2a 60%, #080f18 100%);
  color: #d4ee5a;
  box-shadow: 0 3px 0 #000;
}

#main_block .edi_btnwrap a.colorbtn.orange .btn_inner,
.post_box .edi_btnwrap a.colorbtn.orange .btn_inner {
  background: linear-gradient(155deg, #ef9078 0%, #e57258 60%, #db5e40 100%);
  color: #fff;
  box-shadow: 0 3px 0 #a0462c;
}

/* サイズ */
#main_block .edi_btnwrap a.colorbtn.fontsize75 .btn_inner  { font-size: 12px; padding: 10px 20px; }
#main_block .edi_btnwrap a.colorbtn.fontsize125 .btn_inner { font-size: 16px; padding: 16px 32px; }

.post_box .edi_btnwrap.double a {
  flex: 1;
  min-width: 0;
  margin: 0;
}

/* =============================================
   スピーチボックス
============================================= */
.speech_box {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin: 36px 0;
}

.speech_box .content {
  flex: 1;
  background: #ffffff;
  border: 1px solid #e5decc;
  border-radius: 0 14px 14px 14px;
  padding: 16px 20px;
  font-size: 14px;
  line-height: 1.85;
  color: #0f1a2a;
  box-shadow: 0 2px 10px rgba(15, 26, 42, 0.05);
  position: relative;
}

.speech_box .content::before {
  content: '';
  position: absolute;
  top: 0; left: -8px;
  width: 0; height: 0;
  border-right: 8px solid #e5decc;
  border-bottom: 10px solid transparent;
}

.speech_box .content::after {
  content: '';
  position: absolute;
  top: 1px; left: -6px;
  width: 0; height: 0;
  border-right: 7px solid #ffffff;
  border-bottom: 9px solid transparent;
}

.speech_box .content .title {
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 8px;
  border-bottom: 1px solid #f0e9d8;
  padding-bottom: 6px;
}

.speech_box.review .content {
  background: linear-gradient(135deg, #f2f9c2, #f7f2e6);
  border-color: #e6f58e;
  border-radius: 14px 0 14px 14px;
}

.speech_box.review .content::before {
  left: auto; right: -8px;
  border-right: none;
  border-left: 8px solid #e6f58e;
}

.speech_box.review .content::after {
  left: auto; right: -6px;
  border-right: none;
  border-left: 7px solid #f2f9c2;
}

/* =============================================
   スター評価
============================================= */
.star_evaluation {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 16px 0;
}

.star_rating {
  color: #d4ee5a;
  font-size: 20px;
  letter-spacing: 2px;
}

.star_evaluation .e_tit {
  font-family: 'Cormorant Garamond', 'Noto Serif JP', serif;
  font-size: 22px;
  font-weight: 600;
  color: #0f1a2a;
}

/* =============================================
   ラインチャート / パーセントグラフ
============================================= */
.line_chart {
  margin: 24px 0;
  background: #ffffff;
  border: 1px solid #e5decc;
  border-radius: 14px;
  padding: 20px;
}

.line_chart .title {
  font-weight: 600;
  font-size: 14px;
  color: #0f1a2a;
  margin-bottom: 12px;
}

.line_chart .chart_boxs {
  height: 8px;
  background: #e5decc;
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 8px;
}

.line_chart .undertxt {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: #8a93a0;
}

.percent_graph { margin-bottom: 16px; }

.percent_graph .bar_outer {
  height: 10px;
  background: #e5decc;
  border-radius: 999px;
  overflow: hidden;
}

.percent_graph .bar_inner {
  height: 100%;
  background: linear-gradient(90deg, #d4ee5a, #e6f58e);
  border-radius: 999px;
}

/* =============================================
   スーパーバイザーボックス
============================================= */
.supervisor_box {
  background: linear-gradient(135deg, #f2f9c2, #f7f2e6);
  border: 1px solid #e6f58e;
  border-left: 5px solid #d4ee5a;
  border-radius: 0 14px 14px 0;
  padding: 20px 24px;
  margin: 32px 0;
}

.supervisor_box > .title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #4a5663;
  margin-bottom: 14px;
  background: none;
}

.supervisor_box > .title::before,
.supervisor_box > .title::after { display: none; }

.supervisor_namearea {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.supervisor_namearea .image_area .imgcl {
  width: 52px; height: 52px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #d4ee5a;
}

.supervisor_namearea .image_area .imgbox {
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 50%;
}

.supervisor_namearea .image_area .imgbox::after {
  content: '';
  padding: 100% 0 0;
  display: block;
}

.supervisor_namearea .image_area .imgbox img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}

.supervisor_namearea .name {
  font-family: 'Cormorant Garamond', 'Noto Serif JP', serif;
  font-size: 16px;
  font-weight: 600;
  color: #0f1a2a;
}

.supervisor_box .textarea {
  font-size: 13px;
  line-height: 1.85;
  color: #4a5663;
}

/* =============================================
   ライター表示
============================================= */
.supervision_edit_wrap {
  background: #ffffff;
  border: 1px solid #e5decc;
  border-radius: 14px;
  padding: 20px;
  margin: 32px 0;
  position: relative;
  line-height: 1.4;
}

.supervision_edit_wrap .labels {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #4a5663;
  margin-bottom: 12px;
  display: block;
  background: none;
}

.supervision_edit_wrap .box {
  display: flex;
  gap: 16px;
  align-items: center;
  border: none;
  width: auto;
}

.supervision_edit_wrap .imgcl {
  width: 52px; height: 52px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #d4ee5a;
  flex-shrink: 0;
  display: block;
}

.supervision_edit_wrap .imgcl .imgbox {
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 50%;
  border: none;
}

.supervision_edit_wrap .imgcl .imgbox::after {
  content: '';
  padding: 100% 0 0;
  display: block;
}

.supervision_edit_wrap .imgcl .imgbox img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}

.supervision_edit_wrap .name_wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
  vertical-align: middle;
}

.supervision_edit_wrap .name_wrap .degree {
  font-size: 11px;
  color: #4a5663;
  opacity: 1;
  margin: 0;
}

.supervision_edit_wrap .name_wrap .name {
  font-family: 'Cormorant Garamond', 'Noto Serif JP', serif;
  font-size: 17px;
  font-weight: 600;
  color: #0f1a2a;
  letter-spacing: 0.05em;
  line-height: 1.2;
}

.supervision_edit_wrap .name_wrap .moretxt a {
  color: #d4ee5a;
  text-decoration: underline;
}

/* =============================================
   目次 (TOC Plus)
============================================= */
.post_box #toc_container {
  border: 1px solid #e5decc;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  margin: 40px 0;
  background: #faf8f2;
}

.post_box #toc_container::after {
  content: '';
  width: 100%; height: 50px;
  background: linear-gradient(to bottom, rgba(250, 248, 242, 0), #faf8f2);
  display: block;
  position: absolute;
  bottom: 0; left: 0;
  opacity: 0; visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.post_box #toc_container.close::after {
  opacity: 1; visibility: visible;
}

.post_box #toc_container .toc_list {
  overflow: hidden;
  margin: 0;
}

.post_box #toc_container .toc_title {
  background: linear-gradient(135deg, #e6f58e, #f2f9c2);
  color: #0f1a2a;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 20px;
  margin: 0;
  letter-spacing: 0.05em;
}

.post_box #toc_container .toc_title .toc_toggle a { color: #4a5663; font-size: 12px; }

.post_box #toc_container .toc_list li {
  margin: 0 0 0.6em;
  line-height: 1.5;
  padding: 0;
  border: none;
}

.post_box #toc_container .toc_list li::before { display: none; }
.post_box #toc_container .toc_list li:last-child { margin: 0; }

.post_box #toc_container .toc_list li a {
  padding: 0 0 0 1.2em;
  display: inline-block;
  line-height: 1.5;
  color: #0f1a2a;
  text-decoration: none;
}

.post_box #toc_container .toc_list li a:hover { text-decoration: underline; }

.post_box #toc_container .toc_list li a span.toc_number {
  margin: 0 0 0 -1.2em;
}

.post_box #toc_container .toc_list li a span.toc_number::after { content: '.'; }

/* =============================================
   動画 embed
============================================= */
.post_box .movie {
  position: relative;
  margin: 0 0 1.4em;
  padding: 0 0 56.25%;
}

.post_box .movie iframe {
  position: absolute;
  width: 100%; height: 100%;
  top: 0; left: 0;
}

.post_box iframe {
  width: 100%;
  max-width: 100%;
}

/* =============================================
   もっと読む
============================================= */
.post_box .more_wrpa .more_content {
  overflow: hidden;
  width: 100%;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  height: 1.8em;
}

.post_box .more_wrpa .more_content.open {
  display: block;
  height: 100%;
}

.post_box .more_wrpa .button { text-align: right; }

.post_box .more_wrpa .button .toggle {
  font-size: 13px;
  margin: 10px 10px 0 0;
  cursor: pointer;
  padding: 0 0 0 18px;
  font-weight: bold;
  color: #4a5663;
}

.post_box .more_wrpa .button .toggle:hover { text-decoration: underline; }

/* =============================================
   アイテムボックス
============================================= */
.post_box .item_box_warp {
  border: 1px solid #e5decc;
  border-radius: 14px;
  text-align: left;
  overflow: hidden;
  margin: 24px 0;
}

.post_box .item_box_warp .item_name {
  font-family: 'Cormorant Garamond', 'Noto Serif JP', serif;
  font-weight: 600;
  margin: 0 0 1em;
  line-height: 1.5;
  color: #0f1a2a;
}

/* =============================================
   引用
============================================= */
.post_box blockquote {
  border-left: 4px solid #d4ee5a;
  margin: 28px 0;
  padding: 16px 20px;
  background: #f7f2e6;
  border-radius: 0 8px 8px 0;
  font-size: 14px;
  color: #4a5663;
  line-height: 1.85;
}
