@charset "UTF-8";

/*///////////////////// font-face 読み込み例 ///////////////////////////*/
/*Zen Maru Gothic 300*/
@font-face {
    font-family: "Zen Maru Gothic";
    src: url(/fonts/ZenMaruGothic-Light.ttf);
    font-weight: 300;
    font-display: swap;
}
/*Zen Maru Gothic 400*/
@font-face {
    font-family: "Zen Maru Gothic";
    src: url(/fonts/ZenMaruGothic-Regular.ttf);
    font-weight: 400;
    font-display: swap;
}
/*Zen Maru Gothic 500*/
@font-face {
    font-family: "Zen Maru Gothic";
    src: url(/fonts/ZenMaruGothic-Medium.ttf);
    font-weight: 500;
    font-display: swap;
}
/*Zen Maru Gothic 700*/
@font-face {
    font-family: "Zen Maru Gothic";
    src: url(/fonts/ZenMaruGothic-Bold.ttf);
    font-weight: 700;
    font-display: swap;
}
/*Zen Maru Gothic 900*/
@font-face {
    font-family: "Zen Maru Gothic";
    src: url(/fonts/ZenMaruGothic-Black.ttf);
    font-weight: 900;
    font-display: swap;
}
/*///////////////////// font-face 読み込み例 ///////////////////////////*/

.org-header * ,
.float__bt * {
    font-family: "Zen Maru Gothic", sans-serif;
}
.org-header {
    width: 100%;
    height: 130px;
    background-color: transparent;
    position: relative;
    top: 0;
    z-index: 3;
}
    .org-header__inner {
        width: 100%;
        height: 130px;
        background: #FFF;
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.04);
        position: fixed;
        top: 0;
        left: 0;
        z-index: 5;
    }
        .org-header__inner-top {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 15px 28px 14px 12px;
            border-bottom: 1px solid #D9D9D9;
        }
            .logo__group {
                display: flex;
                gap: 19px;
            }
                [class*="logo__link"] {
                    display: block;
                }
                .logo__link--left {
                    width: 223px;
                    height: 55px;
                }
                .logo__link--right {
                    width: 211px;
                    height: 54px;
                }
                    [class*="logo__link"] img {
                        width: 100%;
                        height: 100%;
                        object-fit: cover;
                    }
            .tel__group {
                display: flex;
                gap: 16px;
            }
                .tel__box {
                    display: flex;
                    align-items: center;
                    gap: 5px;
                }
                    [class*="tel__label"] {
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        width: 42px;
                        height: 25px;
                        border-radius: 4px;
                        font-size: 14px;
                        font-weight: 500;
                        color:  #FFF;
                    }
                    .tel__label--buy {
                        background: #0062B2;
                    }
                    .tel__label--rent {
                        background: #D30D2E;
                    }
                    .tel__txt {
                        font-size: 26px;
                        font-weight: 500;
                        color: #231815;
                        margin-bottom: 6px;
                    }
            .org-header__nav-list {
                display: flex;
                justify-content: center;
                gap: 28px;
                margin-top: 12px;
            }
                .org-header__nav-link {
                    font-size: 14px;
                    font-weight: 500;
                    line-height: 1;
                    color: #231815;
                }
            .org-header__pulldown {
                width: 56px;
                padding-bottom: 8px;
                position: relative;
            }
                .org-header__pulldown button {
                    padding-block: 3px 11px;
                    cursor: pointer;
                }
                    .pull__down-list {
                        visibility: hidden;
                        opacity: 0;
                        border: 1px solid #D9D9D9;
                        pointer-events: none;
                        position: absolute;
                        top: 29px;
                        left: 50%;
                        transform: translateX(-50%);
                    }
                        .pull__down-item:first-of-type {
                            border-bottom: 1px solid #D9D9D9;
                        }
                        .pull__down-link {
                            display: block;
                            width: 204px;
                            padding: 12px 18px;
                            background: #ffffff;
                            font-size: 14px;
                            font-weight: 500;
                            line-height: 1;
                            color: #231815;
                            text-align: center;
                            pointer-events: all;
                        }
.float__bt {
    position: fixed;
    top: 200px;
    right: 0;
    z-index: 6;
}
.float__bt a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 82px;
    height: 238px;
    padding-top: 64px;
    border-radius: 10px 0 0 10px;
    background: #0062B2;
    font-size: 22px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.4em;
    color: #FFF;
    writing-mode: vertical-rl;
    position: relative;
}
.float__bt a::before {
    content: "";
    width: 46px;
    height: 50px;
    background: url(/images/top/float-icn.svg) no-repeat center / contain;
    position: absolute;
    top: 19px;
    left: 24px;
}