@charset "UTF-8";

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

.org-header * {
    font-family: 'Noto Sans JP', sans-serif;
    box-sizing: border-box;
}

.org-header {
    background-color: #fff;
    position: sticky;
    transition: background-color 0.3s ease;
}
.org-header.is-scrolled {
    background-color: #fff;
}
.org-under-header {
    position: sticky;
    background: #fff;
}

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

.org-header__logo {
    display: block;
    width: 210px;
    height: 50px;
}

.org-header__logo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.org-header__right {
    display: flex;
    align-items: center;
    gap: 30px;
    background: #fff;
}

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

.org-header-nav__link {
    color: #333;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
}

.org-header-btn-list {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

.org-header-btn {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    height: 80px;
    padding: 0 13px 2px;
    border-left: 1px solid rgba(7, 20, 69, 0.4);
    color: #071445;
    text-decoration: none;
}
.org-header-btn:hover .org-header-btn__text {
    color: #FE6601;
}

.org-header-btn:hover,
.org-header-nav__link:hover {
    color: #FE6601;
    opacity: 1;
}

.org-header-btn__icon {
    display: block;
    width: 34px;
    height: 34px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.org-header-btn--favorite .org-header-btn__icon {
    background-image: url(/images/top/header_favorite.svg);
}

.org-header-btn--favorite:hover .org-header-btn__icon {
    background-image: url(/images/top/header_favorite_on.svg);
}
.org-header-btn--history .org-header-btn__icon {
    background-image: url(/images/top/header_history.svg);
}

.org-header-btn--history:hover .org-header-btn__icon {
    background-image: url(/images/top/header_history_on.svg);
}

.org-header-btn--contact {
    border-left: none;
    padding: 0 10px 2px;
    color: #fff;
    background: linear-gradient(190deg, #F9CA11 -23.63%, #F4AA0C 100.24%);
}

.org-header-btn--contact .org-header-btn__icon {
    background-image: url(/images/top/header_contact.svg);
}

.org-header-btn--contact .org-header-btn__text {
    width: auto;
    color: #fff;
    white-space: nowrap;
}

.org-header-btn--contact:hover {
    color: #fff;
    opacity: 0.85;
}

.org-header-btn--contact:hover .org-header-btn__text {
    color: #fff;
}

.org-header-btn__text {
    width: 60px;
    color: #071445;
    font-size: 12px;
    font-weight: 500;
    line-height: 1;
    text-align: center;
}

.org-header-btn__badge:empty {
    display: none;
}

.org-header-btn__badge:not(:empty) {
    position: absolute;
    top: 12px;
    right: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    border-radius: 9px;
    background-color: #e60012;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
}
