@charset "UTF-8";

/*///////////////////// font-face ///////////////////////////*/

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

@font-face {
    font-family: 'Zen Kaku Gothic New';
    src: url(/fonts/ZenKakuGothicNew-Medium.woff2);
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: 'Zen Kaku Gothic New';
    src: url(/fonts/ZenKakuGothicNew-Bold.woff2);
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: 'Noto Sans JP';
    src: url(/fonts/NotoSansJP-Regular.woff2);
    font-weight: 400;
    font-display: swap;
}
@font-face {
    font-family: 'Noto Sans JP';
    src: url(/fonts/NotoSansJP-Medium.woff2);
    font-weight: 500;
    font-display: swap;
}
@font-face {
    font-family: 'Noto Sans JP';
    src: url(/fonts/NotoSansJP-Bold.woff2);
    font-weight: 700;
    font-display: swap;
}
@font-face {
    font-family: 'Geist';
    src: url(/fonts/Geist-Bold.woff2);
    font-weight: 700;
    font-display: swap;
}
/*///////////////////// font-face ///////////////////////////*/

.org-header {
    --org-header-main: #071423;
    --org-header-point: #2872e9;
    --org-header-border: #7e7e7e;
    --org-header-white: #ffffff;
    --org-header-shadow: 0 0 8px rgba(0, 0, 0, 0.16);
    --org-header-font: "Zen Kaku Gothic New", sans-serif;
    position: sticky;
    top: 0;
    z-index: 8;
    box-sizing: border-box;
    width: 100%;
    height: 100px;
    background-color: var(--org-header-white);
    border-bottom: 1px solid var(--org-header-border);
}

.org-header *,
.org-header *::before,
.org-header *::after {
    box-sizing: border-box;
}
.org-header a:hover,
.org-header button:hover {
    opacity: 1;
}
.org-header * {
    font-family: "Noto Sans JP", sans-serif;
}

.org-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    padding: 23px 30px;
}

.org-header__logo-wrap {
    margin: 0;
    line-height: 1;
    width: 108px;
}

.org-header__logo {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
    color: var(--org-header-main);
    text-decoration: none;
}

.org-header__logo-line {
    display: flex;
    gap: 3px;
    align-items: flex-end;
}

.org-header__logo-keiai {
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0;
}

.org-header__logo-no,
.org-header__logo-sub {
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0;
}

.org-header__nav {
    display: flex;
    align-items: center;
}

.org-header__list {
    display: flex;
    gap: 35px;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

.org-header__item {
    position: relative;
    margin: 0;
    padding: 0;
}

.org-header__link {
    position: relative;
    display: inline-flex;
    gap: 8px;
    align-items: center;
    padding: 0;
    border: none;
    background: transparent;
    color: var(--org-header-main);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
}

.org-header__link::before {
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 1px;
    background: currentColor;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: transform 0.3s;
    content: "";
}

.org-header__link:hover::before {
    transform: scale(1, 1);
    transform-origin: left top;
}

.org-header__link--pulldown.is-open {
    color: var(--org-header-point);
}

.org-header__arw {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 13px;
    height: 13px;
    overflow: hidden;
}

.org-header__arw-img {
    display: block;
    width: 6px;
    height: 10px;
    object-fit: contain;
    transform: rotate(90deg);
    transition: transform 0.2s ease;
}

.org-header__arw-img--open {
    display: none;
}

.org-header__link--pulldown.is-open .org-header__arw-img--default {
    display: none;
}

.org-header__link--pulldown.is-open .org-header__arw-img--open {
    display: block;
    transform: rotate(-90deg) scaleY(-1);
}

.org-header__pulldown {
    position: absolute;
    top: calc(100% + 20px);
    left: 50%;
    z-index: 10;
    display: none;
    min-width: 171px;
    padding: 40px;
    background-color: var(--org-header-white);
    box-shadow: var(--org-header-shadow);
    transform: translateX(-50%);
}

.org-header__pulldown.is-open {
    display: block;
}

.org-header__pulldown-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
    margin: 0;
    padding: 0;
    list-style: none;
}

.org-header__pulldown-item {
    width: 100%;
    margin: 0;
    padding: 0;
}

.org-header__pulldown-link {
    display: block;
    overflow: hidden;
    color: var(--org-header-main);
    font-size: 13px;
    font-weight: 500;
    line-height: 1;
    text-decoration: none;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.org-header__pulldown-link:hover {
    color: var(--org-header-point);
}

.org-header__contact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 45px;
    padding: 17px 24px;
    border: 1px solid var(--org-header-main);
    background-color: var(--org-header-main);
    color: var(--org-header-white);
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    transition: background-color 0.25s ease, color 0.25s ease;
}

.org-header__contact:hover {
    background-color: var(--org-header-white);
    color: var(--org-header-main);
}

.org-header__menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
}

.org-header__menu-btn-line {
    display: block;
    width: 22px;
    height: 2px;
    background-color: var(--org-header-main);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.org-header__menu-btn.is-open .org-header__menu-btn-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.org-header__menu-btn.is-open .org-header__menu-btn-line:nth-child(2) {
    opacity: 0;
}

.org-header__menu-btn.is-open .org-header__menu-btn-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media screen and (max-width: 959px) {
    .org-header {
        height: 72px;
    }

    .org-header__inner {
        padding: 16px 16px 16px 20px;
    }

    .org-header__logo-keiai {
        font-size: 22px;
    }

    .org-header__logo-no,
    .org-header__logo-sub {
        font-size: 14px;
    }

    .org-header__menu-btn {
        display: inline-flex;
    }

    .org-header__nav {
        position: absolute;
        top: 72px;
        right: 0;
        left: 0;
        display: none;
        background-color: var(--org-header-white);
        border-bottom: 1px solid var(--org-header-border);
        box-shadow: var(--org-header-shadow);
    }

    .org-header__nav.is-open {
        display: block;
    }

    .org-header__list {
        flex-direction: column;
        gap: 0;
        align-items: stretch;
        padding: 8px 0 20px;
    }

    .org-header__item {
        border-top: 1px solid rgba(126, 126, 126, 0.35);
    }

    .org-header__link {
        width: 100%;
        justify-content: space-between;
        padding: 18px 20px;
    }

    .org-header__pulldown {
        position: static;
        display: none;
        min-width: 0;
        padding: 0 20px 16px;
        box-shadow: none;
        transform: none;
    }

    .org-header__pulldown.is-open {
        display: block;
    }

    .org-header__pulldown-list {
        gap: 16px;
        padding-left: 8px;
    }

    .org-header__item--contact {
        padding: 16px 20px 4px;
        border-top: 1px solid rgba(126, 126, 126, 0.35);
    }

    .org-header__contact {
        width: 100%;
    }
}


/*---------------------------------------------------
追従フロート
-----------------------------------------------------*/
.float__contents {
    position: fixed;
    top: 30%;
    right: 20px;
    z-index: 9;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    transform: translateY(-50%);
}

.float__btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    width: 60px;
    padding: 15px 0;
    overflow: visible;
    font-family: "Noto Sans JP", "Zen Kaku Gothic New", sans-serif;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.05em;
    text-decoration: none;
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

.float__btn:hover {
    opacity: 1;
}

.float__btn-shape {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: block;
    width: 100%;
    height: 100%;
    overflow: visible;
    pointer-events: none;
}

.float__btn-shape path {
    transition: fill 0.25s ease, stroke 0.25s ease;
    stroke-width: 3px;
    vector-effect: non-scaling-stroke;
    paint-order: stroke fill;
}

.float__btn-txt {
    position: relative;
    z-index: 1;
    transition: color 0.25s ease;
    font-family: "Noto Sans JP", sans-serif;
    letter-spacing: 3px;
    padding-right: 2px;
}

.float__btn--member {
    height: 148px;
    color: #ffffff;
}

.float__btn--member .float__btn-shape path {
    fill: #071423;
    stroke: #071423;
}

.float__btn--member:hover {
    color: #071423;
}

.float__btn--member:hover .float__btn-shape path {
    fill: #ffffff;
    stroke: #071423;
}

.float__btn--login {
    height: 112px;
    color: #071423;
}

.float__btn--login .float__btn-shape path {
    fill: #ffffff;
    stroke: #071423;
}

.float__btn--login:hover {
    color: #ffffff;
}

.float__btn--login:hover .float__btn-shape path {
    fill: #071423;
    stroke: #071423;
}

