@charset "utf-8";;

/* ========================================================
	スクロール機能（PC用）
====================================================== */

#ksc-btn-group {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
}
#ksc-btn-group.visible {
  opacity: 1;
  pointer-events: auto;
}

.ksc-fix-btn {
  width: 72px;
  padding: 12px 0 10px;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: filter 0.15s;
}
.ksc-fix-btn:hover  { filter: brightness(0.92); }
.ksc-fix-btn:active { filter: brightness(0.85); }

#ksc-btn-scroll {
  background: var(--gray-08);
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.15);
}
#ksc-btn-top {
  background: var(--white);
}
#ksc-btn-scroll.speed-2 {
  background: var(--gold-dark);
}

.ksc-btn-label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  line-height: 1;
  color: rgba(255, 255, 255, 0.85);
}
.ksc-btn-label--dark {
  color: var(--gray-08);
}

#ksc-btn-group {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 100;
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.18);
}
@media (max-width: 768px) {
  #ksc-btn-group {
    display: none;
  }
}

/* ========================================================
	Header (JP/EN common base)
====================================================== */

.ksc-header {
	position: relative;
	width: 100%;
	--ksc-line-color: var(--gray-08);
}

.ksc-header-top {
	display: flex;
	justify-content: space-between;
	width: 100%;
}

.ksc-header-logo-text {
	display: inline-flex;
	align-items: flex-start;
	text-decoration: none;
	background: url("../../images/common/en_gold.png") left top/160px auto no-repeat;
	min-width: 280px;
	min-height: 180px;
	padding: 35px 45px;
  color: var(--gold);
}

.ksc-header-logo-text span {
	font-size: 1.1rem;
	letter-spacing: 0.02em;
	text-align: left;
    color: var(--white);
    text-shadow:
    0 1px 4px rgba(0,0,0,0.6),
    0 0 12px rgba(0,0,0,0.4);
}

/* headerロゴテキスト　個別カラー指定 */
.ksc-header-logo-text span.text-black {
  color: var(--black) !important;
  text-shadow: none;
}

/* 右上メニュー */
.ksc-header-actions {
  display: flex;
  height: 45px;
  align-items: center;
  position: fixed;
  top: 20px;
  right: 0;
  z-index: 20;
}

/* search */
.ksc-musimegane-icon {
  width: 1.6em;
  display: inline-block;
  vertical-align: middle;
  fill: var(--black);
  transition: fill 0.2s;
}
.ksc-header-search {
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 6px;
	background: var(--gray-03);
	min-width: 230px;
	height: 45px;
	margin-right:-30px;
	position: relative;
  z-index: 2;
}

.ksc-header-search-btn {
	display: flex;
	align-items: center;
	cursor: pointer;
	font-size: 0.8rem;
	color: var(--black);
	transition: background 0.2s, color 0.2s;
	background: var(--white);
	border: 1.5px solid var(--black);
	border-radius: 4px;
	min-width: 220px;
	height: 32px;
	box-shadow: 0 2px 2px var(--gray-08);
	padding: 8px 16px;
}

.ksc-header-search-btn:hover {
	background: var(--black);
    color:var(--white);
}

.ksc-header-search-btn:hover .ksc-musimegane-icon {
	fill: var(--white);
}

.ksc-header-search-icon {
  padding-right: 8px;
  height: 24px;
  display: inline-flex;
  align-items: center;
}
.ksc-header-search-btn:hover .ksc-header-search-icon svg {
	fill: var(--white);
}

.ksc-header-search-label {
    color: var(--gray-08);
    font-size: 0.8rem;
    white-space: nowrap;
}

.ksc-header-search-text {
    font-weight: 600;
    color: var(--black);
    padding-left: 8px;
    white-space: nowrap;
	margin-left: auto; 
}

.ksc-header-search-btn:hover .ksc-header-search-label,
.ksc-header-search-btn:hover .ksc-header-search-text {
	color: var(--white);
}

@media (max-width: 768px) {
  .ksc-header-search {
    display: none;
  }
}


/* プルダウン */
.ksc-search-dropdown {
  display: none;
  position: absolute;
  top: 40px;
  right: 0;
  margin: 0;
  width: 800px;
  border-radius: 0;
  padding: 0;
  transition: none;
  overflow: visible;
  background: var(--gray-03);
  z-index: 15;
      max-height: calc(100vh - 100px);
    overflow-y: auto;
    overflow: visible;
}

.ksc-search-dropdown-inner {
    max-height: calc(100vh - 100px);
    overflow-y: auto;
    overscroll-behavior: contain;
}

.ksc-search-dropdown.active {
	display: block !important;
}

@media (max-width: 768px) {
  .ksc-search-dropdown {
    max-width: 98vw;
    padding: 20px;
  }
}

.ksc-search-dropdown::-webkit-scrollbar-button {
    display: none;
}
.ksc-search-dropdown::-webkit-scrollbar-track {
    border-radius: 0;
}
.ksc-search-dropdown::-webkit-scrollbar-thumb {
    border-radius: 0;
    background: var(--gray-03);
}

.ksc-search-close-btn {
  position: absolute;
  top: -20px;
  left: 12px;
  width: 40px;
  height: 40px;
  background: var(--white);
  border: 0.3px solid var(--gray-05);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  transition: background 0.2s, color 0.2s;
}

.ksc-search-close-btn::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 0.3px;
  background: var(--black);
  transform: rotate(45deg);
}
.ksc-search-close-btn::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 0.3px;
  background: var(--black);
  transform: rotate(-45deg);
}

.ksc-search-close-btn:hover {
  background: var(--black);
  color: var(--white);
}

.ksc-search-close-btn:hover::before,
.ksc-search-close-btn:hover::after {
  background: var(--white);
}

/* 言語スイッチャー */
.ksc-lang {
    position: relative;
	  font-size: 0.85rem;
    margin: 0;
    width: 132px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
}
.ksc-lang-toggle {
    height: 100%;
    display: flex;
    align-items: center;
}

.ksc-lang[open] .ksc-lang-toggle {
	border-radius: 16px 0px 0px 0px;
}

.ksc-lang-toggle::-webkit-details-marker {
	display: none;
}

.ksc-lang-toggle::after {
	content: "▼";
	font-size: 0.6rem;
	position: absolute;
	right: 10px;
	width: 16px;
	text-align: center;
}

.ksc-lang[open] .ksc-lang-toggle::after {
	content: "▲";
}
.ksc-lang-toggle-content {
	display: flex;
	align-items: center;
	gap: 6px;
}
.ksc-lang-item {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 8px 8px;
	text-decoration: none;
	font-size: 0.8rem;
	letter-spacing: 0.06em;
	background: transparent;
}
.ksc-lang-toggle-content,
.ksc-lang-item-content {
  display: flex;
  align-items: center;
  gap: 6px;
}

.ksc-lang-flag {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  object-fit: cover;
  vertical-align: middle;
}

.ksc-lang-slash {
  font-size: 1rem;
  color: var(--gray-08);
  margin: 0 2px;
  line-height: 1;
  vertical-align: middle;
}

.ksc-lang-toggle-content span,
.ksc-lang-item-content span {
  line-height: 1;
  vertical-align: middle;
}
.ksc-lang-menu {
    position: absolute;
    right: 0;
    left: auto;
    width: 103px;
    min-width: 103px;
    background: var(--white);
    padding: 8px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    top: 100%;
    margin-bottom: 20px;
}

.ksc-lang-item {
    padding: 0 16px 4px 16px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
}

.ksc-lang-menu::before {
	content: "";
	position: absolute;
	border-radius: 0 0 0 16px;
}

/* コンタクト */
.ksc-letter-icon{
  width: 1.8em;
  display: inline-block;
  vertical-align: middle;
  fill: var(--black);
  transition: fill 0.2s;
}
.ksc-header_contact {
	background: var(--gold-light);
	border-radius: 0;
	color: var(--black);
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 0 15px;
	height: 45px;
	text-decoration: none;
	font-size: 0.85rem;
	border: none;
	transition: background 0.2s, color 0.2s;
}
.ksc-header_contact:hover {
	background: var(--red);
	color: var(--white);
}

.ksc-header_contact-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--white);
	margin-right: 2px;
}
.ksc-header_contact-icon svg {
	width: 20px;
	height: 20px;
	display: block;
}
.ksc-header_contact:hover .ksc-letter-icon {
  fill: var(--white);
}

@media (max-width: 768px) {
  .ksc-header {
    background: transparent;
  }
  .ksc-header-top {
    align-items: center;
    min-height: 52px;
  }



  .ksc-header-actions {
    position: fixed;
    top: 0;
    right: 0;
    height: 55px;
  }

  .ksc-lang {
    height: 55px;
    width: auto;
    padding: 0 14px;  /* 左右均等パディング */
  }
  .ksc-lang-toggle {
    padding: 0;
    gap: 6px;
  }
  .ksc-lang-toggle::after {
    position: static; /* absoluteを解除して通常フローに */
    right: unset;
    width: auto;
  }

  /* ★ プルダウンを親幅に合わせる */
  .ksc-lang-menu {
    width: 100%;
    min-width: unset;
    left: 0;
    right: 0;
  }

  .ksc-header_contact {
    height: 55px;
    min-height: unset;
    font-size: 0.85rem;
    padding: 0 14px;
  }

  /* 白帯出現後 */
  body.ksc-sp-solid .ksc-header {
    background: var(--white);
  }
}
/* ========================================================
	Sidebar　menu
======================================================== */

/* Sidebar menu 768pxで隠す */
@media screen and (max-width: 768px) {
  .ksc-header-side { display: none; }
}

.ksc-hamburger-container {
	position: fixed;
	left: 0;
	top: 180px;
	width: 40px;
	height: 80px;
	background: var(--white);
	border: 1px solid var(--gray-02);
	z-index: 20;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	transition: all 0.3s ease;
	border-radius: 0;
	padding: 0;
	border: none;
	color: inherit;
}

.ksc-hamburger-icon {
  width: 20px;
  height: 12px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.ksc-hamburger-icon span {
  display: block;
  height: 1px;
  width: 100%;
  background-color: var(--black);
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

/* ×のとき真ん中を非表示 */
.ksc-hamburger-container.ksc-clicked-open .ksc-hamburger-mid {
  opacity: 0;
}

/* ×アニメーション */
.ksc-hamburger-container.ksc-clicked-open .ksc-hamburger-icon span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.ksc-hamburger-container.ksc-clicked-open .ksc-hamburger-icon span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.ksc-hamburger-text {
	font-size: 0.6rem;
	letter-spacing: 0.06em;
	margin-top: 3px;
}

.ksc-sidebar-container {
	position: fixed;
	left: 0;
	top: 200px;
	background: var(--white);
	z-index: 20;
}

.ksc-sidebar {
	position: fixed;
	left: 0;
	top: 240px;
	width: 40px;
	height: calc(100vh - 200px);
	background:var(--white);
	border-right: 1px solid var(--gray-02);
	transition: width 0.3s ease;
	overflow: hidden;
	list-style: none;
	margin: 0;
	padding: 0;
}

.ksc-sidebar-container:hover .ksc-sidebar {
	width: max-content;
	padding-right: 15px;
}

.ksc-sidebar-container:hover .ksc-sidebar .ksc-sidebar-text {
	opacity: 1;
}

.ksc-sidebar-container.ksc-clicked-open .ksc-sidebar {
	width: max-content !important;
	padding-right: 15px;
}

.ksc-sidebar-container.ksc-clicked-open .ksc-sidebar .ksc-sidebar-text {
	opacity: 1 !important;
}

.ksc-sidebar-item {
	display: flex;
	align-items: center;
	padding: 7px;
	cursor: pointer;
	transition: all 0.3s ease;
	border-bottom: 1px solid var(--gray-02);
	min-height: 40px;
}

.ksc-sidebar-item:hover {
	background: var(--gray-02);
}

.ksc-sidebar-icon {
	width: 25px;
	height: 25px;
	min-width: 25px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.ksc-sidebar-icon img {
	width: 18px;
	height: 18px;
	object-fit: contain;
	display: block;
}

.ksc-cycling-icon,
.ksc-kenko-bi-chojyu-icon,
.ksc-ninja-icon,
.ksc-shonyudo-icon,
.ksc-sumo-icon,
.ksc-turi-icon,
.ksc-cycling-icon,
.ksc-onsen-icon {
	fill: var(--black);
}

.ksc-sidebar-text {
	margin-left: 9px;
	font-size: 0.9rem;
	white-space: nowrap;
	opacity: 0;
	transition: opacity 0.3s ease 0.1s;
	font-weight: 400;
	pointer-events: auto;
	text-decoration: none;
	color:var(--black);
	display: block;
}

/* ========================================================
	SP bottom bar
======================================================== */

.ksc-menu-sp {
	position: fixed;
	inset: 0;
	background: var(--gray-02);
	padding: 80px 24px 96px;
	overflow-y: auto;
}

.ksc-menu-sp[hidden] {
	display: none;
}

.ksc-menu-sp-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 16px;
}

.ksc-menu-sp-list a {
	text-decoration: none;
	font-size: 18px;
}

.ksc-bar-sp {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  height: 60px;
  display: none;
  justify-content: space-around;
  align-items: center;
  background: var(--white);
  border-top: 0.5px solid var(--gray-03);
  z-index: 20;
}

.ksc-menu-sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .ksc-menu-sp {
    display: block;
  }
  .ksc-bar-sp {
    display: flex;
  }
}

/* SP バーボタン */
.ksc-bar-sp-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 0;
  color: var(--black);
  transition: color 0.2s;
}
.ksc-bar-sp-btn:active { opacity: 0.6; }
.ksc-bar-sp-btn.active { color: var(--gold); }

.ksc-bar-sp-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ksc-bar-sp-label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  line-height: 1;
}

/* SCROLLの丸アイコン */
.ksc-bar-sp-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.ksc-bar-sp-circle.fast { background: var(--gold-dark); }

/* ========================================================
	SP ドロワー
======================================================== */
.ksc-sp-drawer {
  position: fixed;
  left: 0; right: 0;
  bottom: 60px;
  /* MENU：コンテンツに合わせて伸びる、上限は画面いっぱい */
  height: auto;
  max-height: calc(100vh - 60px);
  background: var(--white);
  border-top: 0.5px solid var(--gray-03);
  z-index: 25;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  display: none;
  visibility: hidden;
  pointer-events: none;
}
/* SEARCH：画面高さいっぱい固定 */
.ksc-sp-drawer--full {
  height: calc(100vh - 60px);
  max-height: calc(100vh - 60px);
}
@media (max-width: 768px) {
  .ksc-sp-drawer { display: block; }
}
.ksc-sp-drawer.open {
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
}

.ksc-sp-drawer-close {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gray-02);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transition: background 0.2s;
}
.ksc-sp-drawer-close:hover { background: var(--gray-03); }

/* MENU inner：コンテンツ高さに合わせる、はみ出したらスクロール */
.ksc-sp-drawer:not(.ksc-sp-drawer--full) .ksc-sp-drawer-inner {
  height: auto;
  max-height: calc(100vh - 60px);
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 56px 16px 24px;
  box-sizing: border-box;
}

/* SEARCH inner：高さ固定でスクロール */
.ksc-sp-drawer--full .ksc-sp-drawer-inner {
  height: 100%;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 56px 16px 24px;
  box-sizing: border-box;
}

/* オーバーレイ */
.ksc-sp-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 20;
}
.ksc-sp-overlay.active { display: block; }

/* ========================================================
	Footer
======================================================== */

.ksc-footer {
  width: 100%;
  background-color: var(--black);
  color: var(--gold);
}

.ksc-footer-wrap {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 60px 0;
  box-sizing: border-box;
}

/* --- Main grid --- */
.ksc-footer-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 20px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(201, 185, 142, 0.2);
  margin: 0 auto;
}

/* --- Brand col --- */
.ksc-footer-logo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
  margin-left: 50px;
}

.ksc-footer-logo-text {
  font-size: clamp(1.05rem, 1.5vw, 1.5rem);
  line-height: 1.65;
  letter-spacing: 0.03em;
  color: var(--gold);
}

.ksc-footer-btn {
  font-size: 0.9rem;
  display: inline-block;
  width: fit-content;
  padding: 9px 22px;
  border: 1px solid var(--gold-dark);
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: 0.18em;
  color: var(--gold);
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.3s, color 0.3s;
}

.ksc-footer-btn:hover {
  background: var(--gold);
  color: var(--black);
}

/* --- Nav cols --- */
.ksc-footer-nav-col {
  padding-left: 20px;
}

.ksc-footer-nav-title {
  font-size: clamp(1.2rem, 3vw, 1.4rem);
  letter-spacing: 0.06em;
  color: var(--gold-light);
  margin-bottom: 28px;
}

.ksc-footer-nav-list {
  font-size: clamp(0.9rem, 1.4vw, 1rem);
  list-style: none;
  margin-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ksc-footer-nav-list li {
  margin: 0;
  padding: 0;
}

.ksc-footer-nav-list a {
  font-size: clamp(0.9rem, 3vw, 1rem);
  font-weight: 200;
  letter-spacing: 0.08em;
  color: var(--gold-light);
  text-decoration: none;
  transition: color 0.25s;
  line-height: 1.4;
}

.ksc-footer-nav-list a:hover {
  color: var(--gray-03);
}

/* --- Bottom bar --- */
.ksc-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0 26px;
  flex-wrap: wrap;
  gap: 12px;
}

.ksc-footer-copy {
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--gold-dark);
}

.ksc-footer-bottom-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 36px;
}

.ksc-footer-bottom-nav li {
  margin: 0;
  padding: 0;
}

.ksc-footer-bottom-nav a {
  font-size: 0.85rem;
  font-weight: 200;
  letter-spacing: 0.1em;
  color: var(--gold-dark);
  text-decoration: none;
  transition: color 0.25s;
}

.ksc-footer-bottom-nav a:hover {
  color: var(--gold);
}

.ksc-footer-nav-list a {
  position: relative;
}

.ksc-footer-nav-list a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--gray-03);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.ksc-footer-nav-list a:hover::after {
  transform: scaleX(1);
}

.ksc-footer-bottom-nav a {
  position: relative;
}

.ksc-footer-bottom-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--gray-03);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.ksc-footer-bottom-nav a:hover::after {
  transform: scaleX(1);
}

@media (max-width: 768px) {

.ksc-footer-wrap {
  padding: 60px clamp(5px, 4vw, 10%) 0;
  box-sizing: border-box;
}
  .ksc-footer-main {
	width: 100%; 
    grid-template-columns: 1fr 1fr;
    justify-content: center;
    gap: 0;
  }

  .ksc-footer-logo {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
	margin-left: 0;
  }

  .ksc-footer-nav-col {
    padding: 40px clamp(5px, 2vw, 10%) 0;
  }

  .ksc-footer-bottom {
    flex-direction: column;
    align-items: center;
    padding: 22px clamp(5px, 2vw, 10%) 80px;
    gap: 0px;
  }

  .ksc-footer-bottom-nav {
    gap: 24px;
  }
}

/* ========================================================
   SP ドロワー：専用ナビ
======================================================== */
.ksc-sp-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.ksc-sp-nav-item {
  border-bottom: 1px solid var(--gray-02);
  flex: 1;
  min-height: 44px;
}

.ksc-sp-nav-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 12px;
  height: 100%;
  min-height: 44px;
  text-decoration: none;
  color: var(--black);
  transition: background 0.2s;
}

.ksc-sp-nav-link:hover,
.ksc-sp-nav-link:active {
  background: var(--gray-02);
}

.ksc-sp-nav-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ksc-sp-nav-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--black);
}

.ksc-sp-nav-label {
  font-size: clamp(0.85rem, 3.5vw, 1rem);
  letter-spacing: 0.05em;
}

/* ========================================================
   SP バー：ハンバーガー → × アニメーション
======================================================== */
.ksc-bar-sp-hamburger .ksc-bar-sp-icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 22px;
  height: 22px;
}

.ksc-hamburger-bar {
  display: block;
  width: 22px;
  height: 1.5px;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}

/* open時：× に変形 */
.ksc-bar-sp-hamburger.active .ksc-hamburger-bar:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.ksc-bar-sp-hamburger.active .ksc-hamburger-bar--mid {
  opacity: 0;
}
.ksc-bar-sp-hamburger.active .ksc-hamburger-bar:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ========================================================
   SP バー：虫眼鏡アイコン調整
======================================================== */
.ksc-bar-sp-musimegane {
  width: 22px;
  height: 22px;
  fill: currentColor;
}
