@charset "UTF-8";

/*!
Theme Name: Cocoon Child
Description: Cocoon専用の子テーマ
Theme URI: https://wp-cocoon.com/
Author: わいひら
Author URI: https://nelog.jp/
Template:   cocoon-master
Version:    1.1.3
*/

/************************************
** 子テーマ用のスタイルを書く
************************************/
/*必要ならばここにコードを書く*/

/************************************
** レスポンシブデザイン用のメディアクエリ
************************************/
/*1023px以下*/
@media screen and (max-width: 1023px){
  /*必要ならばここにコードを書く*/
}

/*834px以下*/
@media screen and (max-width: 834px){
  /*必要ならばここにコードを書く*/
}
/* ================================================
   Marten Love - サイズガイド記事用スタイル
   Cocoon Child style.css の末尾に追記してください
   ================================================ */

から</article-wrap>の終わりまでを
     WordPressのHTML編集モードに貼り付けるだけでOK
     追加CSSは一切不要です
============================================================ -->

<style>
/* ==============================================
   Marten Love - サイズガイド記事スタイル
   CSS変数・clamp・aspect-ratioを使用しない
   WordPress追加CSS完全対応版
   ============================================== */

.ml-wrap {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 16px 80px;
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif;
  font-size: 16px;
  line-height: 1.85;
  color: #444444;
}

/* ── Eyecatch ── */
.ml-eyecatch {
  width: 100%;
  background: #1E1E1E;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 36px;
}
.ml-eyecatch svg {
  width: 100%;
  height: auto;
  display: block;
}

/* ── Category label ── */
.ml-category {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #D4A400;
  background: #FFF9E6;
  border: 1px solid #F5C518;
  padding: 4px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

/* ── Title ── */
.ml-title {
  font-family: 'Noto Serif JP', 'Hiragino Mincho Pro', Georgia, serif;
  font-size: 26px;
  font-weight: 900;
  line-height: 1.5;
  color: #111111;
  margin-bottom: 24px;
  padding-left: 18px;
  border-left: 5px solid #F5C518;
}
@media (max-width: 600px) {
  .ml-title { font-size: 20px; }
}

/* ── Author box ── */
.ml-author {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #FFFFFF;
  border: 1px solid #E8E6DF;
  border-radius: 10px;
  padding: 16px 20px;
  margin-bottom: 28px;
}
.ml-author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #F5C518;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}
.ml-author-name {
  font-weight: 700;
  font-size: 15px;
  color: #111111;
  margin-bottom: 4px;
}
.ml-author-meta {
  font-size: 12px;
  color: #777777;
  line-height: 1.5;
}

/* ── TOC ── */
.ml-toc {
  background: #FFFFFF;
  border: 2px solid #F5C518;
  border-radius: 10px;
  padding: 24px 28px;
  margin-bottom: 48px;
}
.ml-toc-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 15px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 14px;
  padding-left: 12px;
  border-left: 4px solid #F5C518;
}
.ml-toc ol {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: toc-num;
}
.ml-toc ol li {
  counter-increment: toc-num;
  border-bottom: 1px dashed #E5E3DB;
  padding: 7px 0;
}
.ml-toc ol li:last-child { border-bottom: none; }
.ml-toc ol li a {
  color: #444444;
  text-decoration: none;
  font-size: 14px;
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.ml-toc ol li a:before {
  content: counter(toc-num);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  background: #FFF9E6;
  color: #D4A400;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}
.ml-toc ol li a:hover { color: #D4A400; }

/* ── Section headings ── */
.ml-h2 {
  font-family: 'Noto Serif JP', serif;
  font-size: 22px;
  font-weight: 900;
  color: #111111;
  margin: 0 0 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid #F5C518;
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 600px) { .ml-h2 { font-size: 18px; } }

.ml-h2-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #F5C518;
  color: #111111;
  font-size: 14px;
  font-weight: 900;
  border-radius: 50%;
  flex-shrink: 0;
}

.ml-h3 {
  font-family: 'Noto Serif JP', serif;
  font-size: 17px;
  font-weight: 700;
  color: #111111;
  margin: 28px 0 12px;
  padding-left: 12px;
  border-left: 3px solid #F5C518;
}

.ml-section { margin-bottom: 60px; }

/* ── Tables ── */
.ml-table-wrap {
  overflow-x: auto;
  margin: 24px 0;
  border-radius: 10px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
}
.ml-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 380px;
  background: #FFFFFF;
}
.ml-table thead tr { background: #1E1E1E; }
.ml-table thead th {
  color: #FFFFFF;
  font-weight: 700;
  padding: 12px 16px;
  text-align: left;
  font-size: 13px;
}
.ml-table thead th:first-child { border-radius: 10px 0 0 0; }
.ml-table thead th:last-child { border-radius: 0 10px 0 0; }
.ml-table tbody tr { border-bottom: 1px solid #EDEBE4; }
.ml-table tbody tr:last-child { border-bottom: none; }
.ml-table tbody tr:nth-child(even) { background: #F5F5F3; }
.ml-table tbody td { padding: 11px 16px; }
.ml-tc { text-align: center; }

/* Badges */
.ml-badge-r { background: #FDECEA; color: #C0392B; padding: 3px 10px; border-radius: 99px; font-size: 12px; font-weight: 700; white-space: nowrap; display: inline-block; }
.ml-badge-y { background: #FEF3CD; color: #8A5C00; padding: 3px 10px; border-radius: 99px; font-size: 12px; font-weight: 700; white-space: nowrap; display: inline-block; }
.ml-badge-g { background: #E6F4EB; color: #1E7A3D; padding: 3px 10px; border-radius: 99px; font-size: 12px; font-weight: 700; white-space: nowrap; display: inline-block; }
.ml-diff-h { color: #C0392B; font-weight: 700; }
.ml-diff-m { color: #8A5C00; font-weight: 700; }
.ml-diff-e { color: #1E7A3D; font-weight: 700; }

/* ── Callout boxes ── */
.ml-callout {
  border-radius: 10px;
  padding: 18px 22px;
  margin: 20px 0;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.ml-callout-icon { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.ml-callout-body { flex: 1; font-size: 14px; line-height: 1.75; }
.ml-callout-body strong { display: block; font-size: 15px; margin-bottom: 6px; }
.ml-callout.info { background: #EFF6FF; border-left: 4px solid #3B82F6; color: #1A4FA0; }
.ml-callout.warn { background: #FFF9E6; border-left: 4px solid #F5C518; color: #7A5500; }
.ml-callout.danger { background: #FFF0F0; border-left: 4px solid #E53E3E; color: #C0392B; }
.ml-callout.success { background: #F0FAF3; border-left: 4px solid #38A169; color: #1E7A3D; }

/* ── Author comment ── */
.ml-comment {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: #F9F7F2;
  border: 1px solid #E8E4D9;
  border-radius: 10px;
  padding: 18px 20px;
  margin: 24px 0;
}
.ml-comment-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #F5C518;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.ml-comment-body { flex: 1; font-size: 14px; line-height: 1.75; color: #444444; }
.ml-comment-name { font-size: 11px; font-weight: 700; color: #777777; margin-bottom: 6px; letter-spacing: 0.06em; }

/* ── Photo placeholder ── */
.ml-photo {
  background: #1E1E1E;
  border-radius: 10px;
  padding: 48px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 24px 0;
  border: 2px dashed #444444;
  text-align: center;
}
.ml-photo-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #F5C518;
  background: rgba(245,197,24,0.1);
  padding: 4px 14px;
  border-radius: 99px;
  border: 1px solid rgba(245,197,24,0.3);
}
.ml-photo-icon { font-size: 36px; opacity: 0.4; }
.ml-photo-text { font-size: 13px; color: #CCCCCC; opacity: 0.7; line-height: 1.6; }

/* ── Model card ── */
.ml-model {
  background: #FFFFFF;
  border: 1px solid #E8E6DF;
  border-radius: 10px;
  overflow: hidden;
  margin: 24px 0;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
}
.ml-model-head {
  background: #1E1E1E;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.ml-model-name {
  font-family: 'Noto Serif JP', serif;
  font-size: 17px;
  font-weight: 700;
  color: #FFFFFF;
}
.ml-model-body { padding: 20px 22px; }
.ml-model-rule {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: #FFF9E6;
  border-radius: 6px;
  padding: 12px 16px;
  margin-bottom: 16px;
  font-size: 14px;
  font-weight: 700;
  color: #222222;
  line-height: 1.6;
}
.ml-model-rule-icon { font-size: 20px; flex-shrink: 0; }
.ml-model-tips { font-size: 14px; line-height: 1.8; padding: 0; list-style: none; }
.ml-model-tips li { padding: 4px 0 4px 20px; position: relative; }
.ml-model-tips li:before { content: '\2192'; position: absolute; left: 0; color: #D4A400; font-weight: 700; }

/* ── Flow box ── */
.ml-flow {
  background: #FFFFFF;
  border: 1px solid #E0DDD5;
  border-radius: 10px;
  padding: 28px;
  margin: 24px 0;
}
.ml-flow-title {
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
  font-size: 16px;
  color: #111111;
  margin-bottom: 20px;
  text-align: center;
}
.ml-flow-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px dashed #E0DDD5;
}
.ml-flow-step:last-child { border-bottom: none; }
.ml-flow-num {
  min-width: 28px;
  height: 28px;
  background: #F5C518;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 900;
  color: #111111;
  flex-shrink: 0;
  margin-top: 2px;
}
.ml-flow-content { flex: 1; font-size: 14px; line-height: 1.7; }
.ml-flow-content strong { color: #111111; display: block; margin-bottom: 4px; }

/* ── Compare grid ── */
.ml-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 24px 0;
}
@media (max-width: 480px) { .ml-compare { grid-template-columns: 1fr; } }
.ml-compare-card {
  background: #FFFFFF;
  border: 1px solid #E8E6DF;
  border-radius: 10px;
  padding: 18px;
  text-align: center;
}
.ml-compare-brand { font-size: 13px; font-weight: 700; color: #777777; margin-bottom: 8px; }
.ml-compare-result { font-size: 14px; color: #444444; line-height: 1.5; }

/* ── Insole grid ── */
.ml-insole {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 20px 0;
}
@media (max-width: 480px) { .ml-insole { grid-template-columns: 1fr; } }
.ml-insole-card {
  background: #FFFFFF;
  border: 1px solid #E8E6DF;
  border-radius: 10px;
  padding: 16px 18px;
}
.ml-insole-sit { font-size: 13px; color: #777777; margin-bottom: 6px; }
.ml-insole-rec { font-size: 14px; font-weight: 700; color: #111111; }

/* ── CTA ── */
.ml-cta {
  background: #1E1E1E;
  border-radius: 10px;
  padding: 28px 28px 24px;
  margin: 32px 0;
  text-align: center;
}
.ml-cta-label { font-size: 12px; color: #CCCCCC; letter-spacing: 0.1em; margin-bottom: 10px; }
.ml-cta-main { font-family: 'Noto Serif JP', serif; font-size: 17px; font-weight: 700; color: #FFFFFF; margin-bottom: 20px; line-height: 1.6; }
.ml-cta-main em { color: #F5C518; font-style: normal; }
.ml-cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.ml-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}
.ml-btn-p { background: #F5C518; color: #111111; }
.ml-btn-s { background: transparent; color: #FFFFFF; border: 1px solid rgba(255,255,255,0.4); }
.ml-cta-note { font-size: 12px; color: #AAAAAA; margin-top: 14px; }

/* ── Summary ── */
.ml-summary {
  background: #1E1E1E;
  color: #FFFFFF;
  border-radius: 10px;
  padding: 28px 32px;
  margin: 40px 0;
}
.ml-summary-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 18px;
  font-weight: 700;
  color: #F5C518;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(245,197,24,0.3);
}
.ml-summary-list { list-style: none; padding: 0; margin: 0; }
.ml-summary-list li {
  padding: 9px 0 9px 24px;
  position: relative;
  font-size: 15px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  line-height: 1.65;
}
.ml-summary-list li:last-child { border-bottom: none; }
.ml-summary-list li:before { content: '\2713'; position: absolute; left: 0; color: #F5C518; font-weight: 700; }

/* ── Related ── */
.ml-related { margin-top: 60px; }
.ml-related-title { font-family: 'Noto Serif JP', serif; font-size: 16px; font-weight: 700; color: #111111; margin-bottom: 16px; }
.ml-related-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 600px) { .ml-related-grid { grid-template-columns: 1fr; } }
.ml-related-card {
  background: #FFFFFF;
  border: 1px solid #E8E6DF;
  border-radius: 6px;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 13px;
  color: #444444;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}
.ml-related-card:before { content: '\2192'; color: #D4A400; font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.ml-related-card:hover { border-color: #F5C518; color: #111111; }

/* ── Editor note ── */
.ml-editornote {
  background: #F0F0F0;
  border-radius: 10px;
  padding: 20px 22px;
  margin-top: 48px;
  font-size: 13px;
  color: #777777;
  border-left: 4px solid #CCCCCC;
  line-height: 1.7;
}
.ml-editornote strong { color: #444444; }
.ml-editornote code { background: #E0E0E0; padding: 1px 6px; border-radius: 3px; font-size: 12px; }

p { margin-bottom: 16px; }

/* === Marten Love スタイルここまで === */