@charset "UTF-8";
/*
 * サイト全体で共通化されたフッター領域の総合スタイル
 *
 * モバイルとPCでのメニュー折り返しや、ロゴの配置などフッター構造の基礎を定義します。
 *
 * @package crmt-block-base
 * Last modified: 2026-04-03_15-59-19
 *
 * ブレイクポイント規約
 * Tablet : @media (width <= 768px) { ... }
 * Mobile : @media (width <= 540px) { ... }
*/
#khd-b2b {
    /*--------------------------------
	FOOTER SET
--------------------------------*/
    .footer .wrapper {
        margin: auto;
        width: min(92%, 1080px);
        padding: clamp(3.75rem, 2.8697rem + 3.7559vw, 6.25rem) 0;

        padding: 48px 0 20px;
        ul,
        ol {
            margin: 0;
            padding: 0;
            list-style: none;
        }
        a {
            color: inherit;
            text-decoration: none;
        }
        /*------ a -------*/
        a:hover {
            opacity: 0.7;
            transition: 0.3s;
        }

        /*------ arrow -------*/
        .arrow {
            position: relative;
            display: inline-block;
            padding: 0 20px;
            color: var(--wp--preset--color--text-maintext);
            text-decoration: none;
            outline: none;
        }

        .arrow::before {
            content: "";
            position: absolute;
            bottom: 0.5px;
            right: 0;
            width: 22px;
            height: 0.7px;
            background: var(--wp--preset--color--text-maintext);
            transition: all 0.3s;
        }

        .arrow::after {
            content: "";
            position: absolute;
            bottom: 4px;
            right: 0;
            width: 12px;
            height: 0.5px;
            background: var(--wp--preset--color--text-maintext);
            transform: rotate(35deg);
            transition: all 0.3s;
        }
    }

    .footer__main {
        display: flex;
        border-bottom: 1px solid #cacaca;
        padding-bottom: 36px;
        margin-bottom: 20px;
        justify-content: space-between;
        gap: 30px;
    }

    .footer__main-logo {
        img {
            width: 100%;
            max-width: clamp(5rem, 14vw + 0.625rem, 9.375rem);
        }
    }

    .footer__main-menu {
        display: flex;
        flex-wrap: wrap;
        align-items: stretch;
        gap: 19.5px;
        width: 80%;
    }

    .footer__main-menu li {
        font-size: 14px;
        border-bottom: 1px solid #cacaca;
    }

    .footer__main-menu li a {
        padding: 0 0.5em 0.5em;
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 225px;
        height:100%;
        text-align: left;
    }

    .footer__main-menu li a .arrow::before {
        width: 18px;
    }

    .footer__main-menu li a .arrow::after {
        bottom: 3px;
        width: 9px;
    }

    .footer__copyright {
        text-align: center;
        font-size: 13px;
    }
}
