@charset "UTF-8";

/*///////////////////// font-face 読み込み例 ///////////////////////////*/
@font-face {
    font-family: 'Zen Kaku Gothic New';
    src: url(/fonts/ZenKakuGothicNew-Regular.ttf);
    font-weight: 400;
    font-display: swap;
}
@font-face {
    font-family: 'Zen Kaku Gothic New';
    src: url(/fonts/ZenKakuGothicNew-Medium.ttf);
    font-weight: 500;
    font-display: swap;
}
@font-face {
    font-family: 'Zen Kaku Gothic New';
    src: url(/fonts/ZenKakuGothicNew-Bold.ttf);
    font-weight: 700;
    font-display: swap;
}
@font-face {
    font-family: 'Zen Maru Gothic';
    src: url(/fonts/ZenMaruGothic-Regular.ttf);
    font-weight: 400;
    font-display: swap;
}
@font-face {
    font-family: 'Zen Maru Gothic';
    src: url(/fonts/ZenMaruGothic-Medium.ttf);
    font-weight: 500;
    font-display: swap;
}
@font-face {
    font-family: 'Zen Maru Gothic';
    src: url(/fonts/ZenMaruGothic-Bold.ttf);
    font-weight: 700;
    font-display: swap;
}
@font-face {
    font-family: 'Noto Sans JP';
    src: url(/fonts/NotoSansJP-Bold.ttf);
    font-weight: 700;
    font-display: swap;
}
/*///////////////////// font-face 読み込み例 ///////////////////////////*/
.org-header * {
    font-family: "Zen Maru Gothic", sans-serif;
}
.org-header {
    position: sticky;
    top: 0;
    left: 0;
    z-index: 5;
    background: #fff;
}
    .org-header__inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        height: 81px;
        padding-inline: 30px;
    }
        .org-header__right {
            display: flex;
            align-items: center;
        }
            .org-header__nav-list {
                display: flex;
                gap: 30px;
            }
                .org-header__nav-link {
                    font-size: 16px;
                    font-weight: 500;
                    color: #212121;
                }

.org-float__wrap {
    display: none;
    width: 180px;
    position: fixed;
    top: 200px;
    right: 0;
    z-index: 5;
}
    .org-float__list {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
        [class*="org-float__item"] {
            position: absolute;
        }
        .org-float__item--mail {
            top: 0;
        }
        .org-float__item--satei {
            top: 173px;
        }
        .org-float__item--line {
            top: 346px;
        }
            [class*="org-float__item"] a {
                display: block;
                width: 180px;
                height: 180px;
            }
            .org-float__item--mail a {
                background: url(/images/top/float_mail.svg) no-repeat center / cover;
                padding-top: 56px;
                font-family: "Zen Maru Gothic", sans-serif;
                font-size: 16px;
                font-weight: 700;
                line-height: 1;
                color: #FF8316;
                text-align: center;
            }
                .org-float__item--mail a .org-float__tel {
                    display: block;
                    margin-top: 4px;
                    font-family: "Zen Maru Gothic", sans-serif;
                    font-size: 20px;
                    font-weight: 700;
                    color: #FF8316;
                }
            .org-float__item--satei a {
                background: url(/images/top/float_satei.svg) no-repeat center / cover;
            }
            .org-float__item--line a {
                background: url(/images/top/float_line.svg) no-repeat center / cover;
            }