@charset "UTF-8";
/* Header layout refresh — single-row PC, compact mobile */

:root {
  --kg-header-h-pc: 72px;
  --kg-header-h-mobile: 56px;
  --kg-header-accent: 3px;
  --kg-header-logo-w: 200px;
}

/* ---- Base structure ---- */
#header.header--refresh {
  top: var(--kg-header-accent);
  background-color: var(--kg-white, #fff);
  border-bottom: 1px solid rgba(15, 39, 68, 0.08);
}

#header.header--refresh .header-top {
  position: relative;
  width: 100%;
}

#header.header--refresh .header-bar {
  display: none !important;
}

#logo-name-2 {
  display: none !important;
}

/* ---- Mobile ---- */
@media screen and (max-width: 750px) {
  #header.header--refresh.header--frt,
  #header.header--refresh {
    height: var(--kg-header-h-mobile) !important;
    overflow: visible !important;
  }

  #header.header--refresh .header-top {
    display: flex;
    align-items: center;
    height: var(--kg-header-h-mobile);
    padding-right: var(--kg-header-h-mobile);
    position: relative;
    z-index: 2;
  }

  #header.header--refresh .header-head {
    flex: 1;
    min-width: 0;
    height: var(--kg-header-h-mobile) !important;
    padding: 0 12px !important;
    background: transparent !important;
    border: none !important;
  }

  #header.header--refresh .header-logo {
    width: auto !important;
    max-width: calc(100vw - 80px);
  }

  #header.header--refresh .header-logo a img {
    width: auto;
    max-height: 40px;
    height: auto;
  }

  #header.header--refresh #logo-name-1 {
    display: none !important;
  }

  #header.header--refresh .header-content {
    position: static;
    width: 0 !important;
    height: 0 !important;
    padding: 0 !important;
    overflow: visible;
  }

  #header.header--refresh .header-drawer {
    position: fixed;
    top: calc(var(--kg-header-accent) + var(--kg-header-h-mobile));
    left: 0;
    width: 100%;
    height: calc(100vh - var(--kg-header-h-mobile) - var(--kg-header-accent));
    height: calc(100svh - var(--kg-header-h-mobile) - var(--kg-header-accent));
    background-color: var(--kg-cream, #f8f6f2);
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    pointer-events: none;
    transition: opacity 0.25s, visibility 0.25s;
    z-index: 8887;
  }

  #header.header--refresh .header-drawer.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    height: calc(100vh - var(--kg-header-h-mobile) - var(--kg-header-accent)) !important;
    height: calc(100svh - var(--kg-header-h-mobile) - var(--kg-header-accent)) !important;
    min-height: 0 !important;
  }

  #header.header--refresh .header-drawer-scroll {
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    padding: 24px 0 calc(40px + env(safe-area-inset-bottom, 0px)) !important;
  }

  #header.header--refresh .header-drawer-in {
    width: 90vw !important;
    margin: 0 auto;
  }

  #header.header--refresh .header-nav {
    width: 100%;
  }

  #header.header--refresh .header-inquiry {
    margin: 28px auto 0 !important;
    width: 100% !important;
  }

  #header.header--refresh .toggle {
    top: 0 !important;
    right: 0 !important;
    width: var(--kg-header-h-mobile) !important;
    height: var(--kg-header-h-mobile) !important;
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
    z-index: 10002 !important;
    position: absolute !important;
    pointer-events: auto !important;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }

  #header.header--refresh .toggle > span:not(.toggle-text) {
    width: 22px !important;
    height: 2px !important;
  }

  #header.header--refresh .toggle > span:not(.toggle-text):nth-of-type(1) {
    top: 18px !important;
  }

  #header.header--refresh .toggle > span:not(.toggle-text):nth-of-type(2) {
    top: 27px !important;
  }

  #header.header--refresh .toggle > span:not(.toggle-text):nth-of-type(3) {
    top: 36px !important;
  }

  #header.header--refresh .toggle.is-active > span:not(.toggle-text):nth-of-type(1),
  #header.header--refresh .toggle.is-active > span:not(.toggle-text):nth-of-type(3) {
    top: 27px !important;
  }

  #header.header--refresh .toggle-text {
    bottom: 8px !important;
    font-size: 9px !important;
    letter-spacing: 0.08em;
  }

  .contents--frt {
    padding-top: calc(var(--kg-header-h-mobile) + var(--kg-header-accent)) !important;
  }

  #header.header--refresh.is-open .toggle {
    position: fixed !important;
    top: var(--kg-header-accent) !important;
    right: 0 !important;
    z-index: 10003 !important;
    background-color: var(--kg-cream, #f8f6f2);
  }

  #header.header--refresh.is-open .header-drawer {
    z-index: 8886;
  }
}

/* ---- Desktop ---- */
@media screen and (min-width: 751px) {
  #header.header--refresh.header--frt,
  #header.header--refresh {
    display: block !important;
    height: var(--kg-header-h-pc) !important;
  }

  #header.header--refresh .header-top {
    display: grid;
    grid-template-columns: var(--kg-header-logo-w) minmax(0, 1fr);
    align-items: stretch;
    height: var(--kg-header-h-pc);
    max-width: 1440px;
    margin: 0 auto;
  }

  #header.header--refresh .header-head {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: var(--kg-header-logo-w) !important;
    height: var(--kg-header-h-pc) !important;
    padding: 0 16px !important;
    background-color: var(--kg-navy, #0f2744) !important;
    border-right: 3px solid var(--kg-gold, #c9a227) !important;
    flex-shrink: 0;
  }

  #header.header--refresh .header-logo {
    width: 100% !important;
    text-align: center;
  }

  #header.header--refresh .header-logo a img {
    max-height: 44px;
    width: auto;
    margin: 0 auto;
  }

  #header.header--refresh #logo-name-1 {
    display: none !important;
  }

  #header.header--refresh .header-content {
    display: flex !important;
    align-items: center;
    width: 100% !important;
    padding: 0 20px 0 0 !important;
    padding-top: 0 !important;
    min-width: 0;
  }

  #header.header--refresh .header-drawer {
    position: static !important;
    width: 100% !important;
    padding: 0 !important;
    padding-right: 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
    overflow: visible !important;
  }

  #header.header--refresh .header-drawer-scroll,
  #header.header--refresh .header-drawer-in {
    height: auto !important;
    overflow: visible !important;
    padding: 0 !important;
    width: 100% !important;
    margin: 0 !important;
  }

  #header.header--refresh .header-drawer-in {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: var(--kg-header-h-pc);
  }

  #header.header--refresh .header-nav {
    flex: 1 1 auto;
    min-width: 0;
  }

  #header.header--refresh .navi {
    display: flex !important;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    height: var(--kg-header-h-pc) !important;
    gap: 0;
  }

  #header.header--refresh .navi > li:after {
    display: none;
  }

  #header.header--refresh .navi-menu {
    position: relative;
    display: flex;
    align-items: center;
    height: var(--kg-header-h-pc) !important;
    padding: 0 14px !important;
    white-space: nowrap;
  }

  #header.header--refresh .navi-menu:after {
    display: none !important;
  }

  #header.header--refresh .navi-menu-jp {
    font-size: 13px !important;
    font-weight: 600;
    color: var(--kg-navy, #0f2744);
    letter-spacing: 0.04em;
    transition: color 0.2s;
  }

  #header.header--refresh .navi-menu-en {
    display: none !important;
  }

  #header.header--refresh .navi > li:first-child .navi-menu-jp {
    display: block !important;
  }

  #header.header--refresh .navi-menu:hover .navi-menu-jp,
  #header.header--refresh .navi-menu:focus-within .navi-menu-jp {
    color: var(--kg-gold, #c9a227);
  }

  #header.header--refresh .navi-menu::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--kg-gold, #c9a227);
    transform: translateX(-50%);
    transition: width 0.2s;
  }

  #header.header--refresh .navi-menu:hover::before,
  #header.header--refresh .navi-menu:focus-within::before {
    width: calc(100% - 20px);
  }

  /* CTA cluster */
  #header.header--refresh .header-inquiry {
    position: static !important;
    display: flex !important;
    align-items: center;
    flex-shrink: 0;
    gap: 10px;
    top: auto !important;
    right: auto !important;
    width: auto !important;
  }

  #header.header--refresh .header-inquiry-tel.none--sp {
    display: block;
    text-align: right;
    line-height: 1.2;
  }

  #header.header--refresh .header-inquiry-tel-ttl {
    display: none !important;
  }

  #header.header--refresh .header-inquiry-area {
    font-size: 10px;
    color: var(--kg-text-muted, #5a6a7a);
    letter-spacing: 0.02em;
    margin: 0;
  }

  #header.header--refresh .header-inquiry-phone {
    margin: 0;
    font-family: var(--font-serif, "Noto Serif JP", serif);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.1;
  }

  #header.header--refresh .header-inquiry-phone a {
    color: var(--kg-navy, #0f2744);
    transition: color 0.2s;
  }

  #header.header--refresh .header-inquiry-phone a:hover {
    color: var(--kg-gold, #c9a227);
  }

  #header.header--refresh .header-inquiry-num:before {
    display: none !important;
  }

  #header.header--refresh .header-inquiry-num p:nth-child(1):not(.header-inquiry-area) {
    display: none;
  }

  #header.header--refresh .header-inquiry-num p:nth-child(2):not(.header-inquiry-phone) {
    display: none;
  }

  #header.header--refresh .header-inquiry-time {
    display: flex;
    justify-content: flex-end;
    gap: 4px;
    margin: 2px 0 0;
    font-size: 10px;
    color: var(--kg-text-muted, #5a6a7a);
  }

  #header.header--refresh .header-inquiry-time dt,
  #header.header--refresh .header-inquiry-time dd {
    margin: 0;
    font-size: 10px !important;
    font-weight: 400;
  }

  #header.header--refresh .header-inquiry-reserve {
    position: static !important;
    top: auto !important;
    margin: 0 !important;
    width: auto !important;
    order: unset !important;
  }

  #header.header--refresh .header-inquiry-reserve a,
  #header.header--refresh .header-inquiry-cta-btn {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    justify-content: center;
    gap: 6px;
    height: 42px !important;
    min-width: 148px;
    padding: 0 14px 0 38px !important;
    border-width: 2px !important;
    border-radius: 4px !important;
    box-shadow: 0 2px 8px rgba(15, 39, 68, 0.15) !important;
  }

  #header.header--refresh .header-inquiry-reserve a::before,
  #header.header--refresh .header-inquiry-cta-btn::before {
    content: "";
    position: absolute;
    top: 50% !important;
    left: 12px !important;
    width: 18px !important;
    height: 20px !important;
    background: url(../img/common/loupe-wh.svg) center / contain no-repeat;
    transform: translateY(-50%) !important;
    display: block !important;
  }

  #header.header--refresh .header-inquiry-cta-btn {
    position: relative;
  }

  #header.header--refresh .header-inquiry-cta-btn__icon {
    display: none;
  }

  #header.header--refresh .header-inquiry-cta-btn__body {
    gap: 6px;
  }

  #header.header--refresh .header-inquiry-reserve a p:nth-child(1),
  #header.header--refresh .header-inquiry-cta-btn__badge {
    margin: 0 !important;
    padding: 2px 6px !important;
    font-size: 10px !important;
    line-height: 1.2;
    white-space: nowrap;
  }

  #header.header--refresh .header-inquiry-reserve a p:nth-child(2),
  #header.header--refresh .header-inquiry-cta-btn__label {
    font-size: 13px !important;
    white-space: nowrap;
  }

  #header.header--refresh .header-inquiry-btn {
    display: flex !important;
    flex-direction: column !important;
    gap: 4px !important;
    margin: 0 !important;
    width: auto !important;
    order: unset !important;
    padding: 0 !important;
    background: none !important;
    border: none !important;
    box-shadow: none !important;
  }

  #header.header--refresh .header-inquiry-btn a,
  #header.header--refresh .header-inquiry-contact-btn {
    width: auto !important;
    min-width: 108px;
    height: 19px !important;
    min-height: 0 !important;
    padding: 0 8px 0 24px !important;
    border-width: 1px !important;
    border-radius: 3px !important;
    box-shadow: none !important;
    flex-direction: row !important;
  }

  #header.header--refresh .header-inquiry-btn a:nth-child(n+2) {
    margin-top: 0 !important;
  }

  #header.header--refresh .header-inquiry-btn a::before,
  #header.header--refresh .header-inquiry-contact-btn::before {
    left: 8px !important;
    display: block !important;
  }

  #header.header--refresh .header-inquiry-contact-btn__icon {
    display: none;
  }

  #header.header--refresh .header-inquiry-btn a span,
  #header.header--refresh .header-inquiry-contact-btn span:last-child {
    font-size: 10px !important;
  }

  #header.header--refresh .header-inquiry-btn--mail.header-inquiry-contact-btn::before {
    width: 14px !important;
    height: 10px !important;
    background: url(../img/common/mail-wh.svg) center / contain no-repeat;
  }

  #header.header--refresh .header-inquiry-btn--line.header-inquiry-contact-btn::before {
    width: 16px !important;
    height: 14px !important;
    background: url(../img/common/chat-wh.svg) center / contain no-repeat;
  }

  #header.header--refresh .header-inquiry {
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    overflow: visible !important;
  }

  #header.header--refresh .toggle {
    display: none !important;
  }

  .contents,
  .contents--frt,
  .contents--sub {
    padding-top: calc(var(--kg-header-h-pc) + var(--kg-header-accent)) !important;
  }
}

@media screen and (min-width: 1200px) {
  :root {
    --kg-header-logo-w: 220px;
  }

  #header.header--refresh .navi-menu {
    padding: 0 18px !important;
  }

  #header.header--refresh .navi-menu-jp {
    font-size: 14px !important;
  }

  #header.header--refresh .header-inquiry-phone {
    font-size: 24px;
  }

  #header.header--refresh .header-inquiry-reserve a {
    min-width: 160px;
    height: 44px !important;
  }
}

@media screen and (min-width: 1441px) {
  #header.header--refresh .header-top {
    max-width: none;
  }
}

/* Mid-width: hide mail/line to save space */
@media screen and (min-width: 751px) and (max-width: 1100px) {
  #header.header--refresh .header-inquiry-btn {
    display: none !important;
  }

  #header.header--refresh .header-inquiry-area {
    display: none;
  }

  #header.header--refresh .navi-menu {
    padding: 0 10px !important;
  }

  #header.header--refresh .navi-menu-jp {
    font-size: 12px !important;
  }
}

@media screen and (min-width: 751px) and (max-width: 900px) {
  #header.header--refresh .header-inquiry-tel.none--sp {
    display: none !important;
  }
}
