/*
Theme Name:     Lightning-child
Description:    Lightningの子テーマ
Author:         login_user
Template:       lightning

(optional values you can add: Theme URI, Author URI, Version, License, License URI, Tags, Text Domain)
*/


/* =========================
   Lightningのh2の横棒を消す
========================= */

h2 {
	border-top: none !important;
	padding-top: 0 !important;
}

/* -----------------------------
	改行
----------------------------- */

.hidden {
	display: none;
}

.hidden.pcBlock {
	display: inline;
}

@media screen and (max-width: 640px) {
	.hidden.pcBlock {
		display: none;
	}

	.hidden.spBlock {
		display: inline;
	}
}

/*スマホcenter⇒left*/
@media screen and (max-width: 800px) {
	.mobile-left {
		text-align:left;
	}
}


/* ------------------------------------
   PCは中央寄せ、スマホだけ左寄せ
------------------------------------ */

.mobile-left {
  text-align: center !important;
}

@media screen and (max-width: 640px) {
  .mobile-left {
    text-align: left !important;
  }
}



/* -----------------------------
    汎用
----------------------------- */

.clear {
    clear: both;
}

.floatL {
    float: left;
    margin: 0;
}

.floatR {
    float: right;
    margin: -15px 0 0 20px;
}

.center {
    text-align: center;
}

.right {
    text-align: right;
}

.left {
    text-align: left;
}

.underline {
    text-decoration: underline;
}

strong,
em,
.font-bold {
    font-weight: bold;
}

.font-normal {
    font-weight: normal;
}

.indent-1 {
    margin: 0 0 0 1em;
    text-indent: -1em;
}

.indent1 {
    text-indent: 1em;
}


/* ==================================================
    リンク集メーカー for WordPress 販売ページ
================================================== */

.fllp-sales {
    --fllp-blue: #2563eb;
    --fllp-blue-dark: #1e40af;
    --fllp-sky: #eaf4ff;
    --fllp-text: #1f2937;
    --fllp-muted: #64748b;
    --fllp-border: #dbe7f5;
    --fllp-bg: #f8fbff;

    color: var(--fllp-text);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.8;
}

.fllp-sales * {
    box-sizing: border-box;
}

.fllp-container {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
}


/* -----------------------------
    ファーストビュー
----------------------------- */

.fllp-hero {
    padding: 80px 0;
    background:
        radial-gradient(circle at top left, rgba(37, 99, 235, 0.15), transparent 32%),
        linear-gradient(180deg, #ffffff 0%, #f1f7ff 100%);
}

.fllp-hero-inner {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 42px;
    align-items: center;
}

.fllp-kicker,
.fllp-section-label {
    display: inline-flex;
    align-items: center;
    margin: 0 0 12px;
    padding: 5px 12px;
    border-radius: 999px;
    background: #dbeafe;
    color: var(--fllp-blue-dark);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.fllp-hero h1 {
    margin: 0;
    font-size: clamp(24px, 3vw, 32px);
    line-height: 1.25;
    letter-spacing: -0.04em;
    color: #0f172a;
}

.fllp-lead {
    margin: 22px 0 0;
    font-size: 17px;
    color: #334155;
}

.fllp-hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 26px 0 0;
}

.fllp-hero-badges span {
    display: inline-flex;
    padding: 7px 12px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid var(--fllp-border);
    color: #334155;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.05);
}

.fllp-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.fllp-hero-panel {
    position: relative;
}


/* -----------------------------
    共通ボタン
----------------------------- */

.fllp-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 48px;
    padding: 12px 24px;
    border-radius: 999px;
    text-decoration: none !important;
    font-weight: 800;
    line-height: 1.4;
    transition: 0.2s ease;
    opacity: 1 !important;
    visibility: visible !important;
    text-indent: 0 !important;
    letter-spacing: normal !important;
}

.fllp-btn:hover,
.fllp-btn:focus {
    transform: translateY(-2px);
    text-decoration: none !important;
}

.fllp-btn-main {
    background: linear-gradient(180deg, #3b82f6, var(--fllp-blue));
    color: #ffffff !important;
    box-shadow: 0 12px 24px rgba(37, 99, 235, 0.28);
}

.fllp-btn-main:hover,
.fllp-btn-main:focus {
    color: #ffffff !important;
}

.fllp-btn-sub {
    background: #ffffff;
    color: var(--fllp-blue-dark) !important;
    border: 1px solid #bfdbfe;
}


/* -----------------------------
    表示サンプル
----------------------------- */

.fllp-demo-card {
    background: #ffffff;
    border: 1px solid var(--fllp-border);
    border-radius: 28px;
    padding: 28px;
    box-shadow: 0 24px 50px rgba(15, 23, 42, 0.12);
}

.fllp-demo-title {
    margin-bottom: 18px;
    font-size: 18px;
    font-weight: 900;
    color: #0f172a;
}

.fllp-demo-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.fllp-demo-links a {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 999px;
    background: linear-gradient(180deg, #f8fcff, #e4f2ff);
    border: 1px solid #cfe1f5;
    color: #1f2937;
    text-decoration: none;
    font-weight: 700;
}

.fllp-demo-list {
    display: grid;
    gap: 10px;
}

.fllp-demo-row {
    margin: 0;
    padding: 12px 14px;
    border-radius: 12px;
    background: #f8fbff;
    border-left: 4px solid #60a5fa;
    font-weight: 700;
}

.fllp-demo-list span {
    color: #2563eb;
    margin-right: 6px;
}

/* WordPressの自動整形で空pが入った時の保険 */
.fllp-demo-list p {
    display: none !important;
}


/* -----------------------------
    セクション共通
----------------------------- */

.fllp-section {
    padding: 72px 0;
    background: #ffffff;
}

.fllp-section-blue {
    background: linear-gradient(180deg, #f8fbff 0%, #eef6ff 100%);
}

.fllp-section-head {
    text-align: center;
    margin-bottom: 34px;
}

.fllp-section-head h2 {
    margin: 0;
    font-size: clamp(24px, 3vw, 32px);
    line-height: 1.35;
    color: #0f172a;
}

.fllp-section-head p:not(.fllp-section-label) {
    max-width: 760px;
    margin: 14px auto 0;
    color: var(--fllp-muted);
}


/* -----------------------------
    悩み・機能・デザイン
----------------------------- */

.fllp-problem-grid,
.fllp-feature-grid,
.fllp-design-grid,
.fllp-target-grid {
    display: grid;
    gap: 18px;
}

.fllp-problem-grid {
    grid-template-columns: repeat(3, 1fr);
}

.fllp-feature-grid {
    grid-template-columns: repeat(3, 1fr);
}

.fllp-design-grid {
    grid-template-columns: repeat(3, 1fr);
}

.fllp-problem-card,
.fllp-feature-card,
.fllp-design-card {
    background: #ffffff;
    border: 1px solid var(--fllp-border);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}

.fllp-problem-card h3,
.fllp-feature-card h3,
.fllp-design-card h3 {
    margin: 0 0 10px;
    font-size: 20px;
    color: #0f172a;
}

.fllp-problem-card p,
.fllp-feature-card p {
    margin: 0;
    color: var(--fllp-muted);
}

.fllp-feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-bottom: 14px;
    border-radius: 14px;
    background: #dbeafe;
    color: var(--fllp-blue-dark);
    font-weight: 900;
}

.fllp-design-card ul,
.fllp-price-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.fllp-design-card li,
.fllp-price-list li {
    position: relative;
    padding-left: 24px;
    margin-top: 8px;
    color: #334155;
}

.fllp-design-card li::before,
.fllp-price-list li::before {
    content: "・";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--fllp-blue);
    font-weight: 900;
}


/* -----------------------------
    使い方
----------------------------- */

.fllp-how {
    background: #f8fbff;
}

.fllp-step-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.fllp-step {
    position: relative;
    background: #ffffff;
    border: 1px solid var(--fllp-border);
    border-radius: 20px;
    padding: 24px;
}

.fllp-step span {
    display: inline-flex;
    margin-bottom: 10px;
    color: var(--fllp-blue);
    font-size: 13px;
    font-weight: 900;
}

.fllp-step h3 {
    margin: 0 0 8px;
    font-size: 20px;
}

.fllp-step p {
    margin: 0;
    color: var(--fllp-muted);
}


/* -----------------------------
    おすすめ用途
----------------------------- */

.fllp-target-grid {
    grid-template-columns: repeat(3, 1fr);
}

.fllp-target-grid div {
    padding: 18px 20px;
    border-radius: 16px;
    background: #f8fbff;
    border: 1px solid var(--fllp-border);
    font-weight: 800;
    text-align: center;
}


/* -----------------------------
    価格
----------------------------- */

.fllp-price {
    background:
        radial-gradient(circle at top right, rgba(37, 99, 235, 0.12), transparent 30%),
        #ffffff;
}

.fllp-price-card {
    max-width: 620px;
    margin: 0 auto;
    padding: 34px;
    border-radius: 28px;
    background: #ffffff;
    border: 1px solid var(--fllp-border);
    box-shadow: 0 24px 50px rgba(15, 23, 42, 0.12);
    text-align: center;
}

.fllp-price-name {
    margin: 0;
    font-size: 18px;
    font-weight: 900;
}

.fllp-price-text {
    margin: 12px 0 0;
    color: #0f172a;
    font-weight: 500;
}

.fllp-price-text span {
    font-size: 38px;
    letter-spacing: -0.04em;
}

.fllp-price-note {
    margin: 4px 0 22px;
    color: var(--fllp-muted);
}

.fllp-price-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px 16px;
    margin: 24px 0;
    text-align: left;
}

.fllp-price-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    min-height: 56px !important;
    padding: 14px 24px !important;
    border-radius: 999px !important;
    background: linear-gradient(180deg, #3b82f6 0%, #2563eb 100%) !important;
    color: #ffffff !important;
    font-size: 18px !important;
    font-weight: 800 !important;
    line-height: 1.4 !important;
    text-decoration: none !important;
    border: none !important;
    box-shadow: 0 12px 24px rgba(37, 99, 235, 0.28) !important;
    opacity: 1 !important;
    visibility: visible !important;
    text-indent: 0 !important;
    letter-spacing: normal !important;
}

.fllp-price-btn:hover,
.fllp-price-btn:focus {
    color: #ffffff !important;
    text-decoration: none !important;
}


/* -----------------------------
    FAQ
----------------------------- */

.fllp-faq {
    background: #f8fbff;
}

.fllp-faq-list {
    max-width: 820px;
    margin: 0 auto;
    display: grid;
    gap: 12px;
}

.fllp-faq-list details {
    background: #ffffff !important;
    border: 1px solid #dbe7f5 !important;
    border-radius: 16px !important;
    padding: 0 !important;
    overflow: hidden !important;
}

.fllp-faq-list summary {
    position: relative !important;
    display: block !important;
    list-style: none !important;
    cursor: pointer !important;
    padding: 18px 54px 18px 20px !important;
    color: #0f172a !important;
    font-size: 16px !important;
    font-weight: 900 !important;
    line-height: 1.6 !important;
    background: #ffffff !important;
    opacity: 1 !important;
    visibility: visible !important;
    text-indent: 0 !important;
    letter-spacing: normal !important;
}

.fllp-faq-list summary::-webkit-details-marker {
    display: none !important;
}

.fllp-faq-list summary::marker {
    content: "" !important;
}

.fllp-faq-list summary::after {
    content: "+" !important;
    position: absolute !important;
    right: 20px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    color: #2563eb !important;
    font-size: 24px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
}

.fllp-faq-list details[open] summary::after {
    content: "-" !important;
}

.fllp-faq-list details p {
    margin: 0 !important;
    padding: 0 20px 18px !important;
    color: #64748b !important;
    line-height: 1.8 !important;
    background: #ffffff !important;
    opacity: 1 !important;
    visibility: visible !important;
    text-indent: 0 !important;
    letter-spacing: normal !important;
}


/* -----------------------------
    CTA
----------------------------- */

.fllp-cta {
    padding: 72px 0;
    text-align: center;
    background: linear-gradient(135deg, #1d4ed8, #2563eb);
    color: #ffffff;
}

.fllp-cta h2 {
    margin: 0;
    font-size: clamp(28px, 3vw, 42px);
}

.fllp-cta p {
    max-width: 720px;
    margin: 14px auto 24px;
    color: rgba(255, 255, 255, 0.88);
}

.fllp-cta .fllp-btn,
.fllp-cta .fllp-btn-main {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 220px !important;
    min-height: 56px !important;
    padding: 14px 28px !important;
    border-radius: 999px !important;
    background: #ffffff !important;
    color: #1e40af !important;
    font-size: 17px !important;
    font-weight: 900 !important;
    line-height: 1.4 !important;
    text-decoration: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    text-indent: 0 !important;
    letter-spacing: normal !important;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.22) !important;
}

.fllp-cta .fllp-btn:hover,
.fllp-cta .fllp-btn-main:hover,
.fllp-cta .fllp-btn:focus,
.fllp-cta .fllp-btn-main:focus {
    background: #ffffff !important;
    color: #1e40af !important;
    text-decoration: none !important;
    opacity: 1 !important;
}


/* -----------------------------
    レスポンシブ
----------------------------- */

@media (max-width: 900px) {
    .fllp-hero-inner,
    .fllp-problem-grid,
    .fllp-feature-grid,
    .fllp-design-grid,
    .fllp-step-list,
    .fllp-target-grid {
        grid-template-columns: 1fr;
    }

    .fllp-hero {
        padding: 56px 0;
    }

    .fllp-section {
        padding: 56px 0;
    }
}

@media (max-width: 640px) {
    .fllp-container {
        width: min(100% - 24px, 1120px);
    }

    .fllp-hero h1 br {
        display: none;
    }

    .fllp-hero-buttons,
    .fllp-demo-links {
        display: grid;
    }

    .fllp-btn {
        width: 100%;
    }

    .fllp-price-list {
        grid-template-columns: 1fr;
    }

    .fllp-price-card {
        padding: 24px;
    }
}


/* =========================================================
   リンク集メーカー for WordPress
   マニュアルページ
========================================================= */

.fllm-manual {
	--fllm-manual-blue: #2563eb;
	--fllm-manual-blue-dark: #1d4ed8;
	--fllm-manual-blue-light: #eff6ff;
	--fllm-manual-text: #263238;
	--fllm-manual-subtext: #5f6b76;
	--fllm-manual-border: #dbe3eb;
	--fllm-manual-bg: #f7f9fb;

	max-width: 920px;
	margin: 0 auto;
	color: var(--fllm-manual-text);
	font-size: 16px;
	line-height: 1.9;
}


/* =========================================================
   基本文字
========================================================= */

.fllm-manual p {
	margin: 0 0 1.5em;
}

.fllm-manual strong {
	font-weight: 700;
	color: #17202a;
}

.fllm-manual a {
	color: var(--fllm-manual-blue);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.fllm-manual a:hover {
	color: var(--fllm-manual-blue-dark);
}


/* =========================================================
   見出し
========================================================= */

.fllm-manual h1,
.fllm-manual h2,
.fllm-manual h3 {
	font-weight: 700;
	line-height: 1.45;
	color: #17202a;
}

.fllm-manual h1 {
	margin: 0 0 30px;
	padding: 0 0 18px;
	font-size: clamp(26px, 3vw, 34px);
	border-bottom: 3px solid var(--fllm-manual-blue);
}

.fllm-manual h2 {
	margin: 52px 0 24px;
	padding: 13px 16px;
	font-size: clamp(21px, 2.4vw, 26px);
	background: var(--fllm-manual-blue-light);
	border-left: 5px solid var(--fllm-manual-blue);
	border-radius: 4px;
}

.fllm-manual h3 {
	margin: 32px 0 15px;
	padding: 0;
	font-size: clamp(18px, 2vw, 21px);
	border: none;
}


/* Lightningなどテーマ側の装飾を解除 */
.fllm-manual h1::before,
.fllm-manual h1::after,
.fllm-manual h2::before,
.fllm-manual h2::after,
.fllm-manual h3::before,
.fllm-manual h3::after {
	display: none !important;
	content: none !important;
}


/* =========================================================
   導入説明
========================================================= */

.fllm-manual-intro {
	margin: 0 0 34px;
	padding: 22px 24px;
	background: #fff;
	border: 1px solid var(--fllm-manual-border);
	border-radius: 10px;
	box-shadow: 0 4px 14px rgba(15, 23, 42, 0.05);
}

.fllm-manual-intro p:last-child {
	margin-bottom: 0;
}


/* =========================================================
   手順ブロック
========================================================= */

.fllm-manual-section {
	margin: 0 0 42px;
}

.fllm-manual-section > :last-child {
	margin-bottom: 0;
}


/* =========================================================
   箇条書き
========================================================= */

.fllm-manual ul,
.fllm-manual ol {
	margin: 18px 0 26px;
	padding-left: 1.8em;
}

.fllm-manual li {
	margin: 7px 0;
	padding-left: 3px;
}

.fllm-manual li::marker {
	color: var(--fllm-manual-blue);
	font-weight: 700;
}


/* =========================================================
   コード・ショートコード
========================================================= */

.fllm-manual code {
	display: inline-block;
	padding: 2px 7px;
	background: #f1f5f9;
	border: 1px solid #dbe3eb;
	border-radius: 4px;
	color: #1e293b;
	font-family: Consolas, Monaco, "Courier New", monospace;
	font-size: 0.92em;
}

.fllm-manual-shortcode {
	margin: 20px 0 28px;
	padding: 20px 22px;
	background: #f8fafc;
	border: 1px solid #cbd5e1;
	border-left: 5px solid var(--fllm-manual-blue);
	border-radius: 7px;
}

.fllm-manual-shortcode-label {
	display: block;
	margin-bottom: 9px;
	color: var(--fllm-manual-subtext);
	font-size: 13px;
	font-weight: 700;
}

.fllm-manual-shortcode code {
	display: block;
	padding: 12px 14px;
	background: #fff;
	border: 1px solid #dbe3eb;
	font-size: 15px;
	line-height: 1.5;
	word-break: break-all;
}


/* =========================================================
   操作名・ボタン名
========================================================= */

.fllm-manual-action {
	display: inline-block;
	padding: 2px 9px;
	background: #fff;
	border: 1px solid #aeb8c2;
	border-radius: 4px;
	color: #263238;
	font-weight: 700;
	line-height: 1.6;
}

.fllm-manual-primary-action {
	display: inline-block;
	padding: 3px 11px;
	background: var(--fllm-manual-blue);
	border: 1px solid var(--fllm-manual-blue);
	border-radius: 4px;
	color: #fff;
	font-weight: 700;
	line-height: 1.6;
}


/* =========================================================
   注意・ポイント
========================================================= */

.fllm-manual-note,
.fllm-manual-point,
.fllm-manual-warning {
	margin: 24px 0;
	padding: 18px 20px;
	border-radius: 8px;
}

.fllm-manual-note {
	background: #f8fafc;
	border: 1px solid #dbe3eb;
}

.fllm-manual-point {
	background: #eff6ff;
	border: 1px solid #bfdbfe;
}

.fllm-manual-warning {
	background: #fff8e7;
	border: 1px solid #f0cf80;
}

.fllm-manual-note p:last-child,
.fllm-manual-point p:last-child,
.fllm-manual-warning p:last-child {
	margin-bottom: 0;
}

.fllm-manual-note-title,
.fllm-manual-point-title,
.fllm-manual-warning-title {
	display: block;
	margin-bottom: 7px;
	font-weight: 700;
}

.fllm-manual-point-title {
	color: #1d4ed8;
}

.fllm-manual-warning-title {
	color: #8a5a00;
}


/* =========================================================
   操作例
========================================================= */

.fllm-manual-example {
	margin: 18px 0 26px;
	padding: 18px 20px;
	background: #fff;
	border: 1px solid var(--fllm-manual-border);
	border-radius: 8px;
}

.fllm-manual-example-title {
	margin-bottom: 10px;
	font-size: 14px;
	font-weight: 700;
	color: var(--fllm-manual-subtext);
}

.fllm-manual-example p:last-child {
	margin-bottom: 0;
}


/* =========================================================
   並べ替えアイコン
========================================================= */

.fllm-manual-sort-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	margin: 0 4px;
	background: #fff;
	border: 1px solid #b8c1cc;
	border-radius: 4px;
	font-size: 20px;
	font-weight: 700;
	line-height: 1;
}


/* =========================================================
   基本的な使い方
========================================================= */

.fllm-manual-flow {
	margin: 26px 0;
	padding: 24px;
	background: var(--fllm-manual-bg);
	border: 1px solid var(--fllm-manual-border);
	border-radius: 10px;
}

.fllm-manual-flow ol {
	margin: 0;
	padding-left: 1.8em;
}

.fllm-manual-flow li {
	margin: 10px 0;
}

.fllm-manual-flow li:first-child {
	margin-top: 0;
}

.fllm-manual-flow li:last-child {
	margin-bottom: 0;
}


/* =========================================================
   区切り線
========================================================= */

.fllm-manual hr {
	margin: 45px 0;
	border: 0;
	border-top: 1px solid var(--fllm-manual-border);
}


/* =========================================================
   画像を入れる場合
========================================================= */

.fllm-manual-image {
	margin: 24px 0 30px;
	text-align: center;
}

.fllm-manual-image img {
	display: block;
	width: auto;
	max-width: 100%;
	height: auto;
	margin: 0 auto;
	border: 1px solid #dbe3eb;
	border-radius: 7px;
	box-shadow: 0 5px 18px rgba(15, 23, 42, 0.07);
}

.fllm-manual-image-caption {
	margin-top: 8px;
	color: var(--fllm-manual-subtext);
	font-size: 13px;
	line-height: 1.6;
}


/* =========================================================
   スマートフォン
========================================================= */

@media (max-width: 767px) {

	.fllm-manual {
		max-width: none;
		font-size: 15px;
		line-height: 1.85;
		text-align: left;
	}

	.fllm-manual h1 {
		margin-bottom: 24px;
		padding-bottom: 14px;
		font-size: 26px;
		text-align: left;
	}

	.fllm-manual h2 {
		margin: 40px 0 20px;
		padding: 11px 13px;
		font-size: 21px;
		line-height: 1.5;
		text-align: left;
	}

	.fllm-manual h3 {
		margin: 28px 0 13px;
		font-size: 18px;
		text-align: left;
	}

	.fllm-manual-intro {
		padding: 18px 16px;
	}

	.fllm-manual ul,
	.fllm-manual ol {
		padding-left: 1.5em;
	}

	.fllm-manual-shortcode,
	.fllm-manual-note,
	.fllm-manual-point,
	.fllm-manual-warning,
	.fllm-manual-example {
		padding: 16px;
	}

	.fllm-manual-flow {
		padding: 18px 16px;
	}

	.fllm-manual-shortcode code {
		white-space: normal;
		word-break: break-all;
	}

}


/* =========================================================
   小さいスマートフォン
========================================================= */

@media (max-width: 480px) {

	.fllm-manual {
		font-size: 15px;
	}

	.fllm-manual h1 {
		font-size: 24px;
	}

	.fllm-manual h2 {
		font-size: 20px;
	}

	.fllm-manual h3 {
		font-size: 18px;
	}

}
