@charset "UTF-8";

/*///////////////////// font-face 読み込み例 ///////////////////////////*/

@font-face {
    font-family: 'Noto Sans JP';
    src: url(/fonts/NotoSansJP-Regular.ttf);
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: 'Noto Sans JP';
    src: url(/fonts/NotoSansJP-Medium.ttf);
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: 'Noto Sans JP';
    src: url(/fonts/NotoSansJP-SemiBold.ttf);
    font-weight: 600;
    font-display: swap;
}

@font-face {
    font-family: 'Noto Sans JP';
    src: url(/fonts/NotoSansJP-Bold.ttf);
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: 'Heebo';
    src: url(/fonts/Heebo-SemiBold.ttf);
    font-weight: 600;
    font-display: swap;
}

@font-face {
    font-family: 'Heebo';
    src: url(/fonts/Heebo-ExtraBold.ttf);
    font-weight: 800;
    font-display: swap;
}
/*///////////////////// font-face 読み込み例 ///////////////////////////*/
html {
    scroll-behavior: smooth;
    scroll-padding-top: 124px;
}
.org-header *{
    font-family: "Noto Sans JP", sans-serif;
}
.org-header {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 124px;
    padding-inline: 20px;
    background: transparent;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 5;
}
.top__header,
.under__header {
    position: fixed;
}
    .org-header__inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        height: 84px;
        padding-inline: 19px 18px;
        background: #fff;
        border-radius: 3px;
        border: 1px solid #F2F2F2;
        box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
    }
        .org-header__logo {
            display: block;
            width: 224px;
            height: 54px;
        }
        .org-header__right {
            display: flex;
            align-items: center;
            gap: 30px;
        }
            .org-header__nav {
                display: flex;
                align-items: center;
                gap: 29px;
            }
                .org-header__pull-down {
                    position: relative;
                }
                    .org-header__nav-link {
                        font-size: 16px;
                        font-weight: 500;
                        color: #000000;
                    }
                    .org-header__pull-down .org-header__nav-link {
                        display: flex;
                        align-items: center;
                        gap: 8px;
                    }
                    .org-header__pull-down .org-header__nav-link::after {
                        content: "";
                        display: inline-block;
                        width: 11px;
                        height: 6px;
                        background: url(/images/top/header_arrow.svg) no-repeat center / cover;
                        transition: .4s;
                    }
                    .org-header__sub-nav {
                        visibility: hidden;
                        opacity: 0;
                        display: flex;
                        flex-direction: column;
                        gap: 1px;
                        width: fit-content;
                        padding: 12px 19px;
                        background: #fff;
                        border-radius: 3px;
                        border: 1px solid #F2F2F2;
                        box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.10);
                        position: absolute;
                        top: 36px;
                        left: 50%;
                        transform: translateX(-50%);
                        transition: .4s;
                    }
                    .org-header__pull-down.is-open .org-header__sub-nav {
                        visibility: visible;
                        opacity: 1;
                    }
                    .org-header__pull-down.is-open .org-header__nav-link::after {
                        transform: rotate(-180deg);
                    }
                        .org-header__sub-nav-item {
                            width: max-content;
                        }
                            .org-header__sub-nav-link {
                                font-size: 14px;
                                font-weight: 400;
                                line-height: 1.2;
                                color: #000000;
                            }
            .org-header__info {
                display: flex;
                flex-direction: column;
                padding-top: 4px;
            }
                .org-header__tel-list {
                    display: flex;
                    gap: 15px;
                }
                    [class*="org-header__info-item"] {
                        font-size: 20px;
                        font-weight: 700;
                        line-height: 1.2;
                        text-align: center;
                    }
                    .org-header__info-item--left {
                        color: #00278E;
                    }
                    .org-header__info-item--right {
                        color: #016CDA;
                    }
                        [class*="org-header__info-item"] span {
                            display: flex;
                            align-items: center;
                            justify-content: center;
                            width: 140px;
                            height: 23px;
                            font-size: 14px;
                            font-weight: 500;
                        }
                        .org-header__info-item--left span {
                            background: #D6E3F5;
                            color: #00278E;
                        }
                        .org-header__info-item--right span {
                            background: #D2E8F9;
                            color: #016CDA;
                        }
                .org-header__time {
                    font-size: 12px;
                    font-weight: 400;
                    line-height: 1.4;
                    color: #000000;
                    text-align: center;
                }