@charset "UTF-8";

/*///////////////////// font-face 読み込み例 ///////////////////////////*/

/*Noto Sans JP 400*/
@font-face {
    font-family: 'Noto Sans JP';
    src: url(/fonts/NotoSansJP-Regular.woff2);
    font-weight: 400;
    font-display: swap;
}
/*Noto Sans JP 500*/
@font-face {
    font-family: 'Noto Sans JP';
    src: url(/fonts/NotoSansJP-Medium.woff2);
    font-weight: 500;
    font-display: swap;
}
/*Noto Sans JP 700*/
@font-face {
    font-family: 'Noto Sans JP';
    src: url(/fonts/NotoSansJP-Bold.woff2);
    font-weight: 700;
    font-display: swap;
}
/*Zen Old Mincho 400*/
@font-face {
    font-family: 'Zen Old Mincho';
    src: url(/fonts/ZenOldMincho-Regular.ttf);
    font-weight: 400;
    font-display: swap;
}
/*Zen Old Mincho 500*/
@font-face {
    font-family: 'Zen Old Mincho';
    src: url(/fonts/ZenOldMincho-Medium.ttf);
    font-weight: 500;
    font-display: swap;
}
/*Zen Old Mincho 600*/
@font-face {
    font-family: 'Zen Old Mincho';
    src: url(/fonts/ZenOldMincho-SemiBold.ttf);
    font-weight: 600;
    font-display: swap;
}
/*Zen Old Mincho 700*/
@font-face {
    font-family: 'Zen Old Mincho';
    src: url(/fonts/ZenOldMincho-Bold.ttf);
    font-weight: 700;
    font-display: swap;
}

/*///////////////////// font-face 読み込み例 ///////////////////////////*/

.org-header * {
    font-weight: 400;
    color: #304151;
    font-family: "Noto Sans JP";
    box-sizing: border-box;
}
.org-header * a:hover {
    text-decoration: none;
}

.org-header {
    background: #FFF;
    width: 100%;
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2;
}
.l-header.org-header {
    border-style: none;
}
    .org-header__inner {
        display: flex;
        justify-content: space-between;
        padding-left: 10px;
    }
        .org-header__logo {
            margin-top: 21px;
        }
            .org-header__logo a:hover {
                opacity: 1;
            }
        .org-header__right {
            display: flex;
            justify-content: flex-end;
            align-items: center;
        }
            .org-header__navi {
                margin-right: 20px;
            }
                .navi__list {
                    display: flex;
                    align-items: center;
                    gap: 0 20px;
                }
                    .navi__item a {
                        font-size: 16px;
                        font-weight: 500;
                        line-height: 1.7;
                    }
                    .navi__item a:hover {
                        color: #304151;
                        opacity: .7;
                        transform: .4s;
                    }
            .header__button-list {
                display: flex;
                align-items: center;
                gap: 0 5px;
                margin-right: 10px;
            }
                [class*="header__button-item--"] a {
                    display: flex;
                    flex-direction: column;
                    justify-content: flex-end;
                    align-items: center;
                    gap: 7px 0;
                    width: 110px;
                    height: 70px;
                    padding-bottom: 10px;
                    border-radius: 5px;
                    box-shadow: 1px 2px 4px 0 rgba(0, 0, 0, 0.20);
                    font-size: 13px;
                    font-weight: 500;
                    color: #FFF;
                    line-height: 1;
                }
                .header__button-item--satei a {
                    background: linear-gradient(270deg, #F0BF36 0%, #F08719 105.69%);
                }
                .header__button-item--online a {
                    background: linear-gradient(90deg, #00509A 0%, #0184FF 100%);
                }
                .header__button-item--line a {
                    background: linear-gradient(270deg, #55DB8C -46.58%, #16C25C 106.73%);
                }
                .header__button-item--satei a:hover {
                    background: linear-gradient(270deg, #F08719 0%, #F0BF36 105.69%);
                }
                .header__button-item--online a:hover {
                    background: linear-gradient(90deg, #0184FF 0%, #00509A 100%);
                }
                .header__button-item--line a:hover {
                    background: linear-gradient(270deg, #16C25C -46.58%, #55DB8C 106.73%);
                }
                    [class*="header__button-item--"] a svg {
                        width: 28px;
                        height: 28px;
                        fill: none;
                        stroke: #FFF;
                    }
                    .header__button-item--line a svg {
                        fill: #FFF;
                    }
            .header__info {
                background: #D8F0FF;
                padding: 14px 14px 18px 13px;
            }
                .header__tel {
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    gap: 0 3px;
                    font-size: 23px;
                    font-weight: 500;
                    line-height: 1;
                    color: #304151;
                    margin-bottom: 5px;
                }
                    .header__tel svg {
                        width: 17px;
                        height: 17px;
                        fill: #304151;
                        stroke: none;
                    }
                .header__info-text span {
                    display: block;
                    font-size: 11px;
                    font-weight: 400;
                    line-height: 1.3;
                    color: #304151;
                }
                .header__info-text span:not(:last-of-type) {
                    margin-bottom: 1px;
                }

/* outline
------------------------------*/
.l-header {
    width: 100%;
    border-bottom-width: 2px;
    border-style: solid;
    border-top: none;
    border-right: none;
    border-left: none;
    background: #fff;
    z-index: 10;
}
.l-header.is-fixed {
    position: fixed;
    top: 0;
    left: 0;
}
    .header__inner {
        width: 1080px;
        margin: 8px auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
        .headInfo__box {
            margin-bottom: 15px;
            display: flex;
            justify-content: flex-end;
        }
            .headInfo__tel--main {
                margin-bottom: 5px;
                /* margin-right: 10px; */
                font-size: 30px;
                font-weight: bold;
                text-align: right;
                line-height: 1.2;
            }
                .ui_icon-phone {
                    font-size: 22px;
                    vertical-align: 3px;
                }
            .headInfo__time {
                display: flex;
                justify-content: flex-end;
            }
                .headInfo__list {
                    font-size: 12px;
                    display: flex;
                }
                .headInfo__list:first-child {
                    margin-right: 10px;
                }
    .headNav {
        width: 100%;
    }
        .headNav__list {
            margin: 0 auto;
            display: flex;
            justify-content: right;
        }
            .headNav__item:not(:first-child) {
                margin-left: 20px;
            }
                .headNav__item a {
                    font-size: 15px;
                    color: #000;
                    text-decoration: none;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                }
                .headNav__item a:hover {
                    text-decoration: underline;
                }

.is-fixed .header_contact_fixed_wrap {
    display: block!important;
}
.is-fixed .header_contact {
    display: none;
}
.header_contact {
    margin-top: 7px;
    padding: 0 20px;
    height: 50px;
    line-height: 50px;
    font-size: 15px;
    font-weight: bold;
    color: #fff;
    text-align: center;
    display: block;
    border-radius: 3px;
    box-shadow: 0 1px 6px rgb(32 33 36 / 28%);
}
.header_contact_fixed {
    padding: 0 20px;
    height: 40px;
    line-height: 40px;
    font-size: 15px;
    font-weight: bold;
    color: #fff;
    text-align: center;
    display: block;
    border-radius: 3px;
    box-shadow: 0 1px 6px rgb(32 33 36 / 28%);
}
.header_contact:hover, .header_contact_fixed:hover {
    color: #fff;
}
.header_contact_wrap, .header_contact_fixed_wrap {
    float: right;
    margin-left: 20px;
}
.is-fixed .headInfo {
    display: flex;
    margin-left: auto;
    width: auto!important;
}
.headInfo {
    width: 100%;
}
.tel_company_info {
    display: flex;
    flex-direction: column;
}

.float__list {
    position: fixed;
    top: 110px;
    right: 0;
}
[class*="float__item--"] {
    box-shadow: 1px 2px 4px 0 rgba(0, 0, 0, 0.20);
}
[class*="float__item--"]:not(:last-child) {
    margin-bottom: 6px;
}
[class*="float__item--"] a {
    display: block;
    border-radius: 5px 0 0 5px;
    width: 70px;
    padding: 12px 0 5px 5px;
    box-sizing: border-box;
}
.float__item--01 a {
    background: linear-gradient(270deg, #F0BF36 0%, #F08719 100%);
}
.float__item--02 a {
    background: linear-gradient(90deg, #00509A 0%, #0184FF 100%);
}
.float__item--03 a {
    background: linear-gradient(270deg, #55DB8C 0%, #16C25C 100%);
}
[class*="float__item--"] a:hover {
    transition: .4s;
    opacity: 1;
    text-decoration: none;
}
.float__item--01 a:hover {
    background: linear-gradient(270deg, #F08719 0%, #F0BF36 100%);
}
.float__item--02 a:hover {
    background: linear-gradient(90deg, #0184FF 0%, #00509A 100%);
}
.float__item--03 a:hover {
    background: linear-gradient(270deg, #16C25C 0%, #55DB8C 100%);
}
[class*="float__item--"] a::before {
    content: '';
    display: block;
    width: 28px;
    height: 28px;
    margin: 0 auto 6px;
}
.float__item--01 a::before {
    background: url(/images/top/icon_float-satei.webp) no-repeat center / cover;
}
.float__item--02 a::before {
    background: url(/images/top/icon_float-online.webp) no-repeat center / cover;
}
.float__item--03 a::before {
    background: url(/images/top/icon_float-line.webp) no-repeat center / cover;
}
.float__text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0px;
    width: 100%;
    writing-mode: vertical-rl;
    text-orientation: upright;
    font-size: 13px;
    font-weight: 500;
    color: #304151;
    font-family: "Noto Sans JP";
    border-radius: 5px 0 0 5px;
    background: #FFF;
    padding: 9px 0 12px;
}
    .float__text span {
        writing-mode: vertical-rl;
        text-orientation: upright;
        font-size: 15px;
        font-weight: 500;
        font-family: "Noto Sans JP";
    }
    .float__text span.orange {
        color: #E6991F;
    }
    .float__text span.blue {
        color: #003F79;
    }
    .float__text span.green {
        color: #41BF74;
    }