@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 Kaku Gothic New';
    src: url(/fonts/ZenKakuGothicNew-Black.ttf);
    font-weight: 900;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url(/fonts/Roboto-Bold.ttf);
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url(/fonts/Roboto-Black.ttf);
    font-weight: 900;
    font-display: swap;
}

@font-face {
    font-family: 'Momo Trust Display';
    src: url(/fonts/MomoTrustDisplay-Regular.ttf);
    font-weight: 400;
    font-display: swap;
}
/*///////////////////// font-face 読み込み例 ///////////////////////////*/

.org-header * {
    font-family: "Zen Kaku Gothic New", sans-serif;
}
.org-header {
    width: 100%;
    height: 80px;
    background: #fff;
    z-index: 5;
    position: sticky;
    top: 0;
    transition: .4s;
}
.top__headeer {
    position: fixed;
}
.scroll__header {
    background: transparent;
}
    .org-header__inner {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        height: 80px;
        padding-inline: 10px;
    }
        .org-header__logo {
            display: block;
            width: 248px;
            height: 61px;
        }
            .org-header__logo img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }
        .org-header__nav-list {
            display: flex;
            align-items: center;
            gap: 30px;
            background: #fff;
            border-radius: 5px;
            padding: 13px 48px;
        }
            .org-header__nav-link {
                font-size: 14px;
                font-weight: 500;
                line-height: 1.3;
                color: #252525;
            }