@charset "UTF-8";

.l-header {
    width: 100%;
    background-color: #fff;
    z-index: 7;
    position: sticky;
    top: 0;
    border-bottom: 2px solid #980030;
}
.l-header * {
    font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
}
.header__inner {
    width: 1140px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}
.header__logo {
    width: 298px;
    height: 80px;
    margin-top: 9px;
}
.header__logo img {
    max-width: 100%;
    width: 100%;
    max-height: 100%;
    height: 100%;
    object-fit: cover;
}
.header__logo-link {
    width: 100%;
    height: 100%;
    display: flex;
}
.header__right {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: flex-end;
    padding-block: 10px 3px;
}
.header__right-top {
    display: flex;
    gap: 34px;
}
.header__overview {
    display: flex;
    flex-direction: column;
    gap: 7px;
    align-items: flex-end;
}
.header__time-box {
    display: flex;
    gap: 12px;
}
.header__time {
    color: #263238;
    font-size: 12px;
    font-weight: 400;
    line-height: 1;
}
.header__tel-box {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
[class*="header__tel--"] {
    display: flex;
    gap: 5px;
}
.header__tel-title-box {
    width: 71px;
    height: 20px;
    display: flex;
    justify-content: center;
    padding-top: 4px;
}
.header__tel--honten .header__tel-title-box {
    background: #333;
}
.header__tel--chikugo .header__tel-title-box {
    background: #8E222F;
}
.header__tel-title {
    color: #FFF;
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.242em;
    font-family: Meiryo;
}
.header__tel-number {
    color: #333;
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    display: flex;
    gap: 5px;
    position: relative;
    font-family: Meiryo;
    padding-top: 1px;
}
.header__tel-number::before {
    content: "";
    width: 15px;
    height: 16px;
}
.header__tel--honten .header__tel-number::before {
    background: url(/images/top/tel__icon-honten.svg) no-repeat center / cover;
}
.header__tel--chikugo .header__tel-number::before {
    background: url(/images/top/tel__icon-chikugo.svg) no-repeat center / cover;
}
.header__favorite {
    width: 40px;
    height: 40px;
    background: var(--main-heighlight-color);
    border-radius: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    margin-right: 15px;
}
.header__favorite:hover {
    background: var(--main-light-color);
}
.header__navi-list {
    display: flex;
    align-items: center;
}
.header__navi-item {
    display: flex;
    gap: 12px;
    align-items: center;
}
.header__navi-link {
    color: #333;
    font-size: 16px;
    line-height: 1.5;
    font-weight: bold;
}
.header__navi-link:hover {
    color: #980030;
    opacity: 1;
}
.header__gnavi-item--search {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: none;
    padding: 0;
    background: none;
    cursor: pointer;
    font: inherit;
    color: inherit;
    text-decoration: none;
    position: relative;
}
.header__gnavi-item--search:hover .header__search-popup, 
.header__search-popup:hover,
.header__gnavi-item--search:focus-within {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.header__gnavi-item--search::after {
    content: "";
    position: absolute;
    top: 19px;
    left: 40px;
    width: 90px;
    height: 12px;
    transform: translateX(-50%);
}

.header__search-popup {
    position: absolute;
    top: 29px;
    left: -13px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 6px 10px;
    width: 100px;
    height: 124px;
    background: #FFF;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    align-items: center;
}
.header__search-item {
    position: relative;
    width: fit-content;
    height: fit-content;
}
.header__search-link {
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    color: #333;
    text-align: center;
    font-size: 14px;
    line-height: 1.5;
    position: relative;
    font-weight: bold;
}
.org-header__gnavi-link:hover {
    opacity: 1;
}
.header__search-link:hover {
    color: #980030;
}
.header__search-link::before {
    content: "";
    position: absolute;
    background: #F5E6EA;
    width: 80px;
    height: 1px;
    bottom: -3px;
}
.header__search-item:last-child .header__search-link::before {
    display: none;
}
.header__gnavi-item--search .header__navi-link::after {
    content: "";
    background: url(/images/top/header__search-arrow.svg) no-repeat center / cover;
    width: 8px;
    height: 6px;
    display: block;
}
.header__gnavi-item--search .header__navi-link {
    display: flex;
    gap: 5px;
    align-items: center;
}
