@charset "utf-8";

/**********************
fv
***********************/
.fv {
    background: var(--color-main);
}

.fv-container {
    padding: 5%;
}

.fv-lead {
    position: relative;
    padding-block: 5px;
    color: var(--color-white);
    background: var(--color-base);
    border-radius: 50px;
    font-weight: var(--font-bold);
    text-align: center;
}

.fv-lead::after {
    content: "";
    position: absolute;
    top: 95%;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 20px 20px 0px 0px;
    border-color: var(--color-base) transparent transparent transparent;
}

.fv-text {
    font-weight: var(--font-bold);
}

.fv-head {
    margin-bottom: clamp(16px, 13vw, 75px);
    font-size: 4rem;
}

.fv-head .color-red {
    margin-right: 5px;
    font-size: 5rem;
}

.fv-head .price {
    display: inline-block;
    padding-right: 10px;
    font-size: 7rem;
    background: linear-gradient(transparent 67%, #fff 70%, #fff 78%, transparent 0%);
    letter-spacing: -0.05em;
}

.fv-form {
    position: relative;
    padding: 15px;
    background: var(--color-white);
    border: 3px solid var(--color-base);
    border-radius: var(--border-radius);
    font-weight: var(--font-bold);
}

.fv-form-title {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    padding: 10px 20px;
    text-align: center;
    color: var(--color-white);
    background: var(--color-green);
    border-radius: var(--border-radius);
    font-size: 1.8rem;
    font-weight: var(--font-bold);
}

.fv-form-icon {
    position: absolute;
    z-index: 1;
    top: -45px;
    right: -5px;
    width: 75px;
    animation: floatY 2s ease-in-out infinite;
}

@keyframes floatY {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

.fv-form label {
    display: block;
    margin-top: 12px;
}

.fv-form br {
    display: none;
}

.fv-form .yes-required {
    margin-right: 5px;
    padding: 2px 5px;
    background: var(--color-red);
    border-radius: 3px;
    color: var(--color-white);
    font-size: 1.25rem;
}

.fv-form input:not([type="submit"]) {
    width: 100%;
    margin-top: 12px;
    padding: 5px;
    background: #f6f6f6;
    border: 1px solid var(--color-base);
    border-radius: 5px;
}

.fv-form p:nth-of-type(5) {
    height: 65px;
    text-align: center;
}

.fv-form .btn-submit {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 360px;
    margin: 20px auto 0;
    padding: 15px 55px;
    background-color: var(--color-green);
    color: var(--color-white);
    border-bottom: 4px solid #b2dcca;
    border-radius: 999px;
    cursor: pointer;
    background-image: url("../images/fv-form-arrow.svg");
    background-repeat: no-repeat;
    background-position: right 24px center;
    background-size: 25px 25px;
    font-size: 1.8rem;
}

.fv-form small {
    display: block;
    margin-top: 5px;
    font-size: 1rem;
    text-align: center;
}

.fv-form small a {
    display: inline;
}

.fv-form small br {
    display: block;
}

.wpcf7 input,
.wpcf7 textarea,
.wpcf7 select {
    font-size: 1.6rem;
}

.wpcf7 input::placeholder,
.wpcf7 textarea::placeholder {
    color: #999;
    font-size: 1.6rem;
}

.wpcf7 input:not([type="submit"]):focus,
.wpcf7 textarea:focus,
.wpcf7 select:focus {
    outline: none;
    border: 1px solid var(--color-red);
    box-sizing: border-box;
}

/* 必須項目未入力 */
.wpcf7-not-valid-tip {
    display: inline-block;
    margin-top: 5px;
    padding: 0px 10px;
    color: var(--main-black);
    background: rgba(255, 0, 0, 0.5);
    border-radius: 5px;
    line-height: 28px;
    font-size: 12px;
    font-weight: 600;
}

.wpcf7-form input.wpcf7-not-valid,
.wpcf7-form textarea.wpcf7-not-valid {
    border: 1px solid var(--color-red);
}


/**********************
system
***********************/
.system {
    position: relative;
    padding-bottom: 0;
    font-weight: var(--font-bold);
    text-align: center;
}

.system h2 {
    padding-block: 20px 30px;
}

.system-bg {
    padding-top: 60px;
    background: url(../images/bg.png) no-repeat center / cover;
    mask-image: url(../images/triangle.png);
    mask-repeat: no-repeat;
    mask-position: bottom center;
    mask-size: cover;
    -webkit-mask-image: url(../images/triangle.png);
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: bottom center;
    -webkit-mask-size: cover;
}

.system-lead {
    position: relative;
    width: fit-content;
    margin: 0 auto;
    padding: 5px 20px;
    color: var(--color-white);
    background: var(--color-base);
    border-radius: 50px;
    text-align: center;
}

.system-lead::after {
    content: "";
    position: absolute;
    top: 99%;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px;
    border-color: var(--color-base) transparent transparent transparent;
}

.system-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-block: 30px;
}

.system-box {
    width: calc(100% /2 - 3%);
    padding-block: 20px;
    background: var(--color-white);
    border-radius: var(--border-radius);
    border: 2px solid var(--color-base);
}

.system-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    margin: 0px auto 24px;
    background: #e9f2fd;
    border-radius: 50%;
}

.system-icon img {
    width: 70%;
}

.system-neck,
.system-text {
    font-size: 1.75rem;
}

.system-neck {
    padding-block: 30px 0;
    line-height: 2;
}

.system-contents {
    position: relative;
    top: 45px;
    z-index: 1;
    width: fit-content;
    margin: 0 auto;
    background: url(../images/triangle.png) no-repeat center / contain;
    padding: 30px 40px 80px;
    font-weight: var(--font-bold);
}

.system-person img {
    width: 0;
}

.system-first {
    font-size: 1.8rem;
}

.system-second,
.system-contents .color-red {
    font-size: 2.5rem;
}

.system-second {
    margin-bottom: 10px;
}

.system-label {
    width: fit-content;
    margin: 0 auto 15px;
    padding: 5px 10px;
    color: var(--color-white);
    background: var(--color-base);
    border-radius: var(--border-radius);
    font-size: 2rem;
}

.system-text {
    position: relative;
    z-index: 1;
    width: fit-content;
    margin: -25px auto 0;
    padding: 10px 20px;
    background: var(--color-white);
    border-radius: var(--border-radius);
    border: 2px solid var(--color-base);
    line-height: 2;
}


/**********************
compare
***********************/
.compare-contents {
    margin-bottom: 30px;
}

.compare-box {
    position: relative;
    margin-block: 30px;
    padding: 20px;
    text-align: center;
    border: 2px solid var(--color-base);
    border-radius: var(--border-radius);
    font-weight: var(--font-bold);
}

.compare-box:last-child {
    margin-bottom: 0;
}

.compare-num {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    width: fit-content;
    padding: 5px 15px;
    background: var(--color-base);
    color: var(--color-white);
    border-radius: 30px;
    font-size: 1.25rem;
}

.compare-bg {
    padding-top: 10px;
    margin-block: 10px;
    background: #f4f4f9;
    border-radius: var(--border-radius);
}

.compare-bg img {
    width: 30%;
}

.compare-head {
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.compare-merit {
    margin-bottom: 10px;
    padding: 5px;
    background: var(--color-main);
    border-radius: var(--border-radius);
}

.compare-demerit {
    margin-bottom: 10px;
    padding: 5px;
    color: var(--color-white);
    background: var(--color-base);
    border-radius: var(--border-radius);
}

.compare-box ul {
    margin-bottom: 25px;
    text-align: left;
}

.compare-box ul li {
    position: relative;
    list-style-position: inside;
    padding: 10px;
    border-bottom: 1px solid var(--color-gray);
    padding-left: 2em;
}

.compare-meritList li::before,
.compare-demeritList li::before {
    content: "●";
    position: absolute;
    left: 0.5em;
    top: 1em;
    line-height: 1;
}

.compare-meritList li::before {
    color: var(--color-main);
}

.compare-demeritList li::before {
    color: #bfbfbf;
}


/**********************
feature
***********************/
.feature .color-red {
    font-weight: var(--font-bold);
}

.feature-container {
    position: relative;
    margin-bottom: 60px;
    padding: 40px 20px 20px;
    border: 2px solid var(--color-base);
    border-radius: var(--border-radius);
}

.feature-subtitle {
    margin-block: 20px;
    padding: 10px;
    background: var(--color-main);
    border-radius: 10px;
    text-align: center;
    font-weight: var(--font-bold);
    font-size: 1.8rem;
}

.feature-head {
    position: relative;
    margin-bottom: 20px;
    padding-block: 10px;
    font-weight: var(--font-bold);
    text-align: center;
    background: var(--color-main);
    border: 2px solid var(--color-base);
    border-radius: var(--border-radius);
}

.feature-num {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: fit-content;
    padding: 5px 15px;
    background: var(--color-base);
    color: var(--color-white);
    border-radius: 30px;
    font-size: 1.25rem;
}

.feature-title,
.feature-title .color-red {
    font-size: 2rem;
}

.feature-text {
    margin-bottom: 20px;
}

.feature-text span {
    font-size: 1.4rem;
}

.feature-image {
    background: #fffce5;
    border-radius: var(--border-radius);
    text-align: center;
}

.feature-image img {
    text-align: center;
    border-radius: 10px 10px 0 0;
}

.feature-image p {
    padding: 15px;
    text-align: left;
}

.first-contents .feature-image p {
    font-size: 1.4rem;
}

.feature-figure {
    align-self: center;
    background: #f2f2f7;
    border-radius: var(--border-radius);
    padding: 30px 20px;
    margin-block: 30px;
    text-align: center;
    font-weight: var(--font-bold);
}

.feature-ex {
    margin-bottom: 10px;
    font-size: 1.6rem;
}

.feature-figure dl {
    display: flex;
    flex-wrap: wrap;
    max-width: 280px;
    margin: 10px auto;
    padding: 10px;
    background: var(--color-white);
    border-radius: var(--border-radius);
    font-size: 1.25rem;
}

.feature-figure dt {
    width: 70%;
    padding-block: 3px;
    text-align: left;
    border-bottom: 1px solid #efefef;
}

.feature-figure dd {
    width: 30%;
    padding-block: 3px;
    text-align: right;
    border-bottom: 1px solid #efefef;
}

.feature-caption {
    font-size: 1.25rem;
}

.feature-strengths {
    text-align: center;
    font-weight: var(--font-bold);
}

.feature-strengths ul li {
    padding: 10px 10px 10px 15px;
    margin-bottom: 10px;
    border: 2px solid var(--color-base);
    border-radius: var(--border-radius);
}

.feature-strengths ul li span {
    position: relative;
}

.feature-strengths li span::before {
    content: "●";
    position: absolute;
    top: 50%;
    left: -20px;
    transform: translateY(-50%);
    color: var(--color-main);
}

.feature-strengths li::marker {
    color: var(--color-main);
}

.feature-arrow {
    width: 25%;
    margin-bottom: 10px;
}

.feature-strength {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.feature-strength img p {
    width: 50%;
    padding: 0;
    text-align: center;
}

.feature-strength p {
    width: 50%;
    text-align: center;
}

.feature-strength img {
    width: 50%;
    height: 120px;
    object-fit: cover;
    border-radius: 0 10px 10px 0;
}

.feature-figureInner {
    max-width: 280px;
    margin: 0 auto;
}

.feature-costCut {
    font-size: 1.8rem;
    letter-spacing: -0.01em;
}

.feature-cost {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-block: 15px;
}

.feature-cost p:not(:nth-last-of-type(2)) {
    background: var(--color-main);
    border-radius: var(--border-radius);
    padding: 5px 20px;
}

.feature-cost p:first-of-type {
    padding-inline: 30px;
}

.feature-icon {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    margin-block: 15px;
}

.feature-iconBg {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90px;
    height: 90px;
    background: var(--color-white);
    border-radius: 50%;
}

.feature-iconBg img {
    width: 70%;
}

.feature-iconName {
    font-size: 1.25rem;
}

.feature-return {
    position: relative;
    background: var(--color-main);
    border-radius: var(--border-radius);
    padding: 5px 10px;
}

.feature-return::before {
    content: "";
    position: absolute;
    left: 50%;
    top: -14px;
    transform: translateX(-50%);
    top: -10px;
    transform: translateX(-50%);
    border-width: 0 12px 14px 12px;
    border-style: solid;
    border-color: transparent transparent var(--color-main) transparent;
}

.feature-arrow2 {
    width: 15%;
}

.second-contents .feature-image p {
    flex-basis: 50%;
    text-align: center;
}

.third-contents-a .feature-desc p,
.third-contents-a .feature-desc span {
    font-weight: var(--font-bold);
    text-align: center;
}

.third-contents-a .feature-image {
    padding-block: 15px;
}

.third-contents-a .feature-image div {
    width: 80%;
    margin: 0 auto;
    margin-bottom: 15px;
}

.third-contents-a .feature-image div p {
    background: var(--color-white);
    border: 2px solid var(--color-base);
    border-radius: var(--border-radius);
    padding: 5px;
}

.third-contents-a .feature-image div p span {
    position: relative;
}

.third-contents-a .feature-image div p span::before {
    content: "";
    position: absolute;
    left: -35px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
}

.third-contents-a .feature-image div p:first-of-type span::before {
    background: url(../images/feature07.svg) no-repeat center / contain;
}

.third-contents-a .feature-image div p:last-of-type span::before {
    background: url(../images/feature08.svg) no-repeat center / contain;
}

.third-contents-a .feature-image p {
    font-weight: var(--font-bold);
    text-align: center;
    padding: 0;
}

.feature-plusMark {
    font-weight: var(--font-bold);
    font-size: 3rem;
}

.third-contents-a .feature-figure {
    display: flex;
    align-items: center;
}

.third-contents-a .feature-figure img:first-of-type {
    width: 50%;
}

.third-contents-a .feature-figure img:last-of-type {
    width: 55%;
    margin-left: -15px;
}


/**********************
plan
***********************/
.plan-lead {
    text-align: center;
}

.plan-contents {
    margin-block: 30px;
}

.plan-head {
    position: relative;
    padding-block: 5px;
    border: 2px solid var(--color-base);
    border-radius: var(--border-radius);
    text-align: center;
    font-weight: var(--font-bold);
    font-size: 2rem;
    background: #fff;
}

.plan-icon {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 3%;
    z-index: 2;
    width: 45px;
    height: 45px;
}

.plan-icon::after {
    content: "";
    position: absolute;
    left: 23px;
    bottom: -5px;
    width: 5px;
    height: 8px;
    background: #fff;
}

.c-gray .plan-icon {
    background: url(../images/plan_icon01.png) no-repeat center / contain;
}

.c-yellow .plan-icon {
    background: url(../images/plan_icon02.png) no-repeat center / contain;
}

.plan-contents .c-gray {
    background: var(--color-gray);
}

.plan-contents .c-yellow {
    background: var(--color-main);
}

.plan-price {
    margin-block: 20px;
    text-align: center;
    font-size: 2.4rem;
    font-weight: var(--font-bold);
}

.plan-num {
    font-size: 1.8rem;
}

.plan-num span {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1;
}

.plan-add {
    font-size: 1.25rem;
    font-weight: 400;
}

.plan-image {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.plan-mark {
    width: 40%;
    object-fit: contain;
}

.plan-product {
    width: 25%;
    object-fit: contain;
    margin-bottom: -50px;
}

.plan-desc .c-gray,
.plan-desc .c-yellow,
.flow .c-gray,
.flow .c-yellow {
    padding: 5px 10px;
    border-top: 2px solid var(--color-base);
    border-bottom: 2px solid var(--color-base);
    font-weight: var(--font-bold);
    font-size: 1.6rem;
}

.plan-desc ul {
    margin-block: 15px 30px;
}

.plan-desc ul li {
    position: relative;
    padding-left: 1em;
    line-height: 2;
}

.plan-desc ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.45em;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid var(--color-base);
}

.desc-gray ul li::before {
    background: var(--color-gray);
}

.desc-yellow ul li::before {
    background: var(--color-main);
}

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

.flow-contents {
    margin-block: 40px;
}

.flow-box {
    position: relative;
    display: flex;
    align-items: center;
    padding-inline: 10px;
    margin-bottom: 30px;
    border: 2px solid var(--color-base);
    border-radius: var(--border-radius);
}

.flow-num {
    padding-inline: 3%;
    font-weight: var(--font-bold);
    font-size: 2.25rem;
}

.flow-menu {
    padding-left: 10px;
    border-left: 1px solid var(--color-base);
}

.flow-box:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -24px;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 12px solid var(--color-base);
}


/**********************
reason
***********************/
.works-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 1px;
    margin-bottom: 60px;
}

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

.works-image {
    overflow: hidden;
}

.works-box img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: 0.3s;
}

.works-image:hover img {
    transform: scale(1.08);
}

.works-box .title {
    padding-inline: 15px;
    margin-block: 15px 0;
    font-weight: var(--font-bold);
    font-size: 1.4rem;
}

.works-box .name {
    font-size: 1.2rem;
}

.tag-box {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 5px 10px;
    max-width: 220px;
    margin: 15px auto 0;
    padding-inline: 3%;
}

.tag-box .tag {
    padding: 3px 5px;
    border: 1px solid var(--color-base);
    border-radius: 50px;
    font-weight: var(--font-bold);
    font-size: 0.95rem;
}

.reason .btn-more {
    position: static;
    transform: translateX(0);
    margin: 0 auto;
    padding: 15px 60px;
}


@media (min-width:480px) {

    .feature-text span {
        font-size: 1.8rem;
    }

    .system-person {
        position: absolute;
        right: -60px;
        bottom: -45px;
        width: 30%;
        height: 100%;
        object-fit: cover;
    }
}

@media (min-width:750px) {
    .fv-container {
        display: flex;
        justify-content: space-between;
    }

    .fv-lead .sp {
        display: block;
    }

    .fv-form {
        width: 45%;
    }

    h2 {
        font-size: 3.5rem;
    }

    .system-desc {
        font-size: 2rem;
    }

    .system-neck,
    .system-text {
        padding-bottom: 30px;
        font-size: 2.4rem;
    }

    .system-contents {
        top: 15px;
    }

    .system-first {
        font-size: 3rem;
    }

    .system-second,
    .system-contents .color-red {
        font-size: 4.5rem;
    }

    .system-label {
        font-size: 3.5rem;
    }

    .system-lead {
        font-size: 2.275rem;
    }

    .system-box {
        padding-block: 30px;
    }

    .system-icon {
        width: 140px;
        height: 140px;
    }

    .system-person {
        right: -80px;
    }

    .system-person img {
        width: 100%;
    }

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

    .compare-box .num {
        font-size: 1.75rem;
    }

    .compare-box .head {
        font-size: 3rem;
    }

    .feature-container {
        padding: 40px 80px 20px;
    }

    .first-contentsa .feature-image {
        display: flex;
    }

    .first-contentsb .subtitle-black {
        margin-block: 0 20px;
    }

    .first-contentsa .feature-image img {
        width: 25%;
        object-fit: cover;
        border-radius: 10px 0 0 10px;
    }

    .feature-head {
        display: flex;
        align-items: center;
        gap: 20px;
        padding-block: 0;
    }

    .feature-num {
        position: static;
        transform: unset;
        width: fit-content;
        padding: 12px 20px;
        background: var(--color-base);
        color: var(--color-white);
        border-radius: 5px 0 0 5px;
        font-size: 1.6rem;
    }

    .feature-num .color-yelllow {
        font-size: 2rem;
    }

    .feature-title,
    .feature-title .color-red {
        font-size: 2.5rem;
    }

    .plan-icon {
        width: 55px;
        height: 55px;
    }

    .plan-icon::after {
        left: 27px;
        width: 7px;
    }

    .plan-price {
        display: flex;
        align-items: center;
        gap: 20px;
    }

    .plan-num {
        font-size: 3rem;
        letter-spacing: 0.1em;
    }

    .plan-head {
        padding-block: 10px;
        font-size: 2.8rem;
    }

    .plan-desc p {
        font-size: 2rem;
    }

    .plan-priceText {
        flex-shrink: 0;
    }

    .plan-image {
        justify-content: flex-start;
        gap: 35%;
    }

    .plan-mark {
        width: 30%;
    }

    .flow-box .pc {
        display: none;
    }

    .works-box .title {
        font-size: 2rem;
    }

    .works-box .name {
    font-size: 1.6rem;
}

    .tag-box {
        max-width: 250px;
        gap: 10px;
        padding-inline: 0;
    }

    .tag-box .tag {
        font-size: 1.4rem;
    }
}

@media (min-width:1024px) {
    .fv-container {
        display: flex;
        justify-content: center;
        padding: 5% 3%;
    }

    .fv-lead {
        width: 70%;
        font-size: 2rem;
    }

    .fv-head .color-red {
        font-size: 6.5rem;
    }

    .fv-head .price {
        font-size: 9.75rem;
    }

    .fv-head {
        font-size: 5.2rem;
        margin-bottom: 0;
    }

    .fv-contents {
        width: 65%;
    }

    .fv-form {
        width: 350px;
        padding: 2%;
        text-align: left;
    }

    .fv-form label {
        margin-top: 15px;
        text-align: left;
    }

    .custom-shape {
        opacity: 1;
        bottom: 5vw;
    }

    .plan-desc .c-gray, .plan-desc .c-yellow, .flow .c-gray, .flow .c-yellow {
        padding: 10px 10px 10px 30px;
        font-size: 2.4rem;
    }

    .plan-num span {
        font-size: 7.5rem;
    }

    .plan-product {
        margin-bottom: -90px;
    }
}


@media (min-width:1200px) {
    .fv-flex {
        display: flex;
    }

    .fv-lead .sp {
        display: none;
    }

    .fv-image {
        width: 320px;
        margin-top: 30px;
    }

    .system-box {
        width: calc(100% / 4 - 3%);
    }

    .compare-contents {
        display: flex;
        gap: 20px;
        margin-top: 60px;
    }

    .compare-box {
        width: calc(100% /3);
        margin-block: 0;
    }

    .compare-meritList {
        height: 120px;
    }

    .feature-container {
        padding: 35px;
    }

    .feature-flex {
        display: flex;
        gap: 30px;
        margin-bottom: 20px;
    }

    .feature-contents .feature-text {
        flex-basis: 65%;
        margin-bottom: 0;
        font-size: 1.8rem;
        line-height: 2;
    }

    .feature-figure dl {
        width: 90%;
        margin: 0 auto 10px;
    }

    .first-contents .feature-image p {
        font-size: 1.6rem;
    }

    .first-contents .feature-image,
    .second-contents .feature-image {
        display: flex;
    }

    .first-contents .feature-image img {
        width: 25%;
        object-fit: cover;
        border-radius: 10px 0 0 10px;
    }

    .feature-contents .feature-figure {
        flex-basis: 35%;
        margin-block: 0;
    }

    .feature-iconBg {
        width: 110px;
        height: 110px;
    }

    .feature-strengths {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .feature-strengths ul {
        width: 30%;
        text-align: left;
    }

    .feature-strengths ul li {
        padding: 10px 10px 10px 35px;
    }

    .feature-strengths ul li:last-of-type {
        margin-bottom: 0;
    }

    .feature-arrow {
        width: 80px;
        height: 80px;
        transform: rotate(-90deg);
    }

    .feature-strength {
        flex-basis: 50%;
    }

    .second-contentsa .feature-image p {
        flex-basis: 50%;
        text-align: center;
    }

    .feature-cost {
        margin-block: 20px;
    }

    .feature-costCut {
        font-size: 2rem;
        letter-spacing: -0.05em;
    }

    .feature-icon {
        margin-block: 25px;
    }

    .third-contents-a .feature-figure {
        flex-direction: column;
        margin-bottom: 40px;
    }

    .third-contents-a .feature-image div {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 15px;
    }

    .third-contents-a .feature-image div p {
        width: 80%;
        padding: 5px 30px 5px 50px;
    }

    .third-contents-a .feature-figure img:first-of-type {
        width: 77%;
        margin-left: -60px;
    }

    .third-contents-a .feature-figure img:last-of-type {
        width: 75%;
        margin-left: 70px;
        margin-top: -60px;
    }

    .third-contents-a .feature-image div p span::before {
        left: -30px;
    }

    .works-container {
        grid-template-columns: repeat(3, 1fr);
    }

    .plan-contents ul {
        display: flex;
        flex-wrap: wrap;
        line-height: 2;
        font-size: 1.8rem;
    }

    .plan-desc ul li {
        width: calc(100% / 2);
    }

    .plan-desc ul li::before {
        width: 15px;
        height: 15px;
    }

    .flow-contents {
        display: flex;
        justify-content: space-between;
    }

    .flow-box {
        width: 100px;
        padding: 20px 10px;
        writing-mode: vertical-rl;
    }

    .flow-num {
        margin-right: 0;
        margin-bottom: 20px;
        border-right: none;
        border-bottom: 1px solid var(--color-base);
        writing-mode: lr;
        font-size: 2.5rem;
    }

    .flow-menu {
        padding-left: 0;
        border-left: none;
    }

    .flow-box span {
        writing-mode: lr;
    }

    .flow-box:not(:last-child)::after {
        right: -45px;
        top: 50%;
        transform: translateY(-50%) rotate(-90deg);
        border-left: 20px solid transparent;
        border-right: 20px solid transparent;
        border-top: 20px solid var(--color-base);
    }

    .flow-box .pc {
        display: block;
    }

    footer a,
    .footer-contents,
    .copyright {
        text-align: left;
    }
}

@media (min-width:1280px) {
    .fv-container {
        max-width: 1270px;
        margin: 0 auto;
    }
}