@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;
}
/*Roboto 400*/
@font-face {
    font-family: 'Roboto';
    src: url(/fonts/Roboto-Regular.ttf);
    font-weight: 400;
    font-display: swap;
}
/*Roboto 500*/
@font-face {
    font-family: 'Roboto';
    src: url(/fonts/Roboto-Medium.ttf);
    font-weight: 500;
    font-display: swap;
}
/*Roboto 700*/
@font-face {
    font-family: 'Roboto';
    src: url(/fonts/Roboto-Bold.ttf);
    font-weight: 700;
    font-display: swap;
}
/*///////////////////// font-face 読み込み例 ///////////////////////////*/

/* =========================================
   Header Styles
   ========================================= */

.l-header {
    position: relative;
    width: 100%;
    height: 120px;
    background-color: #FFFFFF;
    z-index: 9;
}
.l-header * {
    font-family: 'Noto Sans JP', sans-serif;
}
.l-header.is-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.l-header__inner {
    position: relative;
    width: 1140px;
    height: 120px;
    margin: 0 auto;
    padding: 12px 0;
}
.l-header__inner-top {
    display: flex;
    justify-content: space-between;
}
/* Logo Area */
.l-header__logo {
    display: flex;
    align-items: center;
    gap: 0;
}

.l-header__logo-link {
    display: block;
    /* text-decoration: none; */
    width: 204px;
    height: 28px;
}
.l-header__logo-link a:hover {
    opacity: 1;
}
.l-header__logo-link img {
    /* display: block; */
    width: 100%;
    height: 100%;
}

.l-header__logo-text {
    /* margin-left: 0; */
    /* position: absolute; */
    /* left: 245px; */
    /* top: 15px; */
    margin-left: 18px;
}

.l-header__logo-text-main {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
    color: #004187;
    margin: 0;
}

.l-header__logo-text-sub {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
    color: #333333;
    margin: 0;
}

/* Global Navigation */
.l-header__gnavi {
    margin-top: 10px;
    /* position: absolute; */
    /* left: 390px; */
    /* top: 80px; */
}

.l-header__gnavi-list {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
    height: 29px;
}

.l-header__gnavi-item {
    position: relative;
    width: 139px;
}

.l-header__gnavi-item--search {
    position: relative;
}

.l-header__gnavi-link {
    display: block;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.8;
    letter-spacing: 0.1em;
    color: #333333;
    text-align: center;
    text-decoration: none;
    width: 139px;
}

.l-header__gnavi-link:hover {
    color: #004187;
}

/* Search Accordion */
.l-header__search-accordion {
    position: absolute;
    top: 100%;
    left: -26px;
    right: 0;
    margin: auto;
    width: 190px;
    background-color: #004187;
    border-radius: 10px;
    padding: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    z-index: 1001;
}

.l-header__gnavi-item--search.is-active .l-header__search-accordion {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.l-header__search-accordion-list {
    list-style: none;
    margin: 0;
    /* padding: 8px 0; */
}

.l-header__search-accordion-item {
    margin: 0;
}
.l-header__search-accordion-item:not(:last-of-type) {
    margin-bottom: 3px;
}
.l-header__search-accordion-link {
    display: block;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.2;
    color: #004187;
    text-align: center;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 5px;
    background: #FFFFFF;
}
.l-header__search-accordion-link:hover {
    opacity: 1;
    background: #5BA3D3;
    color: #FFFFFF;
}

/* Button List */
.l-header__btn-list {
    display: flex;
    align-items: center;
    gap: 20px;
    height: 58px;
}

.l-header__btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    position: relative;
}

.l-header__btn--reservation {
    width: 56px;
    height: 46px;
}

.l-header__btn--contact {
    width: 84px;
    height: 46px;
}

.l-header__btn--line {
    width: 87px;
    height: 46px;
}

.l-header__btn--favorite {
    width: 70px;
    height: 46px;
}

.l-header__btn--history {
    width: 56px;
    height: 46px;
}

.l-header__btn--login {
    width: 130px;
    height: 58px;
    background-color: #FFF887;
    border-radius: 30px;
    padding: 7px 16px 0 20px;
    flex-direction: column;
    justify-content: flex-start;
    gap: 3px;
}

.l-header__btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    margin-bottom: 5px;
}

.l-header__btn--login .l-header__btn-icon {
    margin-bottom: 0;
    width: 19.66px;
    height: 19.66px;
}

.l-header__btn-icon img {
    display: block;
    width: 100%;
    height: 100%;
}

.l-header__btn-text {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: #333333;
    text-align: center;
}

.l-header__btn--login .l-header__btn-text {
    font-weight: 500;
    letter-spacing: 0.1em;
    color: #004187;
    text-align: left;
}

.l-header__btn:hover .l-header__btn-text {
    color: #004187;
}

.l-header__btn--login:hover {
    background-color: #FFEB3B;
}
