@charset "UTF-8";

/*///////////////////// font-face 読み込み例 ///////////////////////////*/

@font-face {
    font-family: 'Zen Old Mincho';
    src: url(/fonts/ZenOldMincho-Regular.ttf);
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: 'Zen Old Mincho';
    src: url(/fonts/ZenOldMincho-Medium.ttf);
    font-weight: 500;
    font-display: swap;
}

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

/*Zen Kaku Gothic New 700*/
@font-face {
    font-family: 'Cardo';
    src: url(/fonts/Cardo-Regular.ttf);
    font-weight: 400;
    font-display: swap;
}

/*///////////////////// font-face 読み込み例 ///////////////////////////*/
.org-header *,
.orgFloatBanner * {
    font-family: "Zen Old Mincho", serif;
    font-weight: 400;
    box-sizing: border-box;
}

.l-header.org-header {
    z-index: 8;
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
}

.org-header a:hover,
.org-header button:hover {
    opacity: 1;
}

.header__inner {
    width: 100%;
    height: 75px;
    margin: 0 auto;
    padding: 0 20px;
    align-items: center;
}

.header__logo img {
    max-width: 197px;
    max-height: 45px;
}

/*---------------------------------------------------

-----------------------------------------------------*/

.header__info__wrap {
    display: flex;
    align-items: center;
    gap: 0 17px;
    margin-bottom: 5px;
}
.header__info__list {
    display: flex;
    align-items: center;
    gap: 0 20px;
}
.header__info__item {
    display: flex;
    align-items: center;
    gap: 0 4px;
}
.header__info__label {
    width: 41px;
    height: 23px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #E6F5FF;
    color: #274875;
    font-size: 13px;
}
.header__info__num {
    color: #274875;
    font-size: 16px;
    letter-spacing: 1px;
    line-height: 1.9;
}
.header__info__text {
    font-size: 12px;
    letter-spacing: 1.4px;
}

.header__link__list {
    display: flex;
    align-items: center;
    gap: 0 12.5px;
    justify-content: end;
}

.header__link {
    position: relative;
    font-size: 14px;
    font-weight: 500;
    color: #212121;
    transition: .3s;
    width: auto;
    height: auto;
    letter-spacing: 2px;
}

.header__link__item {
    position: relative;
}

.header__link:hover {
    color: #274875;
}

.header__link:before {
    background: #274875;
    content: '';
    width: 100%;
    height: 1px;
    position: absolute;
    left: 0;
    bottom: -3px;
    transform-origin: center top;
    transform: scale(0, 1);
    transition: transform .3s;
}

.header__link:hover::before {
    transform-origin: center top;
    transform: scale(1, 1);
}
.header__right__wrap {
    margin-bottom: 6px;
}