@charset "UTF-8";
/*
 * サイト内で繰り返し使用される見出し・ボタン等のユーティリティスタイル
 *
 * ブロック単位ではなく特定のクラス名に依存した、LP共通モジュールの装飾を定義します。
 *
 * @package crmt-block-base
 * Last modified: 2026-04-03_11-26-08
 */
/* 
 * ブレイクポイント規約
 * Tablet : @media (width <= 768px) { ... }
 * Mobile : @media (width <= 540px) { ... }
 *
*/
@import url("https://fonts.googleapis.com/css2?family=Lato&display=swap");

#khd-b2b {
    /*
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
ボタン
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆            
*/

    /* 大 */

    .khd-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0 14px;
        border-radius: 1000px;
        border: 1px solid var(--wp--preset--color--main);
        position: relative;
        transition: 0.4s;
        width: fit-content;
        text-decoration: none;
        line-height: 1;
        font-weight: 600;

        &::before,
        &::after {
            content: "";
            display: inline-flex;
            position: absolute;
            right: 16px;
            width: 11px;
            height: 12px;
            background: url(/wp-content/uploads/arr_right.svg) center center no-repeat;
            background-size: contain;
            transition: 0.4s;
        }

        &:hover {
            &::before,
            &::after {
                right: 8px;
            }
            &::after {
                opacity: 0;
            }
        }
        /* 高さ・文字 */
        &.--size-l {
            height: clamp(56px, 2.8vw + 42px, 70px);
            font-size: clamp(1.286rem, 0.4vw + 1.143rem, 1.429rem);
        }
        &.--size-m {
            height: 48px;
            font-size: 1rem;
        }
        &.--size-m-s {
            height: clamp(40px, 1.6vw + 32px, 48px);
            font-size: clamp(0.857rem, 0.4vw + 0.714rem, 1rem);
        }
        &.--size-s {
            height: 40px;
            font-size: 0.75rem;
        }

        /* 幅 */
        &.--w-cta {
            min-width: clamp(265px, 11vw + 210px, 320px);
        }
        &.--w-h-cta {
            width: 180px;
            @media (width <= 768px) {
                width: fit-content;
            }
        }
        &.--w-200 {
            width: 200px;
        }
        /* カラー */
        &.--c-red {
            background-color: var(--wp--preset--color--main);
            color: var(--wp--preset--color--white);

            &:hover {
                background-color: var(--wp--preset--color--white);
                color: var(--wp--preset--color--main);
            }

            &::before {
                background-image: url(/wp-content/uploads/arr_right.svg);
            }
            &::after {
                background-image: url(/wp-content/uploads/arr_right__wh.svg);
            }
        }
        &.--c-white {
            background-color: var(--wp--preset--color--white);
            color: var(--wp--preset--color--main);
            box-shadow: inset 0 0 0 1.3px rgb(255 255 255 / 0);

            &:hover {
                background-color: var(--wp--preset--color--main);
                color: var(--wp--preset--color--white);
                box-shadow: inset 0 0 0 1.3px rgb(255 255 255 / 1);
            }

            &::before {
                background-image: url(/wp-content/uploads/arr_right__wh.svg);
            }
            &::after {
                background-image: url(/wp-content/uploads/arr_right.svg);
            }
        }
        /* アイコンなし */
        &.--m-s-noicon {
            @media (width <= 768px) {
                &::before,
                &::after {
                    display: none;
                }
            }
        }
    }

    /*
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
矢印リンク
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆            
*/

    .khd-link-arrow-1 {
        display: flex;
        align-items: flex-start;
        justify-content: center;
        flex-direction: column;
        padding: 0;

        a {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            width: 100%;
            max-width: 400px;
            height: 60px;
            border-bottom: 1px solid var(--wp--preset--color--border-normal);
            transition: 0.2s;

            &::after {
                content: "";
                display: inline-flex;
                width: 10px;
                height: 8px;
                margin-inline-start: auto;
                background: url(/wp-content/uploads/arr_right-min.svg) center center no-repeat;
                background-size: contain;
                position: relative;
                right: 8px;
                transition: 0.2s;
            }
            &:hover {
                &::after {
                    right: 0px;
                }
            }
        }
    }

    .khd-link-arrow-1-header-1 {
        @media (width <= 1200px) {
            display: flex;
            align-items: flex-start;
            justify-content: center;
            flex-direction: column;
            gap: 0 !important;
            width: 100%;
            padding: 40px 40px 0;

            a {
                display: flex;
                align-items: center;
                justify-content: flex-start;
                width: 100%;
                max-width: 400px;
                height: 60px;
                border-bottom: 1px solid var(--wp--preset--color--border-normal);
                text-align: left;
                transition: 0.2s;

                &::after {
                    content: "";
                    display: inline-flex;
                    width: 10px;
                    height: 8px;
                    margin-inline-start: auto;
                    background: url(/wp-content/uploads/arr_right-min.svg) center center no-repeat;
                    background-size: contain;
                    position: relative;
                    right: 8px;
                    transition: 0.2s;
                }
                &:hover {
                    &::after {
                        right: 0px;
                    }
                }
            }
        }
    }

    /*
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
サークルバッジ
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆            
*/

    .badges-1 {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: clamp(0.071rem, 3vw - 1rem, 1.143rem);
        list-style: none;
        margin: 0;
        padding: 0;

        .--badge {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            gap: 0.3rem;
            width: clamp(8.143rem, 10.2vw + 4.5rem, 11.786rem);
            aspect-ratio: 1/1;
            border-radius: 1000px;
            border: 1px solid var(--wp--preset--color--main);
            background-color: rgb(255 255 255 / 0.8);
            backdrop-filter: blur(20px);
            overflow: hidden;

            span {
                text-align: center;
                font-weight: 600;
                line-height: 120%;
                color: var(--wp--preset--color--main);
            }
        }
        .--sm {
            font-size: clamp(0.857rem, 0.4vw + 0.714rem, 1rem);
        }
        .--lg {
            font-size: clamp(1.107rem, 1.7vw + 0.5rem, 1.714rem);
        }
    }

    /*
    ◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
    実績バッジ
    ◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆            
    */

    /* バッジ本体（月桂樹の基準位置） */
    .achievement-badge {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: clamp(0.571rem, 0.8vw + 0.286rem, 0.857rem);
        min-height: clamp(4.714rem, 6vw + 2.571rem, 6.857rem);
        padding: 0 clamp(2.571rem, 3.6vw + 1.286rem, 3.857rem);
        text-align: center;

        &::before {
            content: "";
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: clamp(2rem, 2.4vw + 1.143rem, 2.857rem);
            /* 画像サイズに合わせて調整 */
            height: clamp(4.714rem, 6vw + 2.571rem, 6.857rem);
            background: url("/wp-content/uploads/laurel-left.svg") no-repeat center center / contain;
        }

        &::after {
            content: "";
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            width: clamp(2rem, 2.4vw + 1.143rem, 2.857rem);
            height: clamp(4.714rem, 6vw + 2.571rem, 6.857rem);
            background: url("/wp-content/uploads/laurel-right.svg") no-repeat center center / contain;
        }
        .badge-title {
            font-weight: 600;
            font-size: clamp(0.857rem, 0.6vw + 0.643rem, 1.071rem);
            color: var(--wp--preset--color--text-titleimportant);
            margin: 0;
            line-height: 1.1;
        }

        .badge-data {
            display: flex;
            align-items: flex-end;
            justify-content: center;
            background: linear-gradient(45deg, #806c27 0%, #8a702a 37%, #d5cc8f 54%, #927615 64%, #675517 100%);
            -webkit-background-clip: text !important;
            background-clip: text !important;
            color: transparent !important;
            margin: 0;
            padding: 4px 0px;
        }
        .number {
            font-family: "Lato", sans-serif;
            font-weight: 400;
            font-style: normal;
            font-size: clamp(2.857rem, 3.2vw + 1.714rem, 4rem);
            line-height: 0.8;
        }
        .unit {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            font-size: clamp(1.214rem, 1vw + 0.857rem, 1.571rem);
            line-height: 1;

            small {
                font-size: 8px;
                transform: scale(clamp(80%, 4vw + 60%, 100%));
            }
        }
    }

    /*
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
cta赤ボックス
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆            
*/
    .cta-box-1 {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 13px;
        background-color: var(--wp--preset--color--main);
        border-radius: 8px;
        padding: 20px 30px 18px;

        .--title {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 13px;
            margin: 0;
            line-height: 1;
            color: var(--wp--preset--color--white);

            .--sub {
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 10px;
                position: relative;
                font-size: 12px;
                font-weight: 600;

                padding: 0 18px;
                &::before,
                &::after {
                    content: "";
                    position: absolute;
                    top: 50%;
                    width: 0.8px;
                    height: 26px;
                    background: var(--wp--preset--color--white);
                }
                &::before {
                    left: 0;
                    transform: translateY(-50%) rotate(-45deg);
                }
                &::after {
                    right: 0;
                    transform: translateY(-50%) rotate(45deg);
                }
            }
            .--lg {
                font-size: 18px;
                font-weight: 600;
            }
            .--sm {
                font-size: 12px;
            }
        }
        .--btn {
        }
    }
    /*
    ◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
    コメントカード
    ◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆            
    */
    .card-comment-1 {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 30%;
        min-width: clamp(22.857rem, 9.281vw + 17.759rem, 25.714rem);
        min-height: 150px;
        padding: 10px 20px;
        border-radius: 20px;
        position: relative;
        background-color: var(--wp--preset--color--white);
        font-size: clamp(0.857rem, 0.4vw + 0.714rem, 1rem);
        text-align: center;
        font-weight:600;

        @media (width <=768px) {
            width: 100%;
            min-height: 100px;
        }

        p {
            margin: 0;
        }

        strong {
            font-size: clamp(1.143rem, 0.4vw + 1rem, 1.286rem);
            color: var(--wp--preset--color--main);
        }

        &::before,
        &::after {
            content: "";
            position: absolute;
            width: 40px;
            height: 40px;
        }

        &::before {
            top: 0;
            left: 0;
            border-top: 1px solid var(--wp--preset--color--main);
            border-left: 1px solid var(--wp--preset--color--main);
            border-top-left-radius: 20px;
        }

        &::after {
            bottom: 0;
            right: 0;
            border-bottom: 1px solid var(--wp--preset--color--main);
            border-right: 1px solid var(--wp--preset--color--main);
            border-bottom-right-radius: 20px;
        }
    }
    /*
        ◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
        ソリューションカード
        ◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆            
        */
    .card-sol-1 {
        border-radius: 16px;
        overflow: hidden;
        background-color: var(--wp--preset--color--white);
        box-shadow: 10px 10px 24px 10px rgba(94, 94, 94, 0.09);

        .--visual {
            display: flex;
            align-items: center;
            justify-content: center;
            container-type:inline-size;

            .image,
            .copy {
                width: 50%;
                aspect-ratio: 1/1;
            }
            .image {
                background: url("") no-repeat center center / cover;
            }
            .copy {
                display: flex;
                align-items: center;
                justify-content: center;
                text-align: center;
                flex-direction: column;
                padding-block:0 4cqi;
                background-color: var(--wp--preset--color--main);
                color: var(--wp--preset--color--white);
                font-size: 16px;
                letter-spacing: 4%;

                .--ico {
                    width: 64px;
                }
            }
        }
        .--content {
            display: flex;
            align-items: flex-start;
            justify-content: center;
            flex-direction: column;
            gap: 16px;
            padding: 24px 20px;

            .--title {
                display: flex;
                align-items: center;
                justify-content: center;
                text-align: center;
                width: 100%;
                min-height: 64px;
                font-size: 20px;
            }

            ul {
                margin:0;
                padding-inline-start: 24px;
                color: var(--wp--preset--color--text-metacaption);
            }
        }
    }

    /*
        ◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
        pointXX ヘッダー
        ◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆            
        */

    .hdr-point {
        display: flex;
        align-items: flex-start;
        justify-content: center;
        flex-direction: column;
        gap: clamp(1.143rem, -1.6vw + 2.286rem, 1.714rem);
        @media (width <=768px) {
            flex-direction: row;
            align-items: center;
            justify-content: flex-start;
        }

        .num {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            color: var(--wp--preset--color--main);
            font-family: "Lato", sans-serif;
            font-weight: 400;
            font-style: normal;
            line-height: 0.8;

            @media (width <= 768px) {
                flex-direction: column;
            }

            .--sm {
                font-size: 14px;
            }
            .--lg {
                font-size: 24px;
            }
        }
        .heading {
            font-size: clamp(1.286rem, 1.2vw + 0.857rem, 1.714rem);
            color: var(--wp--preset--color--text-titleimportant);
        }
    }
    hr.hr-1 {
        width: 100%;
        height: 1px;
        border: 0 none;
        border-left: 100px solid var(--wp--preset--color--main);
        background-color: var(--wp--preset--color--border-normal);
    }

    /*
        ◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
        ニュース一覧
        ◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆            
        */

    .block--news {
        margin: 0;
        padding: 0;
        list-style: none;
        border-top: 1px solid var(--wp--preset--color--border-normal);

        .--event {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            gap: 24px;
            min-height: 100px;
            padding: 16px 20px;
            border-bottom: 1px solid var(--wp--preset--color--border-normal);

            @media (width <= 1024px) {
                flex-direction: column;
                align-items: flex-start;
                justify-content: center;
                gap: 8px;
            }
        }
        .--meta {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            gap: 24px;
        }
        .--date {
            flex-shrink: 0;
            font-family: "Lato", sans-serif;
            font-weight: 400;
            font-style: normal;
            color: var(--wp--preset--color--text-metacaption);
            font-size: 14px;
        }
        .--tag {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            height: 22px;
            padding: 0 12px;
            border: 1px solid var(--wp--preset--color--border-normal);
            font-size: 12px;

            &.tag-oshirase {
                border-color: var(--wp--preset--color--main);
                color: var(--wp--preset--color--main);
            }
        }
        .--title {
            font-size: 1rem;
            font-weight: 600;
            word-break: break-all;
            overflow-wrap: anywhere;
        }
    }
}
