@charset "utf-8";

.p-fv .inner {
    padding-bottom: 160px;
}

.has-bg {
    position: relative;
}

.has-bg .p-navi {
    max-width: 1171px;
    width: 90%;
    margin: 0 auto;
    position: absolute;
    left: 0;
    right: 0;
    top: -80px;
    background: #fff;
    box-shadow: 0px 3px 6px rgba(139, 137, 137, 0.16);
    padding: 36px 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
}

.has-bg .p-navi .navi {
    font-family: var(--font-main);
    font-weight: 500;
    font-size: clamp(0.75rem, 0.568rem + 0.78vw, 1.5rem);
    color: #000;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    overflow: hidden;
    border-right: 0.8px solid #b2b2b2;
}

.has-bg .p-navi .navi:last-child {
    border-right: none;
}

.has-bg .p-navi .navi .arrow {
    position: relative;
    width: 12px;
    height: 12px;
    overflow: hidden;
}

/* 三角矢印を2つ用意 */
.has-bg .p-navi .navi .arrow::before,
.has-bg .p-navi .navi .arrow::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-right: 6px solid transparent;
    border-left: 6px solid transparent;
    border-top: 10px solid #05a6bc;
}

/* 表示中の矢印 */
.has-bg .p-navi .navi .arrow::before {
    top: 0;
}

/* 上に待機してる矢印 */
.has-bg .p-navi .navi .arrow::after {
    top: -100%;
}

/* ホバー：下に消える */
.has-bg .p-navi .navi:hover .arrow::before {
    animation: arrowDown 0.4s ease forwards;
}

/* ホバー：上から出る */
.has-bg .p-navi .navi:hover .arrow::after {
    animation: arrowFromTop 0.4s ease forwards;
}

/* 下に抜ける */
@keyframes arrowDown {
    0% {
        top: 0;
        opacity: 1;
    }

    100% {
        top: 100%;
        opacity: 0;
    }
}

/* 上から入る */
@keyframes arrowFromTop {
    0% {
        top: -100%;
        opacity: 0;
    }

    100% {
        top: 0;
        opacity: 1;
    }
}

.navi01>.inner {
    padding: 262px 0 100px;
}

.navi01 .sec-title {
    margin-left: 0;
}

.navi01 .sec-img {
    margin-bottom: 75px;
}

.b-title {
    position: relative;
    width: fit-content;
    margin: 0 auto;
    font-family: var(--font-main);
    font-weight: 600;
    font-size: clamp(1rem, 0.757rem + 1.04vw, 2rem);
    text-align: center;
    color: #000;
    padding: 0 92px;
}

.b-title::before,
.b-title::after {
    content: "";
    width: 82px;
    height: 1px;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    background-color: #000000;
}

.b-title::after {
    left: auto;
    right: 0;
}

.sec01 {
    margin-bottom: 80px;
}

.sec01 .b-title {
    margin-bottom: 70px;
}

.sec01 .list {
    border-radius: 5px;
    background: #eaf1f2;
    max-width: 1073px;
    width: 90%;
    margin: 0 auto;
    padding: 80px 0;
    display: grid;
    grid-template-columns: repeat(2, 40%);
    justify-content: center;
    gap: 30px 0;
}

.sec01 .list .item {

    position: relative;
    padding-left: 13px;
}

.sec01 .list .item p {
    font-family: var(--font-main);
    font-weight: 500;
    font-size: clamp(0.875rem, 0.814rem + 0.26vw, 1.125rem);
    color: #000000;
}

.sec01 .list .item::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50px;
    background-color: #05A6BC;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
}

.sec02 {
    margin-bottom: 120px;
}

.sec02 .b-title {
    margin-bottom: 80px;
}

.sec02 .list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5%;
    width: 91%;
    margin: 0 auto;
}

.sec02 .list .item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sec02 .list .item .item-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.sec02 .list .item .item-tit {
    font-family: var(--font-main);
    font-weight: 500;
    font-size: clamp(1.25rem, 1.129rem + 0.52vw, 1.75rem);
    text-align: center;
    color: #05a6bc;
    margin-bottom: 14px;
}

.sec02 .list .item .desc p {
    line-height: calc(27/16);
    font-weight: 400;
    text-align: center;
}

.sec03 .b-title {
    margin-bottom: 35px;
}

.development {
    margin-bottom: 92px;
}

.development .box,
.application .box {
    background: #fff;
    border-radius: 5px;
    padding: 54px 10% 90px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: flex-start;
    margin-bottom: 40px;
}

.development .box .label,
.application .box .label {
    font-family: var(--font-main);
    font-weight: 500;
    font-size: clamp(1.25rem, 1.129rem + 0.52vw, 1.75rem);
    text-align: center;
    color: #05a6bc;
    padding: 13px 17px;
    border-radius: 3px;
    background: #fff;
    border: 1px solid #05a6bc;
    display: inline-block;
}

.development .box .list,
.application .box .list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px 0;
    width: 100%;
    justify-content: space-between;
}

.development .box .item,
.application .box .item {
    padding-left: 16px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.development .box .item::before,
.application .box .item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 13px;
    width: 9px;
    height: 9px;
    border-radius: 50px;
    background-color: #05A6BC;
}

.development .box .item .item-tit,
.application .box .item .item-tit {
    font-family: var(--font-main);
    font-weight: 500;
    font-size: clamp(1rem, 0.879rem + 0.52vw, 1.5rem);
    color: #000;
}

.development .box .item .desc p,
.application .box .item .desc p {
    color: #5c5c5c;
    font-weight: 400;
    line-height: calc(27/16);
    font-size: clamp(0.75rem, 0.689rem + 0.26vw, 1rem);
}

.development .flow .main,
.application .flow .main {
    font-family: var(--font-main);
    font-weight: 500;
    font-size: clamp(1.125rem, 1.034rem + 0.39vw, 1.5rem);
    color: #05a6bc;
}

.development .flow,
.application .flow {
    display: flex;
    flex-direction: column;
    gap: 25px;
    width: 90%;
    margin: 0 auto;
}

.development .flow .list,
.application .flow .list {
    display: flex;
    flex-wrap: wrap;
    gap: 66px 5%;
}

.development .flow .list .item,
.application .flow .list .item {
    max-width: 285px;
    width: 100%;
    border-radius: 3px;
    background: transparent;
    border: 1px solid #05a6bc;
    position: relative;
    padding: 44px 14px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.development .flow .list .item:nth-child(n+2)::before,
.application .flow .list .item:nth-child(n+2)::before {
    content: "";
    position: absolute;
    right: calc(100% + 20px);
    top: 0;
    bottom: 0;
    margin: auto;

    width: 26px;
    height: 42px;

    background: url('data:image/svg+xml;utf8,\<svg viewBox="0 0 26 42" xmlns="http://www.w3.org/2000/svg">\<path d="M2,2 Q2,0 4,0 L22,18 Q26,21 22,24 L4,42 Q2,42 2,40 Z" fill="%2305a6bc"/>\</svg>') no-repeat center / contain;
}

.development .flow .list .item .label,
.application .flow .list .item .label {
    position: absolute;
    top: 0;
    left: 0;
    font-family: var(--font-main);
    font-weight: 500;
    font-size: clamp(0.563rem, 0.517rem + 0.19vw, 0.75rem);
    text-align: center;
    color: #fff;
    border-radius: 2px;
    background: #05a6bc;
    padding: 2px 10px;
}

.development .flow .list .item .item-tit,
.application .flow .list .item .item-tit {
    font-family: var(--font-main);
    font-weight: 500;
    font-size: 18px;
    color: #000;
}

.development .flow .list .item .desc p,
.application .flow .list .item .desc p {
    line-height: calc(27/16);
    color: #5c5c5c;
    font-weight: 400;
    font-size: clamp(0.75rem, 0.689rem + 0.26vw, 1rem);
}

.development .flow .list .item:nth-child(4),
.application .flow .list .item:nth-child(4) {
    margin-left: 55px;
}

.application .box .label {
    color: #E2A450;
    border: 1px solid #E2A450;
}

.application .box .item::before {
    background-color: #E2A450;
}

.application .flow .main {
    color: #E2A450;
}

.application .flow .list .item {
    border: 1px solid #E2A450;
}

.application .flow .list .item:nth-child(n+2)::before {
    background: url('data:image/svg+xml;utf8,\    <svg viewBox="0 0 26 42" xmlns="http://www.w3.org/2000/svg">\    <path d="M2,2 Q2,0 4,0 L22,18 Q26,21 22,24 L4,42 Q2,42 2,40 Z" fill="%23E2A450"/>\    </svg>') no-repeat center / contain;
}

.application .flow .list .item .label {
    background: #E2A450;
}

.navi01 .wide .b-title {
    margin-bottom: 80px;
}

.navi01 .wide .wrapper {
    background: #e4f4f5;
}

.navi01 .wide .wrapper .inner {
    padding: 60px 0;
    width: min(75%, 1344px);
}

.navi01 .wide .wrapper .inner {
    display: grid;
    grid-template-columns: 40% 1fr;
    gap: 5%;
    align-items: center;
}

.navi01 .wide .wrapper .inner .item-tit {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 28px;
}

.navi01 .wide .wrapper .inner .item-tit .main {
    font-family: var(--font-main);
    font-weight: 500;
    font-size: clamp(1.25rem, 1.068rem + 0.78vw, 2rem);
    color: #000;
}

.navi01 .wide .wrapper .inner .item-tit .label {
    font-family: var(--font-main);
    font-weight: 400;
    font-size: clamp(0.75rem, 0.689rem + 0.26vw, 1rem);
    text-align: center;
    color: #05a6bc;
    padding: 4px 17px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid #05a6bc;
}

.navi01 .wide .wrapper .inner .desc {
    margin-bottom: 20px;
}

.navi01 .wide .wrapper .inner .desc p {
    font-size: clamp(0.875rem, 0.845rem + 0.13vw, 1rem);
    line-height: 2;
    font-weight: 400;
    color: #5c5c5c;
}

.navi01 .wide .wrapper .inner .list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.navi01 .wide .wrapper .inner .list .item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.navi01 .wide .wrapper .inner .list .item .label {
    font-family: var(--font-main);
    font-weight: 400;
    font-size: 16px;
    text-align: center;
    color: #fff;
    padding: 2px 12px;
    background: #5c5c5c;
    border: 0.8px solid #5c5c5c;
}

.navi01 .wide .wrapper .inner .list .item .detail {
    font-family: var(--font-main);
    font-weight: 400;
    font-size: 16px;
    color: #5c5c5c;
}

.navi01 .wide .wrapper .inner .morebtn {
    grid-column: 1/3;
    margin-right: 0;
    max-width: 290px;
}

.navi02 {
    overflow: hidden;
}

.navi02 .inner {
    padding: 160px 0;
}

.navi02 .sec-head,
.navi03 .sec-head {
    display: flex;
    align-items: center;
    gap: 4%;
    margin-bottom: 100px;
}

.navi03 .sec-head {
    flex-direction: row-reverse;
}

.navi02 .sec-head .sec-img,
.navi03 .sec-head .sec-img {
    max-width: 60.313vw;
    width: 100%;
}

.navi02 .sec-body,
.navi03 .sec-body {
    display: flex;
    gap: 4%;
}

.navi02 .sec-body>.item,
.navi03 .sec-body>.item {
    max-width: 636px;
    width: 100%;
    border-radius: 5px;
    padding: 37px 50px;
}

.navi02 .sec-body .gray,
.navi03 .sec-body .gray {
    background: #eaf1f2;
}

.navi02 .sec-body .white,
.navi03 .sec-body .white {
    background: #fff;
}

.navi02 .sec-body .item .item-tit,
.navi03 .sec-body .item .item-tit {
    font-family: var(--font-main);
    font-weight: 600;
    font-size: clamp(1rem, 0.818rem + 0.78vw, 1.75rem);
    color: #000;
    margin-bottom: 42px;
}

.navi02 .sec-body .gray .list,
.navi03 .sec-body .gray .list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.navi02 .sec-body .list .item .main,
.navi03 .sec-body .list .item .main {
    font-family: var(--font-main);
    font-weight: 500;
    font-size: clamp(0.875rem, 0.814rem + 0.26vw, 1.125rem);
    color: #000;

}

.navi02 .sec-body .list .main,
.navi03 .sec-body .list .main {
    position: relative;
    padding-left: 13px;
}

.navi02 .sec-body .list .main::before,
.navi03 .sec-body .list .main::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50px;
    background-color: #05A6BC;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
}

.navi02 .sec-body .list .desc,
.navi03 .sec-body .list .desc {
    padding-left: 13px;
}

.navi02 .sec-body .list .desc p,
.navi03 .sec-body .list .desc p {
    line-height: calc(27/16);
    color: #5c5c5c;
    font-weight: 400;
    font-size: clamp(0.875rem, 0.845rem + 0.13vw, 1rem);
}

.navi02 .sec-body .list,
.navi03 .sec-body .list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.navi02 .sec-body .gray,
.navi03 .sec-body .gray {
    position: relative;
}

.navi02 .sec-body .gray::after,
.navi03 .sec-body .gray::after {
    content: "";
    position: absolute;
    left: calc(100% + 10px);
    top: 0;
    bottom: 0;
    margin: auto;
    width: 26px;
    height: 42px;
    background: url('data:image/svg+xml;utf8,\<svg viewBox="0 0 26 42" xmlns="http://www.w3.org/2000/svg">\<path d="M2,2 Q2,0 4,0 L22,18 Q26,21 22,24 L4,42 Q2,42 2,40 Z" fill="%2305a6bc"/>\</svg>') no-repeat center / contain;

}

.navi03 .inner {
    padding-bottom: 140px;
}

.footer::after {
    content: none;
}

@media (max-width: 1366px) {

    .development .box,
    .application .box {
        padding: 54px 5% 90px;
    }

    .development .box .list,
    .application .box .list {
        gap: 35px 5%;
        width: 100%;
    }

    .development .flow,
    .application .flow {
        width: 95%;
    }
}

@media (max-width: 1200px) {
    .sec02 .list {
        width: 100%;
    }

    .development .box,
    .application .box {
        padding: 54px 3% 90px;
    }

    .development .flow .list .item:nth-child(4),
    .application .flow .list .item:nth-child(4) {
        margin-left: 0;
    }

    .development .flow .list,
    .application .flow .list {
        gap: 66px 6%;
    }

    .development .flow .list .item,
    .application .flow .list .item {
        width: 29%;
    }

    .navi01 .wide .wrapper .inner {
        width: 90%;
    }

    .navi02 .sec-head .sec-img,
    .navi03 .sec-head .sec-img {
        width: 55%;
    }

    .navi02 .sec-body>.item, .navi03 .sec-body>.item {
            padding: 37px 30px;
    }
}


@media (max-width: 1023px) {
    .has-bg .p-navi {
        grid-template-columns: repeat(3, max-content);
        justify-content: center;
        gap: 30px;
    }

    .has-bg .p-navi .navi {
        padding-right: 20px;
    }

    .navi01>.inner {
        padding: 120px 0 100px;
    }

    .sec01 .list {
        width: 100%;
        grid-template-columns: repeat(2, 45%);
    }

    .development .flow,
    .application .flow {
        width: 100%;
    }

    .development .flow .list .item,
    .application .flow .list .item {
        width: 50%;
    }

    .development .flow .list .item:nth-child(n+2)::before,
    .application .flow .list .item:nth-child(n+2)::before {
        right: calc(100% + 10px);
    }

    .development .flow .list,
    .application .flow .list {
        justify-content: center;
    }

    .navi01 .wide .wrapper .inner {
        width: 80%;
        display: flex;
        flex-direction: column;
    }

    .navi01 .wide .wrapper .inner .col-img {
        margin-bottom: 17px;
    }

    .navi01 .wide .wrapper .inner .col-text {
        margin-bottom: 64px;
    }

    .navi01 .wide .wrapper .inner .morebtn {
        max-width: 320px;
        margin: 0 auto;
    }

    .navi02 .sec-body,
    .navi03 .sec-body {
        flex-direction: column;
        gap: 76px;
    }

    .navi02 .sec-body .gray::after,
    .navi03 .sec-body .gray::after {
        left: 0;
        right: 0;
        top: calc(100% + 10px);
        bottom: auto;
        background: url('data:image/svg+xml;utf8,\    <svg viewBox="0 0 26 42" xmlns="http://www.w3.org/2000/svg">\    <path d="M2,2 Q2,0 4,0 L22,18 Q26,21 22,24 L4,42 Q2,42 2,40 Z" fill="%2305a6bc"/>\    </svg>') no-repeat center / contain;

        transform: rotate(90deg);
    }

    .navi02 .sec-body>.item,
    .navi03 .sec-body>.item {
        max-width: none;
    }

    .navi02 .sec-head .sec-img,
    .navi03 .sec-head .sec-img {
        width: 52%;
    }


}

@media (max-width: 767px) {
    .p-fv .inner {
        padding-bottom: 80px;
    }

    .sec02 .list {
        display: flex;
        flex-direction: column;
        gap: 55px;
    }

    .has-bg .p-navi {
        width: 100%;
        max-width: 98%;
        gap: 5px;
        padding: 15px 0;
        top: -35px;
    }

    .has-bg .p-navi .navi {
        gap: 5px;
        padding-right: 5px;

    }

    .has-bg .p-navi .navi .arrow {
        width: 7px;
        height: 7px;
    }

    .has-bg .p-navi .navi .arrow::before,
    .has-bg .p-navi .navi .arrow::after {
        border-right: 3px solid transparent;
        border-left: 3px solid transparent;
        border-top: 5px solid #05A6BC;
    }

    .navi01>.inner {
        padding: 60px 0 80px;
    }

    .navi01 .sec-img {
        height: 200px;
        margin-bottom: 35px;
    }

    .navi01 .sec-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .b-title {
        padding: 0 23px;
    }

    .b-title::before,
    .b-title::after {
        width: 15px
    }

    .navi01 .wide .b-title {
        margin-bottom: 40px;
    }

    .sec01 .b-title {
        margin-bottom: 37px;
    }

    .sec01 .list {
        display: flex;
        flex-direction: column;
        padding: 20px 18px;
        gap: 20px;
        width: 90%;
    }

    .sec01 {
        margin-bottom: 35px;
    }

    .sec02 .b-title {
        margin-bottom: 37px;
    }

    .sec02 .list .item .item-img {
        width: 136px;
        height: 136px;
    }

    .sec02 .list .item .item-img img {
        width: 50%;
    }

    .sec02 {
        margin-bottom: 53px;
    }

    .development .box .list,
    .application .box .list {
        display: flex;
        flex-direction: column;
        gap: 17px;
    }

    .development .box .item,
    .application .box .item {
        width: 80%;
        margin: 0 auto;
    }

    .development .box .item::before,
    .application .box .item::before {
        top: 9px;
    }

    .development .box,
    .application .box {
        padding: 30px 20px;
    }

    .development .flow,
    .application .flow {
        width: 90%;
    }

    .development .flow .list .item,
    .application .flow .list .item {
        width: 100%;
    }

    .development .flow .list .item:nth-child(n+2)::before,
    .application .flow .list .item:nth-child(n+2)::before {

        left: 0;
        right: 0;
        top: auto;
        bottom: calc(100% + 10px);
        margin: auto;
        background: url('data:image/svg+xml;utf8,\                <svg viewBox="0 0 26 42" xmlns="http://www.w3.org/2000/svg">\                <path d="M2,2 Q2,0 4,0 L22,18 Q26,21 22,24 L4,42 Q2,42 2,40 Z" fill="%2305a6bc"/>\                </svg>') no-repeat center / contain;
        transform: rotate(90deg);
    }

    .application .flow .list .item:nth-child(n+2)::before {
        background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 26 42" xmlns="http://www.w3.org/2000/svg"><path d="M2,2 Q2,0 4,0 L22,18 Q26,21 22,24 L4,42 Q2,42 2,40 Z" fill="%23E2A450"/></svg>') no-repeat center / contain;
    }

    .navi01 .wide .wrapper .inner .item-tit {
        flex-direction: column-reverse;
        gap: 4px;
        align-items: flex-start;
        padding-bottom: 10px;
        border-bottom: 1px solid #707070;
        margin-bottom: 14px;
    }

    .navi01 .wide .wrapper .inner {
        padding: 24px 0 35px;
    }

    .navi02 .sec-head,
    .navi03 .sec-head {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 59px;
    }

    .navi02 .inner {
        padding: 80px 0;
    }

    .navi02 .sec-head .sec-img,
    .navi03 .sec-head .sec-img {
        width: 100%;
        max-width: 90%;
        height: 200px;
        border-radius: 10px;
    }

    .navi02 .sec-head .sec-img img,
    .navi03 .sec-head .sec-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 10px;
    }

    .navi02 .sec-body .gray .list,
    .navi03 .sec-body .gray .list,
    .navi02 .sec-body .list,
    .navi03 .sec-body .list {
        gap: 20px;
    }

    .navi02 .sec-body>.item, .navi03 .sec-body>.item {
                padding: 37px 23px;
    }


}