@charset "UTF-8";

/* ==========================================================================
   Single Page CSS
   ========================================================================== */

/* -------------------------------------------------------------------------
   Imported / Common Styles (from catlist.css)
   ------------------------------------------------------------------------- */

/* Breadcrumb */
.p-breadcrumb {
    margin: 20px 0;
    font-size: 12px;
    color: #666;
}

.p-breadcrumb__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.p-breadcrumb__item {
    display: flex;
    align-items: center;
}

.p-breadcrumb__item::after {
    content: '\f105';
    /* fa-angle-right */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 10px;
    margin: 0 8px;
    color: #ccc;
}

.p-breadcrumb__item:last-child::after {
    content: none;
}

.p-breadcrumb__item a {
    color: #333;
}

.p-breadcrumb__item a:hover {
    text-decoration: underline;
}





/* ── 目次 ── */
.mo-wrap {
    --ink: #0D1F35;
    --blue: #1A4FAD;
    --sky: #2E7DD4;
    --ice: #E6F0FB;
    --pale: #F2F7FE;
    --fire: #D63A08;
    --amber: #B8880A;
    --gold: #F0B429;
    --green: #1A7A45;
    --gray: #5A6A7E;
    --lgray: #F4F7FB;
    --border: #C5D5EE;
    --white: #FFFFFF;

    font-family: "BIZ UDGothic", "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
    color: var(--ink);
    line-height: 1.85;
    font-size: 16px;
    max-width: 860px;
    margin: 0 auto;
}

.mo-toc {
    background: var(--lgray);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 24px 28px;
    margin-bottom: 48px;
}


.mo-toc-title {
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 14px;
    color: var(--ink);
    display: flex;
    align-items: center;
    gap: 8px;
}

.mo-toc-title::before {
    content: '📋';
    font-size: 16px;
}

.mo-toc ol {
    margin: 0;
    padding-left: 1.5em;
    counter-reset: toc-counter;
    list-style: none;
}

.mo-toc ol li {
    counter-increment: toc-counter;
    margin-bottom: 6px;
    font-size: 14px;
}

.mo-toc ol li::before {
    content: counter(toc-counter) ". ";
    font-weight: 700;
    color: var(--blue);
}

.mo-toc ol li a {
    color: var(--ink);
    text-decoration: none;
    font-size: clamp(12px, 2.6vw, 16px) !important;
}

.mo-toc ol li a:hover {
    color: var(--sky);
    text-decoration: underline;
}




/* Sidebar Widgets */
.p-widget {
    margin-bottom: 40px;
}

.p-widget__head {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.c-card--ranking-side {
    margin-bottom: 20px;
    display: flex;
    flex-direction: row;
    gap: 15px;
    align-items: flex-start;
}

.c-card--ranking-side .c-card__img {
    width: 100px;
    height: 70px;
    flex-shrink: 0;
    margin-bottom: 0;
}

.c-card--ranking-side .c-card__title {
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 0;
}

.c-card--ranking-side .c-card__rank-badge {
    width: 30px;
    height: 30px;
    font-size: 12px;
    padding-left: 5px;
    padding-top: 3px;
}

.u-mb-10 {
    margin-bottom: 10px;
}

.p-widget--banner img {
    width: 100%;
    margin-bottom: 10px;
}

/* -------------------------------------------------------------------------
   Single Content Styles
   ------------------------------------------------------------------------- */

.p-single {
    margin-bottom: 60px;
}

/* Header */
.p-single__header {
    margin-bottom: 40px;
}

.p-single__title {
    font-size: 2rem;
    font-weight: bold;
    line-height: 1.4;
    margin-bottom: 15px;
}

.p-single__meta {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 20px;
    font-size: 14px;
    color: #999;
}

.p-single__cat {
    position: static;
    /* Reset absolute positioning from common card styles if any */
    padding: 2px 10px;
    font-size: 12px;
}

.p-single__thumb img {
    width: 100%;
    height: auto;
}

@media (max-width: 767px) {
    .p-single__title {
        font-size: 1.5rem;
    }

    /* Header */
    .p-single__header {
        margin-bottom: 0px;
    }
}

/* Content Body (WP Editor Simulation) */
.p-single__content {
    font-size: 16px;
    line-height: 1.8;
}

.p-single__content>* {
    margin-bottom: 30px;
}

/* Headings */
.p-single__content h2 {
    font-size: 1.6rem;
    font-weight: bold;
    border-bottom: 3px solid #aada1a;
    padding-bottom: 10px;
    margin-top: 50px;
    margin-bottom: 30px;
}

.p-single__content h3 {
    font-size: 1.4rem;
    font-weight: bold;
    border-left: 8px solid #aada1a;
    padding-left: 15px;
    margin-top: 40px;
    margin-bottom: 20px;
}

/* Lists */
.p-single__content ul.list-type01 {
    list-style: circle;
    list-style-position: inside;
    margin-bottom: 30px;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 4px;
}

.p-single__content li {
    margin-bottom: 10px;
}

.p-single__content li:last-child {
    margin-bottom: 0;
}

/* Table */
.p-single__content .table-type01 {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}

.p-single__content .table-type01 th,
.p-single__content .table-type01 td {
    border: 1px solid #ddd;
    padding: 15px;
    font-size: 14px;
}

.p-single__content .table-type01 th {
    background-color: #f5f5f5;
    font-weight: bold;
    width: 30%;
    /* Approximate width */
    text-align: left;
}

/* SP Table Scroll wrapper if needed, 
   but for now responsive by stacking or scroll is not explicitly requested beyond "100% fidelity".
   Usually tables on SP need care.
*/
@media (max-width: 767px) {
    .p-single__content h3 {
        font-size: 1rem;

    }

    .p-single__content p {
        font-size: 0.9rem;
    }

    .p-single__content .table-type01 th,
    .p-single__content td {
        /*   display: block;
        width: 100%;*/
    }

    .p-single__content .table-type01 th {
        background-color: #eee;
    }

    /* Headings */
    .p-single__content h2 {
        font-size: 1rem;
        font-weight: bold;

    }
}

/* Custom Field Box (.c-cfbox) */
.c-cfbox {
    border: 2px solid #ddd;
    padding: 20px;
    margin-bottom: 40px;
}

.c-cfbox__title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 15px;
    border-bottom: 1px dashed #ccc;
    padding-bottom: 10px;
    /* Reset h3 styles if this uses h3 tag, but here we use specific class logic 
       Wait, markup uses h3.c-cfbox__title inside .p-single__content? 
       No, .p-single__content styles might cascade if not careful.
       The instructions said "WP本文内のHTMLタグ...にはクラスもIDも付けない",
       but the CF box IS inside .p-single__content.
       So .p-single__content h3 style WILL apply to .c-cfbox__title if it's an h3.
       We need to override or use a div if we don't want the green border.
       The prompt says "ボックス部分...専用マークアップを用意する".
       I will assume the green border is okay OR I should override it.
       Let's override to match a "Box" look. 
    */
}

.p-single__content .c-cfbox__title {
    border-left: none;
    border-bottom: 1px dashed #ccc;
    padding-left: 0;
    margin-top: 0;
}

.c-cfbox__body {
    display: flex;
    gap: 20px;
}

.c-cfbox__media {
    width: 30%;
    /* or fixed width */
    flex-shrink: 0;
}

.c-cfbox__media img {
    width: 100%;
    height: auto;
    border: 1px solid #eee;
}

.c-cfbox__text {
    width: 70%;
    font-size: 14px;
}

@media (max-width: 767px) {
    .c-cfbox__body {
        flex-direction: column;
    }

    .c-cfbox__media,
    .c-cfbox__text {
        width: 100%;
    }
}

/* Balloons (.c-balloon) */
.c-balloon {
    display: flex;
    gap: 20px;
    margin-bottom: 30px !important;
    /* Override p-single__content > * margin if needed */
    align-items: flex-start;
}

.c-balloon__avatar {
    width: 110px;
    flex-shrink: 0;
    text-align: center;
}

.c-balloon__avatar img {

    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 2px solid #ddd;
    object-fit: cover;
}

.c-balloon__bubble {
    margin-top: 20px;
    background: #f0f0f0;
    border-radius: 10px;
    padding: 15px;
    position: relative;
    flex-grow: 1;
    font-size: 14px;
}

.c-balloon__bubble p {
    margin: 0 !important;
}

/* Triangle for Left Balloon */
.c-balloon--left .c-balloon__bubble::before {
    content: "";
    position: absolute;
    top: 20px;
    left: -10px;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 10px solid #f0f0f0;
}

/* Right Balloon */
.c-balloon--right {
    flex-direction: row-reverse;
}

.c-balloon--right .c-balloon__bubble {
    background: #e6f7ff;
    /* Slightly different color for variety */
}

/* Triangle for Right Balloon */
.c-balloon--right .c-balloon__bubble::before {
    content: "";
    position: absolute;
    top: 20px;
    right: -10px;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 10px solid #e6f7ff;
}

@media (max-width: 767px) {
    .c-balloon {
        gap: 10px;
    }

    .c-balloon__avatar {
        width: 60px;
    }

    .c-balloon__avatar img {
        width: 60px;
        height: 60px;
    }

    .c-balloon__bubble {
        margin-top: 0px;

    }

}


/* ==========================================================================
   Project: FAQ Page Styles (#p-faq)
   ========================================================================== */

/* Page Header
   ========================================================================== */
.p-page-header {
    background-color: #f8f9fa;
    padding: 60px 0;
    text-align: center;
    margin-bottom: 60px;
}

@media (max-width: 767px) {
    .p-page-header {
        padding: 40px 0;
        margin-bottom: 40px;
    }
}

.p-page-header__title {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

@media (max-width: 767px) {
    .p-page-header__title {
        font-size: 1.5rem;
    }
}

.p-page-header__sub {
    font-size: 1rem;
    color: #666;
}

@media (max-width: 767px) {
    .p-page-header__sub {
        font-size: 0.875rem;
    }
}

/* FAQ Section
   ========================================================================== */
.p-faq {
    padding-bottom: 80px;
}

@media (max-width: 767px) {
    .p-faq {
        padding-bottom: 50px;
    }
}

.p-faq__list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

@media (max-width: 767px) {
    .p-faq__list {
        gap: 20px;
    }
}

.p-faq__item {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.p-faq__q {
    display: flex;
    align-items: flex-start;
    padding: 24px;
    background-color: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
    font-weight: 700;
    font-size: 1.125rem;
    line-height: 1.5;
    color: #333;
}

@media (max-width: 767px) {
    .p-faq__q {
        padding: 16px;
        font-size: 1rem;
    }
}

.p-faq__a {
    display: flex;
    align-items: flex-start;
    padding: 24px;
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

@media (max-width: 767px) {
    .p-faq__a {
        padding: 16px;
        font-size: 0.9375rem;
    }
}

.p-faq__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-weight: bold;
    font-size: 1rem;
    margin-right: 16px;
    flex-shrink: 0;
}

@media (max-width: 767px) {
    .p-faq__icon {
        width: 24px;
        height: 24px;
        font-size: 0.875rem;
        margin-right: 12px;
    }
}

.p-faq__icon--q {
    background-color: #00be64;
    /* Theme green based on classes like c-card__label--green */
    color: #fff;
}

.p-faq__icon--a {
    background-color: #e9ecef;
    color: #333;
}

.p-faq__q-text,
.p-faq__a-text {
    flex: 1;
    margin-top: 2px;
}



/* ── 強調スニペットボックス ── */
.snippet-wrap {
    --ink: #0D1F35;
    --blue: #1A4FAD;
    --sky: #2E7DD4;
    --ice: #E6F0FB;
    --pale: #F2F7FE;
    --fire: #D63A08;
    --amber: #B8880A;
    --gold: #F0B429;
    --green: #1A7A45;
    --gray: #5A6A7E;
    --lgray: #F4F7FB;
    --border: #C5D5EE;
    --white: #FFFFFF;

    font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', sans-serif;
    color: var(--ink);
    line-height: 1.85;
    font-size: 16px;
    max-width: 860px;
    margin: 0 auto;
}


.snippet-type01 {
    background: var(--pale);
    border: 2px solid var(--sky);
    border-left: 6px solid var(--sky);
    border-radius: 8px;
    padding: 24px 28px;
    margin-bottom: 36px;
}

.snippet-label {
    font-size: clamp(12px, 2.6vw, 16px) !important;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--sky);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.snippet-type01 p {
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: .8em;
}

.snippet-type01 p:last-child {
    margin-bottom: 0;
}

.snippet-type01 strong {}

.snippet-type01 ul {
    display: block;
    list-style-type: disc !important;
    margin-block-start: 1em !important;
    margin-block-end: 1em !important;
    padding-inline-start: 40px;
    unicode-bidi: isolate;
}

@media (max-width: 767px) {
    .snippet-type01 ul {

        padding-inline-start: 20px;

    }
}

/* ── 強調ボックス ── */

.pickbox-wrap {
    --ink: #0D1F35;
    --blue: #1A4FAD;
    --sky: #2E7DD4;
    --ice: #E6F0FB;
    --pale: #F2F7FE;
    --fire: #D63A08;
    --amber: #B8880A;
    --gold: #F0B429;
    --green: #1A7A45;
    --gray: #5A6A7E;
    --lgray: #F4F7FB;
    --border: #C5D5EE;
    --white: #FFFFFF;

    font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', sans-serif;
    color: var(--ink);
    line-height: 1.85;
    font-size: 16px;
    max-width: 860px;
    margin: 0 auto;
}



.pick-wrap {



    padding: 20px;

}



.pick-type01 {
    background: var(--pick-bg, #FFF0EC);
    border: 1px solid var(--pick-border, #F5C0AC);
    border-left: 5px solid var(--fire, #ff6b3d);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 36px;
}





.pick-label {

    color: var(--pick-label, #d84315);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
    font-size: clamp(12px, 2.6vw, 18px) !important;

}



.pick-type01 p {
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: .8em;
}

.pick-type01 p:last-child {
    margin-bottom: 0;
}

.pick-type01 strong {}

.pick-type01 ul {
    display: block;
    list-style-type: disc !important;
    margin-block-start: 1em !important;
    margin-block-end: 1em !important;
    padding-inline-start: 40px;
    unicode-bidi: isolate;
}


.pick-type02 {
    background: #EAF6EF;
    border: 1px solid #A8D8BC;
    border-left: 5px solid var(--green);
    border-radius: 8px;
    padding: 24px 28px;
    margin-bottom: 36px;
}

.pick-type02 .pick-label {
    font-size: clamp(12px, 2.6vw, 16px) !important;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--green);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.pick-type02 p {
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: .8em;
}

.pick-type02 p:last-child {
    margin-bottom: 0;
}

.pick-type02 strong {}

.pick-type02 ul {
    display: block;
    list-style-type: disc !important;
    margin-block-start: 1em !important;
    margin-block-end: 1em !important;
    padding-inline-start: 40px;
    unicode-bidi: isolate;
}


@media (max-width: 767px) {
    .pick-type02 ul {

        padding-inline-start: 20px;

    }
}



.pick-type03 {
    background: #FFFAEC;
    border: 1px solid #E8D490;
    border-left: 5px solid var(--amber);
    border-radius: 8px;
    padding: 24px 28px;
    margin-bottom: 36px;
}

.pick-type03 .pick-label {
    font-size: clamp(12px, 2.6vw, 16px) !important;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--amber);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.pick-type03 p {
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: .8em;
}

.pick-type03 p:last-child {
    margin-bottom: 0;
}

.pick-type03 strong {}

.pick-type03 ul {
    display: block;
    list-style-type: disc !important;
    margin-block-start: 1em !important;
    margin-block-end: 1em !important;
    padding-inline-start: 40px;
    unicode-bidi: isolate;
}


@media (max-width: 767px) {
    .pick-type03 ul {

        padding-inline-start: 20px;

    }
}


/* ── タイトルタイプ ── */

.h2-title-type01 {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 900;
    font-size: clamp(18px, 2.6vw, 24px) !important;
    color: var(--ink);
    margin: 0 0 20px;
    padding: 14px 20px 14px 22px !important;
    background: var(--ink);
    color: #fff;
    border-radius: 6px;
    position: relative;
    line-height: 1.45;
    border-bottom: none !important;

}

.h2-title-type01::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    background: var(--gold);
    border-radius: 6px 0 0 6px;
}

.h3-title-type01 {

    padding: 10px 15px;
    margin: 30px 0 15px;

    border-left: 4px solid var(--sky, #4da3ff);
    border-bottom: 1px solid var(--border, #ddd);

    color: var(--h3-text, #333);

    font-size: 20px;
    font-weight: 600;

}

/* ── tablecss ── */

.table-type02-wrap {
    overflow-x: auto;
    margin: 16px 0 24px;
    border-radius: 8px;
    border: 1px solid var(--border);
    box-shadow: 0 2px 10px rgba(10, 22, 40, .06);
}

.table-type02 {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    min-width: 500px;
}

.table-type02 th {
    background: var(--ink);
    color: #fff;
    padding: 12px 16px;
    text-align: left;
    font-weight: 700;
    white-space: nowrap;
}

.table-type02 th.gold {
    background: var(--amber);
}

.table-type02 td {
    padding: 11px 16px;
    border-bottom: 1px solid var(--border);
    vertical-align: top;
    line-height: 1.65;
}

.table-type02 tr:last-child td {
    border-bottom: none;
}

.table-type02 tr:nth-child(even) td {
    background: var(--pale);
}

.table-type02 .td-label {
    font-weight: 700;
    color: var(--blue);
    white-space: nowrap;
}

.table-type02 .td-fire {
    color: var(--fire);
    font-weight: 700;
}

.table-type02 .td-green {
    color: var(--green);
    font-weight: 700;
}



/* ── ブロックcss ── */
.wp-block-image {
    margin: 20px 0;
}

.p-single__content p {
    margin: 20px 0;
}