/* header.css — ヘッダー・サイドバー・モバイルナビ */
/* ── LEFT FIXED SIDEBAR ── */
.ly_sideLeft {
  position: fixed;
  left: 0; top: 0; bottom: 0;
  width: 36px;
  z-index: var(--z-sidebar);
  background: var(--orange);
  transition: width .45s cubic-bezier(.22,.61,.36,1), z-index 0s .45s;
  overflow: hidden;
  cursor: pointer;
}
.ly_sideLeft:hover {
  width: 320px;
  z-index: var(--z-sideHover);
  box-shadow: 4px 0 32px rgba(0,0,0,.3);
  transition: width .45s cubic-bezier(.22,.61,.36,1), z-index 0s 0s;
}
.ly_sideLeft__text {
  position: absolute;
  top: 0; left: 0;
  width: 36px; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  writing-mode: vertical-rl;
  font-family: var(--ff-sans);
  /* font-size: 0.625rem; */
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .2em;
  /* color: rgba(255,255,255,.75); */
  color: #fff;
  line-height: 1;
  white-space: nowrap;
  user-select: none;
  transition: opacity .2s;
}
.ly_sideLeft:hover .ly_sideLeft__text { opacity: 0; pointer-events: none; }

/* panel */
.ly_sideLeft__panel {
  position: absolute;
  top: 0; left: 0;
  width: 320px; height: 100%;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transition: opacity .35s .15s;
  overflow-y: auto;
}
.ly_sideLeft:hover .ly_sideLeft__panel { opacity: 1; }

.ly_sideLeft__photo {
  position: relative;
  width: 100%;
  height: 160px;
  flex-shrink: 0;
  overflow: hidden;
}
.ly_sideLeft__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 6s ease-out;
}
.ly_sideLeft:hover .ly_sideLeft__photo img { transform: scale(1.08); }
.ly_sideLeft__photo-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 6px 16px;
  background: linear-gradient(transparent, rgba(0,0,0,.6));
  font-family: var(--ff-sans);
  font-size: 0.625rem;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  letter-spacing: .06em;
}

.ly_sideLeft__content {
  flex: 1;
  padding: 20px 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ly_sideLeft__catch {
  font-family: var(--ff-serif);
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.6;
  color: #fff;
  letter-spacing: .04em;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,.15);
  transform: translateY(8px);
  transition: transform .4s .25s cubic-bezier(.22,.61,.36,1);
}
.ly_sideLeft:hover .ly_sideLeft__catch { transform: translateY(0); }

.ly_sideLeft__desc {
  font-family: var(--ff-sans);
  font-size: 0.75rem;
  line-height: 1.85;
  color: rgba(255,255,255,.8);
}

.side-left__section { }
.side-left__section-title {
  display: block;
  font-family: var(--ff-serif);
  font-size: 0.8125rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: .06em;
  margin-bottom: 4px;
  padding-left: 10px;
  border-left: 3px solid rgba(255,255,255,.5);
}
.side-left__section-text {
  font-family: var(--ff-sans);
  font-size: 11.5px;
  line-height: 1.8;
  color: rgba(255,255,255,.75);
}

.ly_sideLeft__points {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding-top: 4px;
}
.ly_sideLeft__point {
  display: inline-block;
  padding: 4px 10px;
  background: rgba(255,255,255,.18);
  border-radius: 20px;
  font-family: var(--ff-sans);
  font-size: 0.6875rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: .04em;
}

.ly_sideLeft__tel {
  margin-top: auto;
  text-align: center;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.15);
}
.ly_sideLeft__tel-label {
  display: block;
  font-family: var(--ff-sans);
  /* font-size: 0.6875rem; */
  font-size: .7rem;
  color: rgba(255,255,255,.9);
  margin-bottom: 4px;
}
.ly_sideLeft__tel-num {
  font-family: var(--ff-sans);
  font-size: 1.25rem;
  font-weight: 900;
  color: #fff;
  text-decoration: none;
  letter-spacing: .04em;
  transition: text-shadow .2s;
}
.ly_sideLeft__tel-num:hover { text-shadow: 0 0 12px rgba(255,255,255,.5); }
.ly_sideLeft__tel-sub {
  display: block;
  font-family: var(--ff-sans);
  /* font-size: 0.625rem; */
  font-size: .7rem;
  /* color: rgba(255,255,255,.5); */
  color: rgba(255,255,255,.9);
  margin-top: 3px;
}

/* ── RIGHT FIXED SIDEBAR ── */
.ly_sideRail {
  position: fixed;
  right: 0; top: 0; bottom: 0;
  width: 48px;
  z-index: var(--z-dropdown);
  display: flex;
  flex-direction: column;
}
.ly_sideRail__tab {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  background: none;
  padding-right: 14px;
  margin-right: -14px;
  transition: transform .3s cubic-bezier(.22,.61,.36,1), box-shadow .3s, filter .2s;
}
.ly_sideRail__tab:hover {
  transform: translateX(-10px);
  box-shadow: -6px 0 24px rgba(0,0,0,.25);
  filter: brightness(1.1);
}
.ly_sideRail__tab:hover .ly_sideRail__tab-icon svg {
  animation: sideIconShake .4s cubic-bezier(.36,.07,.19,.97) both;
}
@keyframes sideIconShake {
  0%, 100% { transform: rotate(0); }
  15% { transform: rotate(-14deg); }
  30% { transform: rotate(12deg); }
  45% { transform: rotate(-10deg); }
  60% { transform: rotate(6deg); }
  75% { transform: rotate(-2deg); }
}
.ly_sideRail__tab--contact {
  background: var(--orange);
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.ly_sideRail__tab--contact .ly_sideRail__tab-icon { color: rgba(255,255,255,.9); }
.ly_sideRail__tab--contact .ly_sideRail__tab-label { color: rgba(255,255,255,.95); }
.ly_sideRail__tab--news {
  background: var(--brown);
  border-top: 1px solid rgba(255,255,255,.08);
}
.ly_sideRail__tab--news .ly_sideRail__tab-icon { color: var(--orange-m); }
.ly_sideRail__tab--news .ly_sideRail__tab-label { color: rgba(255,255,255,.75); }
.ly_sideRail__tab-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ly_sideRail__tab-label {
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-family: var(--ff-sans);
  /* font-size: 0.625rem; */
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .18em;
}

/* ── HEADER ── */
header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  background: var(--ivory);
  border-bottom: 1px solid var(--border-l);
}
header::before {
  content: '';
  display: block;
  height: 5px;
  background: linear-gradient(90deg, var(--orange) 0%, var(--orange-m) 50%, var(--peach) 100%);
}
.ly_header_inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.bl_logo { flex-shrink: 0; display: flex; align-items: center; gap: 10px; text-decoration: none; }
.bl_logo img { height: 48px; width: auto; display: block; }
.bl_logo_text { display: flex; flex-direction: column; justify-content: center; gap: 3px; line-height: 1; height: 48px; }
.bl_logo_text_sub { font-family: 'BIZ UDPMincho', serif; font-size: 0.625rem; font-weight: 400; letter-spacing: .12em; color: #111; }
.bl_logo_text_main { font-family: 'BIZ UDPMincho', serif; font-size: 1.375rem; font-weight: 700; letter-spacing: .06em; color: #111; }
.ly_header_inner nav { display: flex; align-items: center; gap: 0; flex: 1; justify-content: flex-end; border-left: 1px solid var(--border); margin-left: 0; padding-left: 0; min-height: 28px; }
.bl_navList { list-style: none; display: flex; align-items: center; gap: 0; margin: 0; padding: 0; }
.bl_navItem { position: relative; }
.bl_navItem_trigger {
  font-family: var(--ff-sans);
  /* font-size: 0.8125rem; */
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color .2s, background .2s;
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}
.bl_navItem_trigger:hover,
.bl_navItem_trigger.is-current { color: var(--orange); background: var(--orange-ll); }
.bl_navItem_chevron {
  transition: transform .2s var(--ease-out);
  flex-shrink: 0;
  color: var(--muted);
}
.bl_navItem:hover .bl_navItem_chevron { transform: rotate(180deg); color: var(--orange); }
.bl_navItem_dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(74,34,8,.14);
  min-width: 230px;
  list-style: none;
  padding: 16px 0 8px;
  border: 1px solid var(--border-l);
  z-index: var(--z-navToggle);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .2s var(--ease-out), transform .2s var(--ease-out), visibility .2s;
}
.bl_navItem:hover .bl_navItem_dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.bl_navItem_dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  font-size: 0.8125rem;
  font-weight: 400;
  color: var(--text);
  text-decoration: none;
  transition: color .15s, background .15s;
  white-space: nowrap;
}
.bl_navItem_dropdown a::before {
  content: '';
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--border);
  flex-shrink: 0;
  transition: background .15s;
}
.bl_navItem_dropdown a:hover { color: var(--orange); background: var(--orange-ll); }
.bl_navItem_dropdown a:hover::before { background: var(--orange); }
.header-btn {
  flex-shrink: 0;
  font-family: var(--ff-sans);
  font-size: 0.8125rem;
  font-weight: 700;
  color: #fff;
  background: var(--orange);
  padding: 10px 24px;
  text-decoration: none;
  border-radius: 100px;
  transition: background .2s, transform .15s;
  box-shadow: 0 4px 16px rgba(240,120,40,.3);
}
.header-btn:hover { background: var(--orange-d); transform: translateY(-1px); }

/* ── HEADER X LINK ── */
.ly_header_x {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  text-decoration: none;
  color: var(--text);
  transition: color .2s;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
}
.ly_header_x:hover { color: var(--orange); background: var(--orange-ll); }
.ly_header_x svg { display: block; }
.ly_header_x_label {
  font-family: var(--ff-sans);
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: .02em;
  white-space: nowrap;
}


/* ── NAV TOGGLE ── */
.bl_navToggle { display: none; flex-direction: column; justify-content: space-between; width: 26px; height: 18px; background: none; border: none; cursor: pointer; padding: 0; margin-left: auto; flex-shrink: 0; }
.bl_navToggle span { display: block; width: 100%; height: 2px; background: var(--text); border-radius: 2px; transition: transform .3s var(--ease-out), opacity .2s; }
.bl_navToggle.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.bl_navToggle.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.bl_navToggle.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ── MOBILE NAV ── */
.ly_mobileNav { display: none; position: fixed; top: 64px; left: 0; right: 0; bottom: 0; background: #fff; z-index: var(--z-mobileNav); overflow-y: auto; }
.ly_mobileNav.is-open { display: block; }
.ly_mobileNav_inner { padding-bottom: 56px; }
.ly_mobileNav_section { border-bottom: 1px solid var(--border-l); }
.ly_mobileNav_sectionHead { width: 100%; background: none; border: none; padding: 0 20px; height: 58px; display: flex; align-items: center; justify-content: space-between; gap: 12px; font-family: var(--ff-sans); font-size: 0.9375rem; font-weight: 600; color: var(--text); cursor: pointer; text-align: left; transition: color .2s; }
.ly_mobileNav_sectionHead:hover { color: var(--orange); }
.ly_mobileNav_sectionHead .ly_mobileNav_chevron { flex-shrink: 0; color: var(--muted); transition: transform .3s var(--ease-out); }
.ly_mobileNav_section.is-open .ly_mobileNav_sectionHead { color: var(--orange); }
.ly_mobileNav_section.is-open .ly_mobileNav_chevron { transform: rotate(180deg); }
.ly_mobileNav_sectionBody { display: none; background: var(--orange-ll); border-top: 1px solid var(--border-l); padding: 8px 0; }
.ly_mobileNav_section.is-open .ly_mobileNav_sectionBody { display: block; }
.ly_mobileNav_sectionBody a { display: flex; align-items: center; gap: 10px; padding: 12px 20px 12px 36px; font-size: 0.8125rem; color: var(--muted); text-decoration: none; transition: color .15s, background .15s; }
.ly_mobileNav_sectionBody a::before { content: ''; width: 4px; height: 4px; border-radius: 50%; background: var(--border); flex-shrink: 0; transition: background .15s; }
.ly_mobileNav_sectionBody a:hover { color: var(--orange); background: rgba(240,120,40,.05); }
.ly_mobileNav_sectionBody a:hover::before { background: var(--orange); }
.ly_mobileNav_link { display: flex; align-items: center; justify-content: space-between; padding: 0 20px; height: 58px; font-size: 0.9375rem; font-weight: 600; color: var(--text); text-decoration: none; border-bottom: 1px solid var(--border-l); transition: color .2s; }
.ly_mobileNav_link:hover { color: var(--orange); }
.ly_mobileNav_link svg { color: var(--muted); flex-shrink: 0; }
.ly_mobileNav_x { display: flex; align-items: center; justify-content: center; gap: 8px; margin: 24px 20px 0; padding: 13px; font-size: 0.8125rem; font-weight: 700; color: var(--text); text-decoration: none; border: 1.5px solid var(--border); border-radius: 100px; letter-spacing: .04em; transition: background .2s, color .2s; }
.ly_mobileNav_x:hover { background: var(--cream); }
.ly_mobileNav_cta { display: block; margin: 12px 20px 0; background: var(--orange); color: #fff; text-align: center; padding: 16px; font-size: 0.875rem; font-weight: 700; text-decoration: none; border-radius: 100px; letter-spacing: .04em; box-shadow: 0 4px 16px rgba(240,120,40,.3); transition: background .2s, transform .2s; }
.ly_mobileNav_cta:hover { background: var(--orange-d); transform: translateY(-1px); }
.ly_mobileNav_tel { margin: 16px 20px 0; padding: 16px 20px; background: var(--cream); border: 1px solid var(--border-l); border-radius: var(--radius); }
.ly_mobileNav_telLabel { font-size: 0.6875rem; font-weight: 700; letter-spacing: .1em; color: var(--muted); margin-bottom: 4px; }
.ly_mobileNav_telNum { font-family: var(--ff-sans); font-size: 1.375rem; font-weight: 700; color: var(--orange); text-decoration: none; display: block; letter-spacing: .05em; }
.ly_mobileNav_telSub { font-size: 0.6875rem; color: var(--muted); margin-top: 2px; }

/* ekoukai add */
.ly_mobileNav li {
  list-style: none;
}