@charset "utf-8";

:root {
    --faq27-orange: #ff6200;
    --faq27-orange-dark: #e05000;
    --faq27-orange-soft: #fff4eb;
    --faq27-gold: #ffb84d;
    --faq27-yellow: #ffd200;
    --faq27-text: #222;
    --faq27-sub: #555;
    --faq27-border: #ececec;
    --faq27-white: #fff;
    --faq27-shadow: 0 8px 22px rgba(0, 0, 0, .07);
    --faq27-orange-shadow: 0 10px 26px rgba(255, 98, 0, .16);
}

#faq27-sp,
#faq27-sp * {
    box-sizing: border-box;
}

#faq27-sp {
    width: 100%;
    padding: 0 10px 28px;
    color: var(--faq27-text);
    font-family: inherit;
}

#faq27-sp img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

#faq27-sp a {
    color: inherit;
}

.faq27-sp-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    align-items: center;
    margin: 8px 0 12px;
    font-size: 11px;
    line-height: 1.6;
    color: #777;
}

.faq27-sp-breadcrumb a {
    color: #666;
    text-decoration: underline;
}

.faq27-sp-breadcrumb em {
    font-style: normal;
    color: #999;
}

.faq27-sp-hero {
    position: relative;
    overflow: hidden;
    padding: 22px 18px 24px;
    background:
        radial-gradient(circle at 92% 12%, rgba(255, 210, 0, .34) 0 18%, transparent 34%),
        linear-gradient(135deg, #fff4eb 0%, #fff 56%, #fff9f2 100%);
    border: 1px solid #ffd9bf;
    border-radius: 18px;
    box-shadow: var(--faq27-orange-shadow);
}

.faq27-sp-eyebrow {
    margin: 0 0 7px;
    color: var(--faq27-orange);
    font-size: 11px;
    font-weight: bold;
    letter-spacing: .12em;
}

.faq27-sp-hero h1 {
    margin: 0;
    font-size: 24px;
    font-weight: bold;
    line-height: 1.45;
    color: var(--faq27-text);
}

.faq27-sp-hero p {
    margin: 12px 0 0;
    font-size: 14px;
    line-height: 1.85;
    color: #333;
}

.faq27-sp-hero ul {
    display: grid;
    gap: 8px;
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
}

.faq27-sp-hero li {
    position: relative;
    padding: 9px 12px 9px 34px;
    background: #fff;
    border: 1px solid #ffd9bf;
    border-radius: 999px;
    color: var(--faq27-orange-dark);
    font-size: 13px;
    font-weight: bold;
    line-height: 1.4;
}

.faq27-sp-hero li::before {
    content: "✓";
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    display: grid;
    place-items: center;
    width: 17px;
    height: 17px;
    background: var(--faq27-orange);
    border-radius: 50%;
    color: #fff;
    font-size: 10px;
    font-weight: bold;
}

.faq27-sp-qa,
.faq27-sp-section,
.faq27-sp-contact {
    margin-top: 20px;
}

.faq27-sp-qa {
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--faq27-border);
    border-radius: 16px;
    box-shadow: var(--faq27-shadow);
}

.faq27-sp-question,
.faq27-sp-answer {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 12px;
    align-items: start;
    padding: 18px;
}

.faq27-sp-question {
    background: #fffaf6;
    border-bottom: 1px solid #ffe4d1;
}

.faq27-sp-question span,
.faq27-sp-answer span {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff8c1a, #ff6200);
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    box-shadow: 0 8px 16px rgba(255, 98, 0, .18);
}

.faq27-sp-answer span {
    background: var(--faq27-yellow);
    color: #222;
    box-shadow: 0 8px 16px rgba(255, 210, 0, .22);
}

.faq27-sp-question h2 {
    margin: 2px 0 0;
    font-size: 21px;
    line-height: 1.5;
}

.faq27-sp-answer p {
    margin: 0;
    font-size: 14px;
    line-height: 1.85;
    color: var(--faq27-sub);
}

.faq27-sp-section h2,
.faq27-sp-contact h2 {
    position: relative;
    margin: 0 0 14px;
    padding-left: 14px;
    font-size: 20px;
    font-weight: bold;
    line-height: 1.45;
    color: var(--faq27-text);
}

.faq27-sp-section h2::before,
.faq27-sp-contact h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: .28em;
    width: 5px;
    height: 1.2em;
    background: linear-gradient(180deg, var(--faq27-orange) 0%, var(--faq27-gold) 100%);
    border-radius: 999px;
}

.faq27-sp-flow,
.faq27-sp-card-list,
.faq27-sp-faq {
    display: grid;
    gap: 12px;
}

.faq27-sp-flow article,
.faq27-sp-card,
.faq27-sp-faq details {
    background: #fff;
    border: 1px solid var(--faq27-border);
    border-radius: 16px;
    box-shadow: var(--faq27-shadow);
}

.faq27-sp-flow article,
.faq27-sp-card {
    padding: 17px;
}

.faq27-sp-flow-head {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 10px;
}

.faq27-sp-flow-head span {
    display: inline-block;
    padding: 6px 11px;
    background: linear-gradient(135deg, #ff8c1a, #ff6200);
    border-radius: 999px;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    line-height: 1;
}

.faq27-sp-flow-head h3,
.faq27-sp-card h3 {
    margin: 0;
    font-size: 17px;
    font-weight: bold;
    line-height: 1.45;
    color: var(--faq27-orange);
}

.faq27-sp-flow p,
.faq27-sp-card p,
.faq27-sp-card li,
.faq27-sp-faq p,
.faq27-sp-links li,
.faq27-sp-contact p {
    font-size: 14px;
    line-height: 1.85;
}

.faq27-sp-flow p,
.faq27-sp-card p,
.faq27-sp-faq p,
.faq27-sp-contact p {
    margin: 0;
}

.faq27-sp-image {
    position: relative;
    display: block;
    margin: 13px 0 0;
    padding: 10px;
    background: linear-gradient(180deg, #fffaf5 0%, #fff4eb 100%);
    border: 1px dashed var(--faq27-gold);
    border-radius: 14px;
    text-decoration: none;
}

.faq27-sp-image img {
    display: block;
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, .10);
}

.faq27-sp-image em {
    position: absolute;
    right: 18px;
    bottom: 18px;
    padding: 6px 10px;
    background: rgba(255, 98, 0, .93);
    border-radius: 999px;
    color: #fff;
    font-size: 11px;
    font-style: normal;
    font-weight: bold;
    line-height: 1;
}

.faq27-sp-note {
    margin-top: 10px !important;
    padding: 9px 10px;
    background: #fff4eb;
    border-radius: 10px;
    color: #5c4a36;
    font-size: 13px !important;
    font-weight: bold;
}

.faq27-sp-card ul {
    margin: 10px 0 0;
    padding-left: 1.2em;
}

.faq27-sp-card li+li {
    margin-top: 4px;
}

.faq27-sp-pill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding-left: 0 !important;
    list-style: none;
}

.faq27-sp-pill-list li {
    padding: 5px 10px;
    background: #fff4eb;
    border: 1px solid #ffd9bf;
    border-radius: 999px;
    color: var(--faq27-orange-dark);
    font-size: 13px;
    font-weight: bold;
    line-height: 1.4;
}

.faq27-sp-alert {
    margin: 10px 0 0;
    padding: 10px;
    background: #fffaf5;
    border: 1px solid #ffd9bf;
    border-radius: 12px;
    color: #6a4a2b;
    font-size: 13px;
    line-height: 1.7;
}

.faq27-sp-faq details {
    overflow: hidden;
}

.faq27-sp-faq summary {
    position: relative;
    padding: 16px 44px 16px 15px;
    cursor: pointer;
    list-style: none;
    font-size: 15px;
    font-weight: bold;
    line-height: 1.65;
    color: var(--faq27-text);
}

.faq27-sp-faq summary::-webkit-details-marker {
    display: none;
}

.faq27-sp-faq summary::after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    color: var(--faq27-orange);
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
}

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

.faq27-sp-faq details>div {
    padding: 13px 15px 16px;
    border-top: 1px solid #ffe5d2;
    background: #fffaf7;
}

.faq27-sp-links ul {
    margin: 0;
    padding: 15px 17px;
    background: #fff;
    border: 1px solid var(--faq27-border);
    border-radius: 16px;
    box-shadow: var(--faq27-shadow);
}

.faq27-sp-links li+li {
    margin-top: 8px;
}

.faq27-sp-links a {
    color: var(--faq27-orange) !important;
    font-weight: bold;
}

.faq27-sp-contact {
    padding: 22px 18px;
    background:
        radial-gradient(circle at 92% 8%, rgba(255, 210, 0, .28) 0 18%, transparent 35%),
        linear-gradient(135deg, #ff8c1a 0%, #ff6200 70%, #ff7a00 100%);
    border-radius: 18px;
    box-shadow: var(--faq27-orange-shadow);
    color: #fff;
}

.faq27-sp-contact h2,
.faq27-sp-contact p {
    color: #fff;
}

.faq27-sp-contact h2::before {
    background: #fff;
}

.faq27-sp-contact a {
    display: block;
    width: 100%;
    margin-top: 14px;
    padding: 14px 16px;
    background: #fff;
    border-radius: 999px;
    color: var(--faq27-orange) !important;
    font-size: 15px;
    font-weight: bold;
    line-height: 1.3;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 6px 16px rgba(0, 0, 0, .12);
}

.faq27-sp-tel {
    margin-top: 14px !important;
    text-align: center;
    font-size: 14px !important;
}

.faq27-sp-tel strong {
    font-size: 21px;
    letter-spacing: .02em;
}

body.is-faq27-lightbox-open {
    overflow: hidden;
}

.faq27-lightbox-sp {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    padding: 30px 10px;
    background: rgba(34, 34, 34, .74);
}

.faq27-lightbox-sp.is-open {
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq27-lightbox-sp__inner {
    position: relative;
    max-width: 94vw;
    max-height: 88vh;
}

.faq27-lightbox-sp__image {
    display: block;
    max-width: 100%;
    max-height: 88vh;
    width: auto;
    height: auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, .35);
}

.faq27-lightbox-sp__close {
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 2;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, .96);
    color: var(--faq27-orange);
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .22);
}

@media only screen and (max-width: 360px) {
    #faq27-sp {
        padding-left: 8px;
        padding-right: 8px;
    }

    .faq27-sp-hero h1 {
        font-size: 22px;
    }

    .faq27-sp-section h2,
    .faq27-sp-contact h2 {
        font-size: 19px;
    }

    .faq27-sp-question h2 {
        font-size: 19px;
    }

    .faq27-sp-tel strong {
        font-size: 19px;
    }
}
