﻿@charset "UTF-8";

.c-button,
.c-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 30px;
    border-radius: 7px;
    font-size: 15px;
    font-weight: 900;
    line-height: 1.2;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.c-button::after,
.c-outline::after {
    content: "\f054";
    display: grid;
    place-items: center;
    flex-shrink: 0;
    font-family: "Font Awesome 6 Free";
    font-size: 20px;
    font-weight: 900;
    line-height: 1;
}

.c-button > i,
.c-outline > i {
    display: grid;
    place-items: center;
    flex-shrink: 0;
    line-height: 1;
}

.c-primary {
    color: #fff;
    background: linear-gradient(180deg, #ff9d2f 0%, #ff850b 100%);
    box-shadow: 0 12px 22px rgba(255, 133, 11, 0.25);
    transition: 0.2s;
}

.c-secondary,
.c-outline {
    color: #092a50;
    background: #fff;
    border: 1px solid #092a50;
}

.c-tel {
    display: grid;
    gap: 2px;
    min-width: 380px;
    color: #fff;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.9);
}

.c-tel::after {
    display: none;
}

.c-button__tel {
    font-size: 22px;
    font-weight: 900;
    line-height: 1;
}

.c-button__note {
    font-size: 12px;
    font-weight: 700;
}

.c-heading {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: center;
    margin-bottom: 28px;
}

.c-heading__label {
    margin-bottom: 6px;
    color: #ff850b;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.c-heading__title {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #092a50;
    font-size: 32px;
    font-weight: 900;
    line-height: 1.35;
}

.c-heading__icon {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    color: #092a50;
    font-size: 34px;
}

.c-heading__text {
    margin-top: 10px;
    color: #536477;
    font-size: 15px;
    line-height: 1.8;
}

.c-heading__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    color: #092a50;
    font-size: 13px;
    font-weight: 900;
}

.c-heading__arrow {
    font-size: 16px;
    line-height: 1;
}

.c-use,
.c-product,
.c-case,
.c-knowledge {
    display: block;
    overflow: hidden;
    border: 1px solid #dce5ef;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 8px 18px rgba(9, 42, 80, 0.08);
}

.c-use__media,
.c-product__media,
.c-case__media,
.c-knowledge__media {
    overflow: hidden;
    background: #edf2f7;
}

.c-use__media {
    aspect-ratio: 16 / 9;
}

.c-product__media,
.c-knowledge__media {
    aspect-ratio: 6 / 4;
}

.c-case__media {
    aspect-ratio: 16 / 9;
}

.c-use__img,
.c-product__img,
.c-case__img,
.c-knowledge__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.c-use__body {
    position: relative;
    min-height: 56px;
    padding: 20px;
    text-align: center;
}

.c-use__title,
.c-product__title,
.c-case__title,
.c-knowledge__title {
    color: #092a50;
    font-size: 18px;
    font-weight: 900;
    line-height: 1.45;
}

.c-use__text,
.c-product__text,
.c-knowledge__text {
    margin-top: 7px;
    color: #536477;
    font-size: 13px;
    line-height: 1.7;
}

.c-knowledge__text {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.c-product {
    display: grid;
    grid-template-rows: auto 1fr;
}

.c-product__body {
    display: grid;
    grid-template-rows: auto auto 1fr auto auto;
    padding: 16px 12px;
    text-align: center;
}

.c-product__tag {
    display: flex;
    justify-self: center;
    margin-bottom: 10px;
    padding: 4px 14px;
    border-radius: 999px;
    color: #ff850b;
    background: #fff1df;
    font-size: 11px;
    font-weight: 900;
}

.c-product__meta {
    display: grid;
    gap: 6px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #e7eff7;
    color: #26394d;
    font-size: 12px;
    line-height: 1.5;
    text-align: left;
}

.c-product__meta div {
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 8px;
}

.c-product__meta dt {
    color: #092a50;
    font-weight: 900;
}

.c-product__meta dd {
    margin: 0;
    color: #536477;
    font-weight: 700;
}

.c-use__button,
.c-product__button,
.c-case__button {
    display: flex;
    align-items: center;
    justify-content: center;
    justify-self: center;
    min-width: 92px;
    margin-top: 16px;
    padding: 6px 16px;
    border: 1px solid #092a50;
    border-radius: 4px;
    color: #092a50;
    font-size: 13px;
    font-weight: 900;
    line-height: 1;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.c-case__body {
    padding: 14px 16px 16px;
}

.c-case__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 8px;
}

.c-case__category {
    display: inline-flex;
    padding: 3px 10px;
    color: #fff;
    background: #092a50;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 900;
}

.c-case__text {
    display: -webkit-box;
    overflow: hidden;
    margin-top: 8px;
    color: #536477;
    font-size: 13px;
    line-height: 1.7;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.c-case__meta {
    display: grid;
    gap: 4px;
    margin-top: 12px;
    color: #26394d;
    font-size: 12px;
    line-height: 1.5;
}

.c-case__meta div {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 8px;
}

.c-case__meta dt {
    color: #536477;
    font-weight: 800;
}

.c-case__meta dd {
    margin: 0;
    font-weight: 800;
}

.c-knowledge {
    display: grid;
    grid-template-rows: auto 1fr;
    background: #fff;
}

.c-knowledge__body {
    padding: 14px 16px 18px;
}

.c-pagetop {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 120;
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border: 1px solid rgba(255, 255, 255, 0.68);
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(145deg, #123e73 0%, #06264b 100%);
    box-shadow: 0 16px 32px rgba(9, 42, 80, 0.22);
    font-size: 18px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(14px);
    transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.c-pagetop__show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

@media (hover: hover) and (pointer: fine) {
    .c-heading a {
        transition: transform 0.3s ease;
    }

    .c-heading a:hover {
        opacity: .7;
    }
    .c-use__img,
    .c-product__img,
    .c-case__img,
    .c-knowledge__img {
        transition: transform 0.3s ease;
    }

    .c-use:hover .c-use__img,
    .c-product:hover .c-product__img,
    .c-case:hover .c-case__img,
    .c-knowledge:hover .c-knowledge__img {
        transform: scale(1.04);
    }

    .c-outline:hover,
    .c-secondary:hover,
    .c-use:hover .c-use__button,
    .c-product:hover .c-product__button,
    .c-case:hover .c-case__button {
        color: #fff;
        background: #092a50;
    }

    .c-primary:hover {
        opacity: .7;
    }

    .c-pagetop:hover {
        box-shadow: 0 20px 38px rgba(9, 42, 80, 0.28);
        transform: translateY(-2px);
    }
}

@media screen and (max-width: 767px) {
    .c-button,
    .c-outline {
        width: 100%;
        min-height: calc(48 * 100vw / 767);
        gap: calc(12 * 100vw / 767);
        padding: calc(30 * 100vw / 767) calc(28 * 100vw / 767);
        border-radius: calc(8 * 100vw / 767);
        font-size: calc(28 * 100vw / 767);
    }

    .c-button::after,
    .c-outline::after {
        font-size: calc(20 * 100vw / 767);
    }

    .c-tel {
        min-width: 0;
    }

    .c-button__tel {
        font-size: calc(36 * 100vw / 767);
    }

    .c-button__note {
        font-size: calc(22 * 100vw / 767);
    }

    .c-heading {
        display: block;
        margin-bottom: calc(24 * 100vw / 767);
    }

    .c-heading__title {
        gap: calc(6 * 100vw / 767);
        font-size: calc(42 * 100vw / 767);
        line-height: 1.3;
    }

    .c-heading__icon {
        width: calc(46 * 100vw / 767);
        height: calc(46 * 100vw / 767);
        font-size: calc(30 * 100vw / 767);
    }

    .c-heading__text {
        margin-top: calc(14 * 100vw / 767);
        font-size: calc(28 * 100vw / 767);
        line-height: 1.75;
    }

    .c-heading__link {
        margin-top: calc(22 * 100vw / 767);
        gap: calc(12 * 100vw / 767);
        font-size: calc(28 * 100vw / 767);
    }

    .c-heading__arrow {
        font-size: calc(28 * 100vw / 767);
    }

    .c-pagetop {
        right: calc(30 * 100vw / 767);
        bottom: calc(20 * 100vw / 767);
        width: calc(80 * 100vw / 767);
        height: calc(80 * 100vw / 767);
        font-size: calc(16 * 100vw / 767);
    }
}

.c-button::after,
.c-outline::after {
    content: "\f054";
}

.p-use .c-heading {
    margin-bottom: 30px;
}

.c-use {
    border-radius: 10px;
    box-shadow: 0 18px 42px rgba(9, 42, 80, 0.12);
}

.c-use__media {
    aspect-ratio: 1.47 / 1;
}

.c-use__body {
    position: relative;
    min-height: 136px;
    padding: 50px 30px 20px;
    text-align: center;
}

.c-use__icon {
    position: absolute;
    left: 50%;
    top: -43px;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 76px;
    height: 76px;
    color: #fff;
    background: linear-gradient(145deg, #123e73 0%, #06264b 100%);
    border: 5px solid #fff;
    border-radius: 50%;
    box-shadow: 0 10px 22px rgba(9, 42, 80, 0.28);
    font-size: 30px;
    transform: translateX(-50%);
}

@media screen and (max-width: 767px) {
    .c-heading {
        margin-bottom: calc(24 * 100vw / 767);
    }

    .c-heading__title {
        gap: calc(6 * 100vw / 767);
        font-size: calc(42 * 100vw / 767);
        line-height: 1.3;
    }

    .c-heading__icon {
        width: calc(46 * 100vw / 767);
        height: calc(46 * 100vw / 767);
        font-size: calc(30 * 100vw / 767);
    }

    .c-use__body {
        min-height: calc(124 * 100vw / 767);
        padding: calc(46 * 100vw / 767) calc(36 * 100vw / 767) calc(22 * 100vw / 767);
    }

    .c-use__media {
        aspect-ratio: 2.6 / 1;
    }

    .c-use__title,
    .c-product__title,
    .c-case__title,
    .c-knowledge__title {
        font-size: calc(36 * 100vw / 767);
        line-height: 1.4;
    }

    .c-use__text,
    .c-product__text,
    .c-knowledge__text {
        margin-top: calc(12 * 100vw / 767);
        font-size: calc(28 * 100vw / 767);
        line-height: 1.7;
    }

    .c-case__text {
        margin-top: calc(12 * 100vw / 767);
        font-size: calc(28 * 100vw / 767);
    }

    .c-use__button,
    .c-product__button,
    .c-case__button {
        min-width: calc(280 * 100vw / 767);
        min-height: calc(88 * 100vw / 767);
        margin-top: calc(24 * 100vw / 767);
        padding: calc(16 * 100vw / 767) calc(34 * 100vw / 767);
        border-radius: calc(8 * 100vw / 767);
        font-size: calc(28 * 100vw / 767);
    }

    .c-product__tag {
        margin-bottom: calc(16 * 100vw / 767);
        padding: calc(8 * 100vw / 767) calc(24 * 100vw / 767);
        border-radius: calc(999 * 100vw / 767);
        font-size: calc(22 * 100vw / 767);
    }

    .c-case__tags {
        gap: calc(6 * 100vw / 767);
        margin-bottom: calc(8 * 100vw / 767);
    }

    .c-case__category {
        align-items: center;
        min-height: max(20px, calc(42 * 100vw / 767));
        padding: 0 calc(14 * 100vw / 767);
        border-radius: calc(3 * 100vw / 767);
        font-size: calc(20 * 100vw / 767);
        line-height: 1.3;
    }

    .c-product__meta {
        gap: calc(10 * 100vw / 767);
        margin-top: calc(18 * 100vw / 767);
        padding-top: calc(18 * 100vw / 767);
        font-size: calc(24 * 100vw / 767);
    }

    .c-product__meta div {
        grid-template-columns: calc(86 * 100vw / 767) 1fr;
        gap: calc(12 * 100vw / 767);
    }

    .c-case__meta {
        gap: calc(8 * 100vw / 767);
        margin-top: calc(18 * 100vw / 767);
        font-size: calc(24 * 100vw / 767);
    }

    .c-case__meta div {
        grid-template-columns: calc(86 * 100vw / 767) 1fr;
        gap: calc(12 * 100vw / 767);
    }

    .c-use__icon {
        width: calc(82 * 100vw / 767);
        height: calc(82 * 100vw / 767);
        top: calc(-46 * 100vw / 767);
        font-size: calc(34 * 100vw / 767);
    }
}
