@charset "utf-8";

:root {
    --base-color: rgb(255 127 0/100%);
    scroll-behavior: smooth;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
}

p {
    margin-top: 0;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

figure {
    margin: 0;
    padding: 0;
    text-align: center;
}

img {
    max-width: 100%;
    height: auto;
}


section:nth-child(even) {
    background: rgb(200 127 0/10%);
}

address {
    font-style: normal;
}

.inline-block {
    display: inline-block;
}

.grid {
    display: grid;
}

.flex {
    display: flex;
}

.bg-main {
    background: var(--base-color);
}

.text-main {
    color: var(--base-color);
}

.text-center {
    text-align: center;
}

.text-marker {
    position: relative;
    display: inline;
    border-bottom: 2px dotted var(--base-color);
    /* 
    &::before {
        position: absolute;
        display: inline;
        width: 100%;
        min-height: 1em;
        height: 1em;
        max-height: 2em;
        content: "";
        background: rgb(255 127 0/40%);
        top: 0;
        z-index: -1;
        transform: skew(-14deg, 0);
        animation: marker .75s ease-in-out;
    } */
}

@keyframes marker {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

.section {
    padding-block: 48px;
}

.section-title {
    display: grid;
    justify-content: center;
    grid-template-columns: minmax(30px, auto) auto;
    gap: 1rem;
    margin-top: 0;

    >span {

        position: relative;
    }

    &::before {
        content: "";
        display: flex;
        width: 30px;
        height: 30px;
        background: url(images/common/icon_lobo_gray.svg) center center/contain no-repeat;
        grid-column: 1/ 2;
    }
}

.container {
    max-width: 960px;
    padding-inline: 16px;
    margin-inline: auto;
}

.gNav {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: .5rem .25rem;
    padding-block: .5rem;

    a {
        display: block;
        font-size: 1.2rem;
        width: 100%;
        padding: .5em .25em;
        text-decoration: none;
        color: #fff;
        font-weight: bold;

    }
}


.border {
    border: 2px solid var(--base-color);
}

.border-radius {
    border-radius: .5rem;

}

.header {
    .container {
        max-width: 1200px;
        padding-bottom: 1rem;
    }
}

/* #type */
.type-icons {
    grid-template-columns: repeat(3, auto);
    gap: 1rem 2rem;
}

.type-item {
    display: grid;
    font-size: .825em;
    align-items: center;
    gap: 4px;
    justify-content: center;

    img {
        width: 70%;
    }

    span {
        text-align: center;
    }
}

/* #merit */
.merit-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.merit-item {
    border: 2px solid var(--base-color);
    border-radius: 8px;
    padding: 1rem;
}

.merit-title {
    margin: 0 0 .5em;
    font-size: 1rem;
    font-weight: bold;
}

.merit-content {
    margin: 0;
    padding: 0;
}

.merit-proposal {
    &::before {
        content: "・";
    }

}

.merit-result {
    margin: 0;

    &::before {
        content: "⇒";
    }
}

/* #voice */
.voice-list {
    display: grid;
    row-gap: 1rem;
}

.voice-item {
    h4 {
        margin: 0;
    }

    .grid {
        margin-top: 16px;
        grid-template-columns: auto 40%;
        align-items: flex-start;
        gap: .5rem;
    }
}

.voice-title {
    margin: 0;
}

/* #setting */
#setting {
    .item-title {
        font-weight: bold;
    }

    .item-content {
        margin: 0;

        ul {
            list-style: initial;
            list-style-position: inside;
        }
    }
}

.setting-list {
    display: grid;
    gap: 1rem;
}

.setting-content {
    figure {
        width: 60%;
        margin-inline: auto;
    }
}

/* #service */
.service-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem 1rem;
}

.service-item {
    text-align: center;
    line-height: 1.3;

    figure {
        width: 62%;
        margin-inline: auto;
        margin-bottom: .25em;
    }
}

/* #possible */
.possible-item {
    display: grid;
    grid-template-columns: auto 40%;
    margin-bottom: 1.5rem;

    p {
        margin-bottom: 0;
    }
}

.possible-title {
    grid-column: 1/ -1;
}

.possible-image {
    background: #fff;
    padding: 4px;
}


/* #flow */
.flow-title {
    margin-block: 0 .5rem;
}

.flow-list {
    .item-list {
        margin-top: 0;
    }

    dt {
        float: left;
        clear: both;

        &::after {
            content: "：";
        }
    }

    dd {
        margin: 0;
        margin-bottom: .25em;
    }
}

.flow-item {
    position: relative;
    border: 2px solid var(--base-color);
    padding: .5rem 1rem;

    &:not(:last-child) {
        margin-bottom: 50px;

        &::after {
            position: absolute;
            display: block;
            content: "";
            width: 0;
            height: 0;
            top: 100%;
            right: 0;
            left: 0;
            margin-inline: auto;
            border: 50px solid transparent;
            border-top: 40px solid var(--base-color);
            border-bottom: none;
        }
    }
}

/* #price */
.price-list {
    display: grid;
    gap: 2rem;
}

.price-item {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto 1fr;
    gap: .5rem 1rem;
    margin-bottom: 1rem;
}

.price-title {
    margin: 0 0 .5em;
    grid-column: 1 / -1;
    text-align: center;
}

.price-content {
    grid-column: 1 / 2;
}

.price-outline {
    border: 2px solid var(--base-color);
    padding: .25em;
}

.price-type {
    display: grid;
    grid-template-columns: 1.5em auto;
    grid-column: 2/-1;
    border: 2px solid var(--base-color);
}

.price-type-eyecatch {
    display: grid;
    grid-template-columns: 2.25em auto 1fr;
    align-items: center;
    margin-bottom: 1em;
    gap: 4px;

    .basic-price {
        font-size: 1.2rem;
        font-weight: 900;

        small {
            font-size: .6em;
        }
    }
}

.price-type-content {
    font-size: .8rem;

    .box-text {
        width: 2em;
        line-height: 1.2;
    }

}

.price-type-list {
    display: grid;
    grid-template-columns: 32px auto;
    gap: .5em 0;

    .list-item {
        display: grid;
        grid-template-columns: subgrid;
        grid-column: 1 / -1;
        gap: 8px;
        align-items: center;
        font-size: 80%;
    }

    img {
        grid-column: 1/ 2;
    }

    .list-item-text {
        grid-column: 2 / -1;
    }

}


.price-samples {
    margin-block: 3rem;
}

.price-sample {
    display: grid;
    grid-template-columns: auto 1em auto 1em auto;
    grid-template-rows: auto 1fr;
    margin-bottom: 1em;

    .wrap {
        display: grid;
        grid-row: 1 / -1;
        grid-template-rows: subgrid;
    }
}

.price-head {
    grid-row: 1 /2;
    font-size: .85em;
}

.price-num {
    grid-row: 2 /-1;
    font-weight: 900;
    font-size: 1.5rem;
    padding-inline: 2px;
    text-align: center;

    span {
        letter-spacing: -1px;
    }

    small {
        font-weight: 700;
    }

}

.price-symbol {
    display: flex;
    align-items: center;
    grid-row: 2/-1;
    font-weight: 700;

    &:first-child {
        grid-column: 2 / 3;
    }

    &:last-child {
        grid-column: 4 / 5;

    }

}

.price-row {
    display: grid;
    grid-template-rows: auto auto;
}

.price-detail {
    margin: 0;

    dt {
        float: left;
        clear: both;

        &::after {
            content: "：";
        }
    }
}

.price-type {
    padding: 8px;
    align-items: center;

    h4 {
        margin-block: 0;
        letter-spacing: -1px;
    }
}

.price-type-title {
    font-size: .875rem;
}


.recommend-item {
    display: grid;
    grid-template-columns: 30% auto;
    align-items: center;
    gap: 4px;
    margin-bottom: 8px;

    img {
        grid-column: 1 / 2;
    }

    ul {
        grid-column: 1 / -1;
    }

    li {
        &::before {
            content: "〇";
        }
    }
}

/* #try */
.try-list {
    display: grid;
    grid-template-columns: repeat(4, auto);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.try-item {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: flex-end;

    div {
        text-align: center;
        font-size: .75rem;
        line-height: 1.2;
    }
}

/* #faq */
.faq-list {
    display: grid;
    gap: 1.2rem;
}

.ques {
    font-weight: 700;
    font-size: 1.2em;
    margin-bottom: .5em;
}

.ans {
    margin-left: 0;
    margin-bottom: 1rem;
}

/* #contact */
#contact {
    position: sticky;
    left: 0;
    right: 0;
    margin: auto;
    bottom: 0;
    padding: .5em;

    a {
        text-decoration: none;
        color: var(--base-color);
        font-size: 1.1em;
        font-weight: 900;
        display: block;
        padding: .5em 1rem;
        border-radius: 100px;
        background: #fff;
        box-shadow: 0 0 10px rgb(0 0 0/40%);
        width: 100%;
        text-align: center;
        border: 2px solid var(--base-color);
    }

    .wrap {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        justify-content: center;
        align-items: center;
        gap: 1rem;
    }
}

footer {
    a {
        color: #fff;
        text-decoration: none;
    }

    .row {
        display: grid;
        gap: 1.2rem;
    }

    h3 {
        margin-block: 0 .5em;
    }

    li {
        display: flex;
        align-items: center;
        margin-bottom: .5em;

        &::before {
            content: "";
            display: block;
            width: 0;
            height: 0;
            border-style: solid;
            border-color: transparent;
            border-block-width: 4px;
            border-inline-width: 8px;
            border-left-color: #fff;
        }

        a {
            font-size: .8em;

            line-height: 1;
        }
    }
}

.privacymark {
    text-align: center;
    max-width: 150px;
    margin-inline: auto;

    a {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    img {
        margin: 12.5%;
    }
}

.toTop {
    position: sticky;
    width: 64px;
    height: 64px;
    bottom: 18vmin;
    left: 80%;
    border-radius: 100px;
    border: 2px solid #fff;
    background: var(--base-color);
    color: #fff;
    font-weight: 900;
    font-size: .8rem;
    box-shadow: 0 0 8px rgb(0 0 0/30%);
}


@media (width > 1024px) {
    header {
        .container {
            display: flex;
        }
    }

    .section-title {
        font-size: 40px;
        align-items: center;

        &::before {
            width: 1em;
            height: 1em;
        }
    }

    .type-item {
        grid-template-columns: minmax(20%, 150px) 1fr;
        font-size: 1rem;

        span {
            text-align: left;
        }
    }

    .merit-title {
        font-size: 24px;
    }

    .voice-issue {
        font-size: 24px;
    }

    .setting-content {
        display: grid;
        grid-template-columns: 60% auto;
    }

    .price-sample {
        margin-inline: auto;
        max-width: 80%;
    }

    .price-head {
        font-size: 18px;
    }

    .price-num {
        font-size: 30px;
    }

    .price-list {
        margin-inline: auto;
        width: 80%;
        max-width: 960px;
    }

    .price-type-content {
        font-size: 1rem;

        .box-text {
            font-size: .9em;
        }
    }

    .price-type-list {
        .list-item {
            font-size: .9em;
        }
    }

    .price-type-eyecatch {
        .basic-price {
            font-size: 36px;
        }
    }

    .price-title {
        font-size: 28px;
    }

    .price-item {
        grid-template-columns: 60% auto;
    }

    .try-list {
        max-width: 960px;
        width: 80%;
        margin-inline: auto;
        gap: 40px;

        div {
            font-size: initial;
        }

        figure {
            width: 60%;
        }
    }

    footer {
        .row {
            display: flex;
        }
    }

    #contact {
        background: rgb(95, 168, 0);
        padding: 1.5em;

        .wrap {
            grid-template-columns: repeat(2, 25%);
        }
    }

.toTop {
    left: 93%;
    bottom: 120px;
}
}