/*root*/
:root {
    --primary1: orangered;
    --primary2: rgb(252, 122, 0);
    --link: darkcyan;
    --text: #222;
    --text-secondary: #777;
    --font: "Noto Sans JP", system-ui, -apple-system, "Segoe UI", sans-serif;
    --font-min: "Zen Old Mincho", serif;
}

.stroke-black {
    text-shadow:
        -1px -1px 0 #000,
        1px -1px 0 #000,
        -1px 1px 0 #000,
        1px 1px 0 #000;
}

.stroke-white {
    text-shadow:
        -1px -1px 0 #fff,
        1px -1px 0 #fff,
        -1px 1px 0 #fff,
        1px 1px 0 #fff;
}

body {
    font-family: var(--font);
    color: var(--text);
}

/*common*/
.flex {
    display: flex;
}

.block {
    display: block;
}

.grid {
    display: grid;
}

.sticky {
    position: sticky;
}

.fixed {
    position: fixed;
}

.absolute {
    position: absolute;
}

.relative {
    position: relative;
}

.justify-center {
    justify-content: center;
}

.align-center {
    align-items: center;
}

.text-center {
    text-align: center;
}

.p-sm {
    padding: 4px;
}

.p-md {
    padding: 8px;
}

.p-lg {
    padding: 12px;
}

.py-sm {
    padding-block: 4px;
}

.py-md {
    padding-block: 8px;
}

.py-lg {
    padding-block: 12px;
}

.px-sm {
    padding-inline: 4px;
}

.px-md {
    padding-inline: 8px;
}

.px-lg {
    padding-inline: 12px;
}

.gap-sm {
    gap: 4px;
}

.gap-sm {
    gap: 8px;
}

.gap-lp {
    gap: 12px;
}


.space-y-sm>*+* {
    margin-top: 0.5rem;
}

.space-y-md>*+* {
    margin-top: 0.75rem;
}

.space-y-lg>*+* {
    margin-top: 1rem;
}

a {
    text-decoration: none;
    color: var(--link);
}

/*original*/
.floating-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 50px;
    border-bottom: 1px lightgray solid;
    z-index: 100;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
}

.floating-header-install-btn {
    display: flex;
    align-items: center;
    background-color: var(--primary1);
    color: white;
    font-weight: 600;
    border-radius: 8px;
    padding: 8px;
    box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.2);
}

.floating-header-doc-btn {
    display: flex;
    align-items: center;
    background-color: white;
    border: solid lightgray 1px;
    gap: 4px;
    font-weight: 600;
    border-radius: 8px;
    padding: 8px;
    box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.2);
}

.header-hero {
    width: 100%;
}

.header-badges {
    display: flex;
    justify-content: space-evenly;
    gap: 8px;
    padding-block: 8px;
}

.header-badge {
    flex: 1;
    padding: 4px;
    border-radius: 4px;
    border: lightgray solid 1px;
    text-align: center;
    color: var(--primary1);
    font-weight: 600;
    box-shadow: 1px 1px 2px 0 rgba(0, 0, 0, 0.2);
}

.header-text-lg {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    text-decoration: red 4px underline;
    text-underline-offset: 10px;
    background-color: #fff;
    padding-block: 8px;
}

.header-text-price {
    background-color: var(--primary1);
    padding: 12px;
    font-size: 1.375rem;
    font-weight: 700;
    border-radius: 9999px;
    text-align: center;
    color: white;

}

.install-google {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: auto;
    color: white;
    font-size: larger;
    font-weight: 600;
}

.install-google img {
    width: 100%;
}

.download-doc {
    background-color: yellow;
    display: block;
    color: #333;
    width: 80%;
    margin: auto;
    padding-block: 16px;
    border-radius: 999px;
    text-align: center;
    font-weight: 600;
    font-size: 1.4rem;
    text-shadow: 1px 1px 0px white;
}

.try-order {
    background-color: white;
    display: block;
    color: #555;
    width: 80%;
    margin: auto;
    padding-block: 16px;
    border-radius: 999px;
    text-align: center;
    font-weight: 400;
    font-size: 1.4rem;

}

.header-cta {
    background-color: var(--primary1);
    color: white;
    padding-block: 24px;

}

/*section*/
.section {
    padding-block: 20px;
}

.sect-h1 {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
}

.separator-1 {
    width: 40%;
    height: 4px;
    background-color: orangered;
    margin-inline: auto;
    margin-block: 20px;

}

.problem-item {
    border-radius: 12px;
    border: solid 1px lightgray;
    box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.2);
    width: 90%;
    margin: auto;
    margin-top: 1rem;
}

.art-h2 {
    text-align: center;
    font-size: 1.25rem;
}

.art-header-img-ct {
    width: 100%;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.art-header-img-ct img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    margin: auto;
    object-position: center;
}

.art-solution {
    font-size: 1.5rem;
    text-align: center;
    padding: 8px 0 24px 0;
    color: orangered;
    font-weight: 700;
}

.cta-section {
    background: linear-gradient(to bottom right, rgb(255, 229, 219), rgba(255, 238, 232, 0.5));
    border-radius: 12px;
    border: rgb(255, 198, 177) 1px solid;
    width: 90%;
    margin: auto;
    padding: 12px;
}

.cta-h3 {
    font-size: 1.2rem;
}

.chev-down {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    padding-block: 12px;
}

.feature-badges {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 8px;
}

.feature-badge {
    display: block;
    padding: 4px 12px;
    border-radius: 9999px;
    border: white;
    background-color: orangered;
    color: white;
    font-weight: 600;
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    padding: 8px;
    gap: 8px;
}

.solution-item {
    border-radius: 4px;
    padding: 24px 12px;
    border: lightsalmon 1px solid;
    color: #333;

}

.solution-h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;

}

.solution-caption {
    color: #555;
    font-size: 0.9rem;
}

.solution-img-ct {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.solution-img-ct img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.screenshot-img {
    width: 80%;
    object-position: center;
    object-fit: contain;
    margin: auto;
    display: block;
    overflow: hidden;
    border-radius: 20px;
    border: 2px #727272 solid;
    box-shadow: 2px 2px 8px 0 rgba(0, 0, 0, 0.2);
}

.screenshot-item {

    padding: 12px;
    border: 1px solid lightgray;
    width: 90%;
    margin: 1rem auto;
    border-radius: 12px;
    background: linear-gradient(to bottom, rgb(255, 247, 240), white 50%);
}

.screenshot-caption {
    padding-block: 24px;
    color: #555;
}

.price-cta {
    display: grid;
    gap: 8px;
    padding: 24px 0;
}

.btn-shape-1 {
    padding: 12px 0;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2px;
    border-radius: 9999px;
    box-shadow: 1px 1px 8px 0 rgba(0, 0, 0, 0.1);
    font-weight: 500;

}

.btn-shape-lg {
    padding: 18px 0;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2px;
    border-radius: 8px;
    box-shadow: 1px 1px 8px 0 rgba(0, 0, 0, 0.1);
    font-weight: 600;
    font-size: 1.4rem;
    margin: 4px 12px;
}

.btn-default {
    background-color: var(--primary2);
    color: white;

}

.btn-secondary {
    background-color: white;
    color: #333;
    border: solid 1px lightgray;
}

.price-card {
    padding: 24px;
    width: 90%;
    margin: 12px auto;
    border-radius: 24px;
    border: solid 1px lightgray;
    box-shadow: 2px 2px 8px 0 rgba(0, 0, 0, 0.1);
}

.price-card ul {
    list-style-type: none;
    display: grid;
    gap: 4px;
    padding: 8px 0;
    font-weight: 600;
}

.caption-secondary {
    color: #666;
    font-size: 1rem;
    padding: 24px;
}

.steps {
    position: relative;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
    padding: 12px;
}

.step-ct {
    padding: 24px;
    margin: auto;
    border-radius: 24px;
    border: var(--primary1) solid 1px;
    box-shadow: 1px 1px 8px 0 rgba(0, 0, 0, 0.1);
    background-color: white;
}

.step-num {
    color: var(--primary1);
    background-color: rgb(255, 237, 230);
    border: solid 1px var(--primary1);
    padding: 8px;
    aspect-ratio: 1/1;
    border-radius: 8px;
    width: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
}

.step-img-ct {
    max-width: 100%;
    overflow: hidden;
}

.step-img-ct img {
    width: 50%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    margin: auto;
    display: block;

}

.steps-v-line {
    position: absolute;
    top: 0;
    left: 50%;
    width: 10px;
    height: 100%;
    z-index: -10;
    background-color: var(--primary1);
}

.functions {
    display: grid;
    gap: 16px;
    padding: 24px 8px;
    grid-template-columns: repeat(1, 1fr);
}

.function-card {
    padding: 12px;
    border-radius: 12px;
    border: solid lightgray 1px;
    box-shadow: 2px 2px 6px 0 rgba(0, 0, 0, 0.2);
}

.function-cap {
    padding: 8px;
    color: #777;
}

.shop-img {
    width: 30%;
    aspect-ratio: 1/1;
    display: block;
    overflow: hidden;
    object-fit: cover;
    border-radius: 12px;
}

.shop-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-inline: 8px;
}

.case-kpi {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 8px 0;
}

.kpi {
    border: 1px solid lightgray;
    border-radius: 14px;
    padding: 10px 12px;
    background: #fcfcfc;
}

.kpi .k {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
}

.kpi .v {
    margin: 0;
    font-weight: 900;
}

.shop-card {
    padding: 12px;
    border-radius: 12px;
    border: 1px solid lightgray;
    box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.1);
    margin: 0 8px;
}

.function-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.function-img {
    width: 15%;
    aspect-ratio: 1/1;
    object-fit: contain;
    border: solid rgb(252, 128, 82) 1px;
    border-radius: 12px;
    padding: 2px;
    display: block;
}

.accordion {
    background: #fff;
    border: 1px solid lightgray;
    border-radius: 12px;
    box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.1);
    padding: 6px 14px;
}

.accordion details {
    padding: 12px 0;
}

.accordion summary {
    font-weight: 900;
    padding: 12px 0;
}

details {
    border-top: 1px solid lightgray;
    padding: 10px 0;
}

details:first-of-type {
    border-top: none;
    padding-top: 0;
}

summary {
    cursor: pointer;
    font-weight: 900;
    list-style: none;
}

summary::-webkit-details-marker {
    display: none;
}

details p {
    margin: 8px 0 0;
    color: #777;
    font-size: 14px;
}

details {
    border-top: 1px solid #ccc;
    padding: 10px 0;
}

.contact-top-links {
    display: grid;
    gap: 10px;
    margin-bottom: 14px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: #fff;
    font-weight: 900;
    box-shadow: var(--shadow2);
}

.contact-form {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 16px;
    display: grid;
    gap: 12px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid #dcdcdc;
    border-radius: 12px;
    padding: 12px 12px;
    font-size: 16px;
    outline: none;
    background: #fff;
}

.contact-form textarea {
    min-height: 140px;
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: rgba(255, 106, 0, .6);
    box-shadow: 0 0 0 4px rgba(255, 106, 0, .12);
}

.error {
    color: #c40000;
    font-size: 12px;
    margin-top: 4px;
    font-weight: 800;
}

#send {
    width: 100%;
    border: none;
    border-radius: 999px;
    background: var(--primary1);
    color: #fff;
    font-weight: 1000;
    padding: 14px 14px;
    font-size: 16px;
    box-shadow: 1px 1px 8px 0 rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

#send:disabled {
    opacity: .6;
    cursor: not-allowed;
}

.contact-bottom-cta {
    margin-top: 16px;
    padding: 16px;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 106, 0, .22);
    background: linear-gradient(135deg, rgba(255, 106, 0, .08), #fff);
    display: grid;
    gap: 12px;
}

.contact-bottom-cta h3 {
    margin: 0 0 4px;
    font-size: 16px;
}

.contact-bottom-cta p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.contact-bottom-cta .btns {
    display: grid;
    gap: 10px;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 8px;
}

.contact-link {
    display: flex;
    justify-content: center;
    gap: 4px;
    align-items: center;
    padding: 16px 4px;
    font-size: 1.2rem;
    font-weight: 700;
    box-shadow: 1px 1px 8px 0 rgba(0, 0, 0, 0.1);
}

footer {
    background-color: #333;
    color: white;
    font-weight: 400;
    font-size: 0.9rem;
    padding: 24px;
}

footer a {
    text-decoration: underline 1px solid;
    color: white;

}

.header-h2 {
    font-size: 1rem;
}

.price-card {
    max-width: 648px;
}

.step-ct .install-google {
    width: 80%;
}


.hp{
  position:absolute;
  left:-10000px;
  top:auto;
  width:1px;
  height:1px;
  overflow:hidden;
}
/* =========================
   Responsive (PC)
   ========================= */
@media (min-width: 900px) {

    .wrapper {
        max-width: 1024px;
        margin: auto;
    }

    .pc-header {
        display: flex;
    }

    .pc-header .pc-right {
        flex: 2;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .header-h1 {
        font-size: 3rem;
    }

    .header-h2 {
        font-size: 2rem;
    }

    .pc-header .pc-left {
        flex: 3;
    }

    .header-badge {
        padding: 24px 4px;
        font-size: 1.3rem;
        font-weight: bold;
        aspect-ratio: 1/1;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .header-cta {
        max-width: 678px;
        margin: auto;
        margin-top: 12px;
    }

    .install-google img {
        width: 80%;
    }

    .sect-h1 {
        font-size: 2.5rem;
        margin: 24px 0;
    }

    .problem-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }

    .problem-item {
        min-height: 100%;
    }

    .cta-section {
        padding: 24px;
        width: 80%;
        margin: auto;
    }

    .cta-h3 {
        font-size: 2rem;
    }

    .feature-badge {
        font-size: 1.2rem;
    }

    .solution-grid-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .solution-item {
        box-shadow: 2px 2px 8px 0 rgba(255, 196, 123, 0.2);

    }

    .solution-h4 {
        font-size: 1.5rem;
        margin-block: 12px;
    }

    .screenshot-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .steps {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }

    .step-ct {
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    .step-img-ct {
        margin-top: auto;

    }

    .step-img-ct img {
        width: 90%;
    }

    .steps-v-line {
        height: 10px;
        width: 100%;
        top: 50%;
        left: 0;
    }

    .function-cap {
        padding: 32px 24px;
    }

    .functions {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}