@charset "UTF-8";

/*///////////////////// font-face 読み込み例 ///////////////////////////*/
/*Zen Old Mincho 400*/
@font-face {
    font-family: 'Zen Old Mincho';
    src: url(/fonts/ZenOldMincho-Regular.ttf);
    font-weight: 400;
    font-display: swap;
}
/*Zen Old Mincho 500*/
@font-face {
    font-family: 'Zen Old Mincho';
    src: url(/fonts/ZenOldMincho-Medium.ttf);
    font-weight: 500;
    font-display: swap;
}
/*Zen Old Mincho 600*/
@font-face {
    font-family: 'Zen Old Mincho';
    src: url(/fonts/ZenOldMincho-SemiBold.ttf);
    font-weight: 600;
    font-display: swap;
}
/*Zen Old Mincho 700*/
@font-face {
    font-family: 'Zen Old Mincho';
    src: url(/fonts/ZenOldMincho-Bold.ttf);
    font-weight: 700;
    font-display: swap;
}

/*Playfair Display 400*/
@font-face {
    font-family: 'Playfair Display';
    src: url(/fonts/PlayfairDisplay-Regular.ttf);
    font-weight: 400;
    font-display: swap;
}
/*Playfair Display 500*/
@font-face {
    font-family: 'Playfair Display';
    src: url(/fonts/PlayfairDisplay-Medium.ttf);
    font-weight: 500;
    font-display: swap;
}
/*Playfair Display 700*/
@font-face {
    font-family: 'Playfair Display';
    src: url(/fonts/PlayfairDisplay-Bold.ttf);
    font-weight: 700;
    font-display: swap;
}
/*///////////////////// font-face 読み込み例 ///////////////////////////*/

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

.org-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9;
    background-color: transparent;
    transition: background-color 0.3s ease;
}

.org-header.is-scrolled,
.org-header:not(.is-top) {
    background-color: #231815;
}

.org-header * {
    font-family: 'Zen Old Mincho', sans-serif;
    font-weight: 500;
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 70px;
    margin: 0 auto;
    padding: 0 0px 0 0px;
}

.org-header.is-top:not(.is-scrolled) .header__inner {
    justify-content: start;
}

.org-under-header {
    position: sticky;
    top: 0;
}

.header__logo {
    flex-shrink: 0;
}

.header__logo-wrap {
    margin: 0;
}

.header__logo-link {
    display: block;
    padding: 0;
    line-height: 0;
}

.header__logo-link img {
    display: block;
    width: auto;
    height: auto;
    max-width: 348px;
    max-height: 70px;
    padding: 0;
}
.header__logo-link:hover {
    opacity:1;
}

.header__right {
    display: flex;
    align-items: center;
    height: 70px;
    flex-shrink: 0;
    gap: 23px;
}

.org-header.is-top:not(.is-scrolled) .header__right {
    display: none;
}

.header__nav-list {
    display: flex;
    align-items: center;
    gap: 24px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.header__nav-link {
    display: block;
    position: relative;
    padding-bottom: 4px;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 1.4px;
    text-decoration: none;
    white-space: nowrap;
}

.header__nav-link::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 1px;
    background-color: #FFFFFF;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.3s ease;
}

.header__nav-link:hover::after {
    transform: scaleX(1);
}

.header__nav-item--dropdown {
    position: relative;
}

.header__nav-toggle {
    padding: 0 0 4px;
    border: none;
    background: transparent;
    cursor: pointer;
}

.header__nav-item--dropdown:hover .header__nav-link::after,
.header__nav-item--dropdown.is-open .header__nav-link::after {
    transform: scaleX(1);
}

.header__nav-dropdown {
    position: absolute;
    top: 18px;
    left: 50%;
    z-index: 10;
    display: none;
    min-width: 180px;
    margin: 0;
    padding: 26px 0 8px;
    list-style: none;
    background-color: #231815;
    box-shadow: 0 8px 24px rgba(35, 24, 21, 0.25);
    transform: translateX(-50%);
}

.header__nav-item--dropdown:hover .header__nav-dropdown,
.header__nav-item--dropdown.is-open .header__nav-dropdown {
    display: block;
}

.header__nav-dropdown-item {
    margin: 0;
}

.header__nav-dropdown-link {
    display: block;
    padding: 10px 20px;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 1.4px;
    text-decoration: none;
    white-space: nowrap;
    transition: background-color 0.2s ease;
}

.header__nav-dropdown-link:hover {
    background-color: rgba(255, 255, 255, 0.12);
}

.header__utility {
    display: flex;
    align-items: stretch;
    gap: 1px;
    height: 100%;
    /* margin-left: 25px; */
}

.header__utility-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    height: 100%;
    padding: 0 10px 2px;
    background-color: rgba(255, 255, 255, 0.15);
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 1.4px;
    text-decoration: none;
    white-space: nowrap;
}

.header__utility-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    line-height: 0;
}

.header__utility-icon svg {
    display: block;
}

.header__utility-text {
    display: block;
}

.header__cta {
    display: flex;
    align-items: center;
    gap: 10px;
    height: 100%;
}

.header__cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 0 16px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 1.4px;
    text-decoration: none;
    white-space: nowrap;
    color: #fff;
    background-color: rgba(255, 255, 255, 0.15);
}

.header__cta-btn--contact {
    background-color: rgba(255, 255, 255, 0.15);
}

.header__cta-btn--reservation {
    background-color: rgba(255, 255, 255, 0.3);
}