:root{
	/* Figma数値に合わせやすい変数 */
	--header-h: 90px;
	--side-pad: 32px;
	--maxw: 1200px;
	--pill-bg: rgba(255, 255, 255, .8);
	--pill-text: #111;/* 文字色（黒） */
	--shadow: 0 6px 24px rgba(0,0,0,.18);
}

/* =========== Fixed header =========== */
.site-header {
	position: fixed;
	inset: 0 0 auto 0;
	height: 90px;
	z-index: 9999;
	pointer-events: none;
	justify-content: space-between;
	opacity: 1;
	padding-right: 32px;
	padding-left: 32px;
	background: linear-gradient(180deg, #3A3A3A 0%, rgba(58, 58, 58, 0) 100%);
	display: block;
}

.site-header .nav-open {
	display: none;
}

.site-header .header-inner {
	margin: 0 auto;
	height: 100%;
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 0;
	padding: 0;
	pointer-events: auto;
	width: auto;
}

.site-header .logo {
	text-decoration: none;
	color: #fff;
	font-weight: 700;
	letter-spacing: .04em;
	margin: 0;
	border: none;
	line-height: 1;
}

.site-header .logo img {
	width: auto;
	height: auto;
	vertical-align: middle;
	border: 0;
}

.site-header .actions {
	grid-column: 3;
	justify-self: end;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 0;
}

.actions .nav-pill {
	margin-left: 0;
	order: 1;
}
.nav-pill {
	justify-self: center;
	background: #fff;
	color: #151515;
	border-radius: 999px;
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	opacity: 1;
	height: 46px;
	width: 914px;
}

.site-header .menu {
	display: flex;
	align-items: center;
	gap: 32px;
	list-style: none;
	width: 834px;
	flex-wrap: nowrap;
	padding: 0;
	margin: 0 auto;
}

.menu LI {
	text-align: center;
	flex: 1 1 auto;
	height: 46px;
}

.menu LI.dd {
	position: relative;
	width: auto;
	text-align: center;
	flex: 1 1 auto;
	height: 46px;
	line-height: 46px;
}

.dd details {
	font-size: 14px;
	line-height: 46px;
	display: block;
	width: 100%;
	height: 46px;
}

.dd summary {
	color: #151515;
	list-style: none;
	user-select: none;
	cursor: pointer;
	font-family: "Satoshi";
	font-weight: 500;
	font-style: Medium;
	font-size: 14px;
	leading-trim: NONE;
	letter-spacing: 0%;
	text-transform: capitalize;
	height: 46px;
	line-height: 46px;
}


.menu > li > a {
	color: #151515;
	text-decoration: none;
	line-height: 46px;
	display: inline-block;
	width: 100%;
	font-family: "Satoshi";
	font-weight: 500;
	font-style: Medium;
	font-size: 14px;
	letter-spacing: 0%;
	text-transform: capitalize;
}

.submenu {
	width: auto;
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 200px;
	background: #ffffff;
	color: #000;
	border-radius: .6rem;
	list-style: none;
	opacity: 1;
	transform: translateY(2px);
	pointer-events: auto;
	margin: 0;
	text-align: left;
	height: auto;
	max-height: 60vh;

	overflow-y: auto;
}

.submenu SPAN {
	width: 100%;
	display: block;
}

.submenu LI {
	width: 100%;
	height: auto;
	display: block;
	text-align: left;
	padding: 11px 8px 11px 8px;
}

.submenu LI a {
	display: block;
	color: #000;
	text-decoration: none;
	border-radius: .4rem;
	text-align: left;
}

.submenu LI.level1 {
	padding: 11px 8px 11px 8px;
}

.submenu LI.level2 {
	padding: 11px 8px 11px 20px;
}

.actions .icon-btn {
	width: 46px;
	height: 46px;
}

.actions .user-btn {
	margin-left: 16px;
}

.actions .user-btn {
	order: 2;
}

.icon-btn {
	width: 46px;
	height: 46px;
	border-radius: 999px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.actions .burger {
	width: 36px;
	height: 26px;
	flex-direction: column;
	gap: 7px;
}

.actions .burger {
	margin-left: 24px;
}

.actions .burger {
	order: 3;
}

.burger {
	border-radius: 999px;
	background: none;
	justify-content: center;
	box-shadow: none;
	cursor: pointer;
	display: none;
	align-items: center;
	outline: none;
	margin-top: 0;
	margin-bottom: 0;
}

.actions .burger span {
	width: 36px;
	height: 2px;
	border-radius: 2px;
	flex: 0 0 auto;
}

.burger span {
	display: block;
	background: #fff;
	margin: 0;
}

.mobile-panel {
	position: fixed;
	inset: 0;
	padding: calc(var(--header-h) + 8px) 20px 20px;
	background: rgba(255,255,255,.98);
	color: #111;
	transform: translateY(-100%);
	transition: transform .2s ease;
	pointer-events: auto;
	box-shadow: 0 20px 40px rgba(0,0,0,.06);
	opacity: 1;
}

.close-panel {
	opacity: 1;
	position: absolute;
	top: 10px;
	right: 12px;
	width: 40px;
	height: 40px;
	border-radius: 999px;
	background: rgba(0,0,0,.06);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.close-panel::after {
	transform: rotate(-45deg);
}

.close-panel::before, .close-panel::after {
	content: "";
	position: absolute;
	width: 20px;
	height: 2px;
	background: #111;
	border-radius: 2px;
}

.close-panel::before {
	transform: rotate(45deg);
}

.mobile-menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

.mobile-panel {
	color: #111;
	pointer-events: auto;
}

.mobile-dd details {
	background: rgba(255,255,255,1);
	border-radius: .5rem;
	margin-bottom: 6px;
}

.mobile-dd summary {
	list-style: none;
	padding: 12px 10px;
	cursor: pointer;
	color: #000;
	outline: none;
	user-select: none;
	opacity: 1;
}

.mobile-dd summary::after {
	content: " ＋";
	float: right;
}

.mobile-dd ul {
	list-style: none;
	margin: 0;
	padding: 0 0 8px 10px;
}

.mobile-dd li {
	line-height: 46px;
}

.mobile-menu a {
	color: #000;
	text-decoration: none;
	display: block;
	padding: 12px 10px;
	border-radius: .5rem;
}



/*
.nav-pill a:hover,
.nav-pill a:focus-visible,
.dd summary:hover,
.dd summary:focus-visible{
	background: rgba(0,0,0,.06);
}*/


/* Responsive */
@media (max-width: 1024px){

	.site-header .logo {
		width: 144.32px;
		height: 21px;
	}

	.site-header {
		height: 72px;
	}


	.nav-pill{
		display:none;
	}
	.burger{
		display:flex;
		justify-self:end;
	}

	.actions .user-btn {
	}
}

/* Focus styles */
.menu a:focus-visible, .dd summary:focus-visible,
.mobile-menu a:focus-visible, .mobile-dd summary:focus-visible{
	outline:2px solid #60a5fa;
	outline-offset:2px;
}



/* ====== Mega menu (desktop) ====== */
.nav-pill { padding: 0 0px; height: 46px; }
.menu { width: auto; gap: 0; }

.dd { position: relative; }
.dd details { height: 46px; }
.dd summary {
  list-style: none;
  cursor: pointer;
  font-family: "Satoshi","Noto Sans JP",sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #151515;
  height: 46px; line-height: 46px;
  padding: 0;
  display: inline-flex; align-items: center; gap: 8px;
}

.dd summary div {
  list-style: none;
  cursor: pointer;
  font-family: "Satoshi","Noto Sans JP",sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #151515;
  height: 46px;
  line-height: 46px;
  padding: 0;
}

.dd summary::marker { display: none; content: ""; }
.dd summary::-webkit-details-marker { display: none; }

.navi-menu-label {
  list-style: none;
  cursor: pointer;
  font-family: "Satoshi","Noto Sans JP",sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #151515;
  height: 46px; line-height: 46px;
	padding: 0;
	margin: 0;

  width: auto !important;
  max-width: none !important;
  white-space: nowrap;  /* ここで改行禁止 */

}
.navi-menu-icon{
	padding: 0;
	margin: 0;
}
.navi-menu-icon-plus {
	width:8px;
	position: relative;
	top: -2px;
}
.navi-menu-icon-link {
	width:10px;
	position: relative;
	top: -2px;
}

.w8p {
	width:8px;
}
.w10p {
	width:10px;
}
.w257p {
	width:257px;
}
.w336p {
	width:336px;
}
.w377p {
	width:377px;
}
.w400p {
	width:400px;
}


.dd details[open] summary { background: rgba(0,0,0,.06); }

/* カード本体 */
.dd .mega{
	position: absolute;
	left: 100%;
	top: 100%;
	transform: translate(-50%, 10px);
	background: #fff;
	border: none;
	border-radius: 12px;
	box-shadow: none;
	padding: 32px;
	width: auto;
	display: block;
	z-index: 10000;

	border-radius: 8px;
}
.mega-head {
}

.mega-thumb {
	width: 256px;
	aspect-ratio: 256/140;
	height: 140px;
	margin: 0;
	display: block;
}

.mega-thumb img {
	border-radius: 5px;
	width: 100%;
	object-fit: cover;
	height: auto;
	display: block;
}


.mega-body {
	display: flex;
	width: 100%;
	flex-direction: revert;
	gap: 71px;
}

.mega-kicker {
	font-family: Noto Sans JP;
	font-weight: 400;
	font-style: Regular;
	font-size: 12px;
	leading-trim: NONE;
	line-height: 100%;
	letter-spacing: 0%;
	margin-bottom: 24px;
	color: #151515;
	text-align: left;
}

.mega-title {
	font-family: Satoshi;
	font-weight: 400;
	font-style: Regular;
	font-size: 32px;
	leading-trim: CAP_HEIGHT;
	line-height: 100%;
	letter-spacing: 0%;
	text-align: left;
	margin-top: 0;
	margin-bottom: 8px;
	color: #151515;
}

.mega-summary {
	display: flex;
	flex-flow: column;
	justify-content: flex-end;
}

.mega-list{ 
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	border-left: 1px solid #AAA;
	list-style: none;
	padding: 8px 0 8px 32px;
	margin: 0;
	height: auto;
}
.mega-list LI {
	height: 26px;
	width: 100%;
	margin: 0;
}

.mega-list a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0;
	text-decoration: none;
	color: #151515;
	background: #fff;
	height: 26px;
	border-radius: 0;
	border: none;
	font-family: Noto Sans JP;
	font-weight: 400;
	font-style: Regular;
	font-size: 16px;
	leading-trim: NONE;
	line-height: 160%;
	letter-spacing: 0%;
	margin: 0;
}

/*.mega-list a:hover{ background: #f7f7f7; }*/
.mega-list a .arrow{
	width: 28px; height: 28px; flex: 0 0 auto;
	background: url(/common/asset/navi/navi_arrow_icon.svg) no-repeat center/contain;
}

/* 外部リンクアイコン（トップレベル） */
.menu .ext{
  display: inline-flex; align-items: center; gap: 6px; padding: 0;
}

/* Hover / Focus */
/*
.nav-pill a:hover,
.nav-pill a:focus-visible,
.dd summary:hover,
.dd summary:focus-visible{
  background: rgba(0,0,0,.06);
}
*/
/* ====== Responsive ====== */
@media (max-width: 1240px){
	.nav-pill{
		display:none;
	}
	.burger{
		display:flex;
		justify-self:end;
	}
}

@media (max-width: 1024px){
  /* PC 用メガメニューは非表示に（SP は従来のモバイルメニューを使用） */
  .dd .mega{ display:none !important; }
}















/* ===== Mobile Menu base ===== */
/* 開いてないときは一切受け付けない */
body.mm-open .site-header { pointer-events: auto; }
#mobile-menu[hidden] { display:none !important; }

/* 既存の .mm を上書き：閉じてる時は hidden で消すので pointer-events 切替は不要 */
.mm{ 
	position: fixed; inset: 0;
	z-index: 2147483000;
	pointer-events: auto;            /* ← 常に受け付ける */
}

/* パネルを確実に前面にする */
.mm__backdrop{ 
	position: absolute; inset: 0; 
	background: rgba(0,0,0,.4);
	z-index: 0;
}

.mm__panel{
	position: absolute; top: 0; right: 0;
	width: 100vw; height: 100vh;
	background: #3A3A3A; color: #fff;
	transform: translateX(100%);
	transition: transform .28s ease;
	display: flex; flex-direction: column;
	z-index: 1;                       /* ← バックドロップより前 */
}

/* 開いた状態 */
.mm.is-open .mm__panel{
	transform: translateX(0);
}

/* PC用サブメニュー指定の影響を無効化（モバイル内だけ） */
.mm .submenu{ 
	position: static !important;      /* ← これ重要 */
	max-height: 0;
	overflow: hidden;
	transition: max-height .24s ease;
}
.mm .mi--open > .submenu{
	max-height: 1000px;
}

/* メニュー開いている間はヘッダーも触れるように（既に追加済みならOK） */
body.mm-open .site-header {
	pointer-events: auto;
}

/* hidden のときは完全に消す（既存でOK） */
#mobile-menu[hidden]{
	display: none !important;
}

/* ===== header row ===== */
.mm__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 16px 24px;
	border-bottom: none;
}
.mm__logo img { 
	display:block;
	width: 120px;
	height: auto;
 }

/* ×ボタン */
.mm__close {
	width: 36px;
	height: 24px;

	appearance: none;
	border: 0;
	background: transparent;
	padding: 0;
	line-height: 0;
	cursor: pointer;
}

/* ===== nav list ===== */
.mm__nav {
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	padding: 32px 24px;
	flex: 1 1 auto;
}
.mm__list { list-style: none; margin: 0; padding: 0; }

.mi {
	border-bottom: 1px solid #F2F2F2;
}

/* そのままリンクの行 */
.mi > .mi__link { 
	display: block; 
	text-decoration: none; 
	color: inherit; 
}

/* 見出し行（リンク行/親行どちらでも使うタブUI） */
.mm_tab {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0;
	padding: 32px 0 32px 0;
}

/* 左側テキスト */
.mm_body { min-width: 0; }
.mm_title {
	font-family: Satoshi;
	font-weight: 400;
	font-style: Regular;
	font-size: 32px;
	leading-trim: CAP_HEIGHT;
	line-height: 100%;
	letter-spacing: 0%;
	margin-bottom: 8px;
}
.mm_title_sub {
	font-family: Noto Sans JP;
	font-weight: 400;
	font-style: Regular;
	font-size: 12px;
	leading-trim: NONE;
	line-height: 100%;
	letter-spacing: 0%;
}

/* 右側アイコン */
.mm_icon_img { 
	width: 24px;
	height: 24px;
}

.mm_icon_img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* 親行（アコーディオン） */
.mi--parent .mm_tab {
	cursor: pointer;
}

/* サブメニュー（アコーディオンの中身） */
.submenu {
	margin: 0;
	padding: 0;
	list-style: none;
	overflow: hidden;
	max-height: 0;                    /* 閉 */
	transition: max-height .24s ease; /* 簡易アニメ */

	color: #fff;
	background: none;

	display: flex;
	flex-wrap: wrap;
	gap: 24px;
}

.submenu li {
	padding: 0;
}

.submenu li a {
	font-family: Noto Sans JP;
	font-weight: 400;
	font-style: Regular;
	font-size: 14px;
	leading-trim: CAP_HEIGHT;
	line-height: 100%;
	letter-spacing: 0%;
	color: #fff;
}

/* 開いたときの中身と矢印の向き */
.mi--open > .submenu { 
	max-height: 1000px;
	padding: 0 0 32px 0;

}   /* 中身の高さに合わせる簡易法 */

.mi--open .mm_icon_img img { transform: rotate(180deg); } /* 下向き→上向き */

/* リンクのアクセシビリティ */
.mi a:focus-visible,
.mm__close:focus-visible,
.mm_tab[role="button"]:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

/* メニュー開いている間の背面固定（JSが body に適用） */
body.mm-lock {
  position: fixed;
  width: 100%;
}


