/* /entry/295/ IllustratorでスイングPOPを作る方法 */

.swing-295-body {
    font-family: "Avenir", "Helvetica Neue", Helvetica, Arial, "Hiragino Sans", "ヒラギノ角ゴシック", YuGothic, "Yu Gothic", メイリオ, Meiryo, sans-serif;
}

.swing-295-body #Flame {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.swing-295-body #Bread {
    display: flex;
    width: 70%;
    min-width: 0;
    margin: 10px auto -10px;
}

.swing-295-body #mein-Contents {
    display: flex;
    justify-content: center;
    width: 100%;
    min-width: 0;
    gap: 1em;
    margin: 20px auto 0;
    padding: 0;
}

.swing-295-body #sideMenu {
    float: left;
    width: 18%;
    min-width: 0;
    padding-bottom: 20px;
}

.swing-295-body #Main {
    float: right;
    width: 52%;
    min-width: 0;
}

.swing-295-page,
.swing-295-page *,
.swing-295-page *::before,
.swing-295-page *::after {
    box-sizing: border-box;
}

.swing-295-page {
    --swing-red: #c8161d;
    --swing-dark: #342b2c;
    --swing-ink: #2e3338;
    --swing-muted: #667079;
    --swing-pale: #fff5f4;
    --swing-pale-blue: #f2f8fb;
    --swing-border: #e5d9d7;
    color: var(--swing-ink);
    font-size: 16px;
    line-height: 1.9;
}

.swing-295-page img {
    max-width: 100%;
    height: auto;
}

.swing-295-page a {
    text-decoration: none;
}

.swing-295-page p,
.swing-295-page li,
.swing-295-page td,
.swing-295-page th,
.swing-295-page a {
    overflow-wrap: anywhere;
}

.swing-295-page-title {
    margin: 0 0 22px;
    padding: 18px 24px;
    border: 0;
    border-left: 7px solid var(--swing-red);
    border-bottom: 3px solid #edb1aa;
    background: linear-gradient(90deg, #fff5f4 0%, #f7fafb 100%);
    color: #272426;
    font-size: clamp(25px, 2.3vw, 36px);
    line-height: 1.45;
    letter-spacing: 0.02em;
}

.swing-295-hero {
    margin: 0 0 24px;
    overflow: hidden;
    border-radius: 18px;
    background: #f4f1ed;
    box-shadow: 0 12px 30px rgba(73, 54, 49, 0.16);
}

.swing-295-hero img {
    display: block;
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
}

.swing-295-lead {
    margin: 0 0 24px;
    padding: 30px;
    border: 1px solid #ead8d4;
    border-radius: 18px;
    background:
        radial-gradient(circle at 100% 0, rgba(200, 22, 29, 0.08), transparent 32%),
        linear-gradient(135deg, #fff9f7 0%, #fff 60%, #f6fafb 100%);
}

.swing-295-eyebrow {
    margin: 0 0 8px !important;
    color: var(--swing-red);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.swing-295-lead h2,
.swing-295-cta h2 {
    margin: 0 0 16px;
    color: var(--swing-dark);
    font-size: clamp(23px, 2.05vw, 33px);
    line-height: 1.48;
}

.swing-295-lead p {
    margin: 0 0 1em;
}

.swing-295-button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.swing-295-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 20px;
    border: 2px solid transparent;
    border-radius: 999px;
    font-weight: 800;
    line-height: 1.4;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.swing-295-button--primary {
    border-color: var(--swing-red);
    background: var(--swing-red);
    color: #fff;
    box-shadow: 0 8px 18px rgba(200, 22, 29, 0.2);
}

.swing-295-button--primary:hover,
.swing-295-button--primary:focus-visible {
    border-color: #8f0f14;
    background: #8f0f14;
    color: #fff;
}

.swing-295-button--secondary {
    border-color: #304c5b;
    background: #fff;
    color: #304c5b;
}

.swing-295-button--secondary:hover,
.swing-295-button--secondary:focus-visible {
    border-color: #304c5b;
    background: #304c5b;
    color: #fff;
}

.swing-295-button:hover,
.swing-295-button:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(35, 37, 39, 0.16);
}

.swing-295-summary {
    margin: 0 0 24px;
    padding: 24px 26px;
    border-left: 5px solid #2b7f94;
    border-radius: 12px;
    background: var(--swing-pale-blue);
}

.swing-295-summary h2 {
    margin: 0 0 12px;
    color: #245f6f;
    font-size: 22px;
}

.swing-295-summary ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 24px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.swing-295-summary li {
    position: relative;
    padding-left: 22px;
}

.swing-295-summary li::before {
    position: absolute;
    top: 0.62em;
    left: 0;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #2b7f94;
    content: "";
}

.swing-295-toc {
    margin: 0 0 34px;
    padding: 24px 26px;
    border: 1px solid var(--swing-border);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 5px 18px rgba(60, 46, 43, 0.07);
}

.swing-295-toc > p {
    margin: 0 0 12px;
    color: var(--swing-red);
    font-size: 18px;
    font-weight: 800;
}

.swing-295-toc ol {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px 24px;
    margin: 0;
    padding-left: 1.5em;
}

.swing-295-toc a {
    color: #344b58;
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: #b8c9d1;
    text-underline-offset: 3px;
}

.swing-295-toc a:hover,
.swing-295-toc a:focus-visible {
    color: var(--swing-red);
    text-decoration-color: var(--swing-red);
}

.swing-295-section {
    scroll-margin-top: 24px;
    margin: 0 0 46px;
}

.swing-295-section > p {
    margin: 0 0 20px;
}

.swing-295-section-heading {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    margin: 0 0 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #ead7d3;
}

.swing-295-section-heading > span {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--swing-red);
    color: #fff;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0.05em;
}

.swing-295-section-heading h2 {
    margin: 0;
    color: var(--swing-dark);
    font-size: clamp(23px, 2vw, 31px);
    line-height: 1.5;
}

.swing-295-card-grid {
    display: grid;
    gap: 16px;
}

.swing-295-card-grid--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.swing-295-card {
    position: relative;
    padding: 24px 20px 20px;
    border: 1px solid #eadfdd;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 6px 18px rgba(64, 48, 45, 0.06);
}

.swing-295-card-number {
    display: inline-grid;
    place-items: center;
    width: 32px;
    height: 32px;
    margin-bottom: 10px;
    border-radius: 50%;
    background: #fff0ee;
    color: var(--swing-red);
    font-weight: 900;
}

.swing-295-card h3,
.swing-295-judgement-grid h3,
.swing-295-link-card h3 {
    margin: 0 0 8px;
    color: #373234;
    font-size: 19px;
    line-height: 1.55;
}

.swing-295-card p,
.swing-295-judgement-grid p,
.swing-295-link-card p {
    margin: 0;
}

.swing-295-note {
    margin-top: 20px;
    padding: 20px 22px;
    border: 1px solid #efcf8b;
    border-left: 6px solid #df9b1e;
    border-radius: 10px;
    background: #fff9e9;
}

.swing-295-note strong {
    display: block;
    margin-bottom: 4px;
    color: #6b4a12;
    font-size: 17px;
}

.swing-295-note p {
    margin: 0;
}

.swing-295-step-list {
    display: grid;
    gap: 15px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.swing-295-step-list > li {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 18px;
    padding: 22px;
    border: 1px solid #e5dcda;
    border-radius: 14px;
    background: #fff;
}

.swing-295-step-number {
    display: grid;
    place-items: center;
    align-self: start;
    min-height: 48px;
    border-radius: 10px;
    background: linear-gradient(135deg, #c8161d, #8e1115);
    color: #fff;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.06em;
}

.swing-295-step-list h3 {
    margin: 0 0 7px;
    color: #342b2c;
    font-size: 20px;
}

.swing-295-step-list p {
    margin: 0;
}

.swing-295-table-wrap {
    width: 100%;
    margin: 0 0 24px;
    overflow-x: auto;
    border: 1px solid #dfd6d4;
    border-radius: 12px;
    background: #fff;
    -webkit-overflow-scrolling: touch;
}

.swing-295-table {
    width: 100%;
    min-width: 680px;
    border-collapse: collapse;
}

.swing-295-table th,
.swing-295-table td {
    padding: 14px 15px;
    border-right: 1px solid #e7dfdd;
    border-bottom: 1px solid #e7dfdd;
    text-align: left;
    vertical-align: top;
}

.swing-295-table thead th {
    background: #543f41;
    color: #fff;
}

.swing-295-table tbody th {
    width: 18%;
    background: #fff5f4;
    color: #7f1519;
}

.swing-295-table tr:last-child > * {
    border-bottom: 0;
}

.swing-295-table tr > *:last-child {
    border-right: 0;
}

.swing-295-judgement-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.swing-295-judgement-grid article {
    padding: 22px;
    border-radius: 14px;
    background: linear-gradient(145deg, #f4f9fb, #fff);
    border: 1px solid #d7e5ea;
}

.swing-295-judgement-grid span,
.swing-295-link-card > span {
    display: inline-block;
    margin-bottom: 8px;
    color: #28758a;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.swing-295-mistake-list {
    display: grid;
    gap: 15px;
}

.swing-295-mistake-list article {
    padding: 21px 22px;
    border-left: 5px solid var(--swing-red);
    border-radius: 0 12px 12px 0;
    background: #fff7f5;
}

.swing-295-mistake-list h3 {
    margin: 0 0 8px;
    color: #3c3031;
    font-size: 19px;
}

.swing-295-mistake-list h3 span {
    display: inline-block;
    margin-right: 9px;
    color: var(--swing-red);
    font-size: 13px;
    font-weight: 900;
}

.swing-295-mistake-list p {
    margin: 0;
}

.swing-295-checklist {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.swing-295-checklist li {
    position: relative;
    padding: 12px 14px 12px 46px;
    border: 1px solid #dbe4e7;
    border-radius: 10px;
    background: #fbfdfe;
}

.swing-295-checklist li::before {
    position: absolute;
    top: 12px;
    left: 14px;
    display: grid;
    place-items: center;
    width: 23px;
    height: 23px;
    border: 2px solid #2f8398;
    border-radius: 5px;
    color: #2f8398;
    content: "✓";
    font-size: 14px;
    font-weight: 900;
}

.swing-295-link-note {
    margin-top: 20px;
    padding: 18px 20px;
    border-radius: 10px;
    background: #f5f6f7;
}

.swing-295-link-note p {
    margin: 0;
}

.swing-295-link-note a {
    color: #b4141a;
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.swing-295-link-note a:hover,
.swing-295-link-note a:focus-visible {
    color: #721014;
}

.swing-295-link-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.swing-295-link-card {
    display: block;
    padding: 22px;
    border: 1px solid #dfd6d4;
    border-radius: 14px;
    background: #fff;
    color: var(--swing-ink);
    box-shadow: 0 6px 18px rgba(64, 48, 45, 0.06);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.swing-295-link-card:hover,
.swing-295-link-card:focus-visible {
    border-color: var(--swing-red);
    color: var(--swing-ink);
    transform: translateY(-3px);
    box-shadow: 0 10px 22px rgba(64, 48, 45, 0.12);
}

.swing-295-faq details {
    margin-bottom: 12px;
    overflow: hidden;
    border: 1px solid #e0d7d5;
    border-radius: 12px;
    background: #fff;
}

.swing-295-faq summary {
    position: relative;
    padding: 17px 52px 17px 20px;
    color: #3b3031;
    cursor: pointer;
    font-weight: 800;
    list-style: none;
}

.swing-295-faq summary::-webkit-details-marker {
    display: none;
}

.swing-295-faq summary::after {
    position: absolute;
    top: 50%;
    right: 20px;
    color: var(--swing-red);
    content: "+";
    font-size: 25px;
    line-height: 1;
    transform: translateY(-50%);
}

.swing-295-faq details[open] summary::after {
    content: "−";
}

.swing-295-faq details > div {
    padding: 0 20px 18px;
}

.swing-295-faq details p {
    margin: 0;
}

.swing-295-related {
    margin: 0 0 34px;
    padding: 26px;
    border-radius: 16px;
    background: #f6f7f8;
}

.swing-295-related h2 {
    margin: 0 0 16px;
    color: #3a3435;
    font-size: 23px;
}

.swing-295-related-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 18px;
}

.swing-295-related-grid a {
    position: relative;
    padding-left: 18px;
    color: #364e5a;
    font-weight: 700;
}

.swing-295-related-grid a::before {
    position: absolute;
    top: 0.72em;
    left: 0;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--swing-red);
    content: "";
}

.swing-295-related-grid a:hover,
.swing-295-related-grid a:focus-visible,
.swing-295-back-link:hover,
.swing-295-back-link:focus-visible {
    color: var(--swing-red);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.swing-295-back-link {
    display: inline-block;
    margin-top: 18px;
    color: #7b1519;
    font-weight: 900;
}

.swing-295-cta {
    margin-bottom: 40px;
    padding: 30px;
    border-radius: 18px;
    background:
        radial-gradient(circle at 100% 0, rgba(255,255,255,0.13), transparent 32%),
        linear-gradient(135deg, #5a4244 0%, #3c2d2f 48%, #251e20 100%);
    color: #fff;
    box-shadow: 0 12px 28px rgba(44, 31, 33, 0.2);
}

.swing-295-cta .swing-295-eyebrow {
    color: #ffd0cc;
}

.swing-295-cta h2,
.swing-295-cta p {
    color: #fff;
}

.swing-295-cta p {
    margin: 0;
}

.swing-295-button--light {
    border-color: #fff;
    background: #fff;
    color: #3c2d2f;
}

.swing-295-button--light:hover,
.swing-295-button--light:focus-visible {
    border-color: #f1d6d2;
    background: #f1d6d2;
    color: #3c2d2f;
}

.swing-295-button--accent {
    border-color: #e84c51;
    background: #d52a30;
    color: #fff;
}

.swing-295-button--accent:hover,
.swing-295-button--accent:focus-visible {
    border-color: #ff777b;
    background: #ff777b;
    color: #2d2022;
}

@media (max-width: 1100px) {
    .swing-295-body #Bread {
        width: 94%;
    }

    .swing-295-body #mein-Contents {
        width: 94%;
    }

    .swing-295-body #sideMenu {
        width: 24%;
    }

    .swing-295-body #Main {
        width: 72%;
    }

    .swing-295-card-grid--three,
    .swing-295-link-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 650px) {
    .swing-295-body #Bread {
        width: calc(100% - 24px);
        margin-top: 8px;
    }

    .swing-295-body #mein-Contents {
        display: block;
        width: 100%;
        margin-top: 14px;
    }

    .swing-295-body #sideMenu {
        float: none;
        width: 100%;
    }

    .swing-295-body #Main {
        float: none;
        width: 100%;
        padding: 0 12px;
    }

    .swing-295-page {
        font-size: 15px;
        line-height: 1.85;
    }

    .swing-295-page-title {
        margin-bottom: 16px;
        padding: 14px 16px;
        font-size: 24px;
    }

    .swing-295-hero {
        border-radius: 12px;
    }

    .swing-295-lead,
    .swing-295-cta {
        padding: 22px 18px;
        border-radius: 14px;
    }

    .swing-295-button-row,
    .swing-295-button {
        width: 100%;
    }

    .swing-295-summary {
        padding: 20px 18px;
    }

    .swing-295-summary ul,
    .swing-295-toc ol,
    .swing-295-judgement-grid,
    .swing-295-related-grid {
        grid-template-columns: 1fr;
    }

    .swing-295-toc {
        padding: 20px 18px;
    }

    .swing-295-section {
        scroll-margin-top: 210px;
        margin-bottom: 38px;
    }

    .swing-295-section-heading {
        grid-template-columns: 44px minmax(0, 1fr);
        gap: 10px;
    }

    .swing-295-section-heading > span {
        width: 44px;
        height: 44px;
        font-size: 12px;
    }

    .swing-295-section-heading h2 {
        font-size: 22px;
    }

    .swing-295-step-list > li {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 18px;
    }

    .swing-295-step-number {
        display: inline-grid;
        width: 92px;
        min-height: 38px;
    }

    .swing-295-table {
        min-width: 620px;
    }

    .swing-295-related {
        padding: 22px 18px;
    }
}

@media (max-width: 480px) {
    .swing-295-body #Main {
        padding: 0 10px;
    }

    .swing-295-page-title {
        font-size: 21px;
    }

    .swing-295-lead h2,
    .swing-295-cta h2 {
        font-size: 22px;
    }

    .swing-295-card,
    .swing-295-judgement-grid article,
    .swing-295-link-card,
    .swing-295-mistake-list article {
        padding: 18px 16px;
    }
}
