﻿
/*---------------------------------------------
	共有
---------------------------------------------*/
body {
	color: #111;
	font-family: 'Noto Sans JP', 'Hiragino Sans', 'Yu Gothic', sans-serif;
	font-weight: 500;
}
main{
	padding-top: 80px;
}

/*テキスト*/
main *.red{ color: #df0000;}
main p a{ color: #527485; transition: all .3s ease;}
main p a:hover{ background-color: #d3edfa;}

mark{
	background-color: transparent;
	background-image: linear-gradient(to bottom, transparent 50%, #ffec4c 50%);
}

:root {
  --color-primary:    #003954;
  --color-accent:     #4cc9f0;
  --color-blue:	      #0083e7;
  --color-red:	      #c00000;
  --color-gray:		  #d8d8d8;
  --color-orange:	  #f5a800;
  --color-bg-light:	  #f3f2f7;
  --color-bg-bgray:	  #f3f7fb;
  --color-white:      #ffffff;
  --color-text:       #1a1a1a;
  --color-text-mid:   #555555;
  --color-text-light: #888888;
  --color-border:     #cfdbe6;
  --color-border-light: #e2e8f0;
  --color-navy-dark:  #0d1b2a;
  --shadow-sm: 0 5px 10px rgba(0,0,0,.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,.12);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 20px;
}

/**/
main *,
.nav-overlay *{
	scrollbar-width: thin;
	scrollbar-color: rgba(119,187,255,0.5) rgba(200,200,200,0.2);
}
main *::-webkit-scrollbar,
.nav-overlay *::-webkit-scrollbar {
  width: 5px;
  height: 3px;
}

@media screen and (min-width: 810px) {
	a[href^="tel:"] {
		pointer-events: none;
	}
}

/*---------------------------------------------
	パンくず
---------------------------------------------*/
.breadcrumb-bar {
	background: #fff;
}
.breadcrumb-bar .inner-container {
	max-width: 1280px;
	margin: auto;
	padding: 10px 0 5px;
}
.breadcrumb ol {
	display: flex;
	align-items: center;
	gap: 6px;
	color: var(--color-text-light);
	padding-bottom: 5px;
	font-size: 12px;
	overflow-x: auto;
}
.breadcrumb ol li{ flex-shrink: 0;}
.breadcrumb ol li + li::before { content: '>'; margin-right: 6px; }
.breadcrumb ol a { color: var(--color-text-mid); }
.breadcrumb ol a:hover { text-decoration: underline; }

@media screen and ( max-width: 810px ){
	.breadcrumb ol {
		padding: 0 15px 5px;
	}
}

/* ===================================================
   ヘッダー
=================================================== */
header{
	width: 100%;
	background-color: rgba(255,255,255,1);
	box-shadow: 0 2px 5px rgba(0,0,0,0.2);
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 900;
	transition: all .5s ease;
}
header > div.header-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
	max-width: 1280px;
	height: 80px;
	margin: auto;
	padding: 15px 0;
	position: relative;
}
/*ロゴ*/
.site-logo {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 140px;
	color: var(--color-primary);
	font-size: 20px;
	font-weight: 700;
	white-space: nowrap;
	letter-spacing: .05em;
}
.site-logo img{
	width: 100%;
	height: auto;
}
/*検索*/
.header-search {
	flex: 1;
	display: flex;
	align-items: center;
	max-width: 630px;
	background: var(--color-white);
	padding: 0 15px;
	border: 1px solid var(--color-border);
	border-radius: 30px;
	overflow: hidden;
	position: relative;
}
.header-search:before {
	content: "";
	display: block;
	width: 22px;
	height: 22px;
	background: url(../../_images/common/icon-search.webp) no-repeat center;
	background-size: 100% auto;
	filter: brightness(0) saturate(100%) invert(64%) sepia(3%) saturate(980%) hue-rotate(166deg) brightness(89%) contrast(92%);
}
.header-search .search-input {
	width: 100%;
	background: var(--color-white);
	color: var(--color-text-light);
	padding: 10px 10px;
	font-size: 16px;
	border: none;
	outline: none;
}
.header-search:has(.search-input:focus) {
	border-color: var(--color-accent);
}
/*右ボタン*/
.header-nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
	flex-shrink: 0;
	width: 480px;
}
.header-nav .btn-header-contact {
	width: 140px;
	background-image: linear-gradient(135deg, #fdda65 0, #ffc928 100%);
	color: var(--color-text);
	padding: 12px 16px;
	font-size: 15px;
	letter-spacing: 0.05em;
	text-align: center;
	white-space: nowrap;
	border-radius: 30px;
	transition: opacity .2s;
}
.header-nav .btn-header-contact:hover {
	opacity: .70;
}
/**/
.header-nav .header-cart {
	display: flex;
	align-items: center;
	gap: 5px;
	background: var(--color-bg-light);
	color: var(--color-text);
	padding: 10px 16px;
	font-size: 16px;
	white-space: nowrap;
	border: 1px solid var(--color-border);
	border-radius: 30px;
	transition: all .3s ease;
	position: relative;
}
.header-nav .header-cart:before {
	content: "";
	display: block;
	width: 20px;
	height: 20px;
	background: url(../../_images/common/icon-cart.webp) no-repeat center;
	background-size: 100% auto;
}
.header-nav .header-cart:hover {
	background: #caeeff;
}

.header-nav .cart-badge {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	background: var(--color-accent);
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	border-radius: 50%;
}
/**/
.header-nav .btn-menu {
	display: flex;
	align-items: center;
	gap: 10px;
	width: 100px;
	color: var(--color-text);
	padding: 6px 10px;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: .08em;
	cursor: pointer;
}
.header-nav .btn-menu:before {
	content: "";
	display: block;
	width: 24px;
	height: 24px;
	background: url(../../_images/common/icon-menu.webp) no-repeat center;
	background-size: 100% auto;
}

@media screen and ( max-width: 810px ){
	header{
		background-color: #fff;
	}
	header > div.header-inner {
		width: 100%;
		padding: 10px;
	}

	/*ロゴ*/
	.site-logo {
		width: 140px;
	}
	/*検索*/
	.header-search {
		display: none;
		max-width: 630px;
		padding: 0 14px;
	}
	/*右ボタン*/
	.header-nav {
		gap: 5px;
		width: 150px;
	}
	.header-nav .btn-header-contact span,
	.header-nav .header-cart span.cart-label,
	.header-nav .btn-menu span{
		display: none;
	}

	.header-nav .btn-header-contact {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 46px;
		height: 46px;
		padding: 5px;
		font-size: 16px;
		border-radius: 50%;
	}
	.header-nav .btn-header-contact:before{
		content: "";
		display: block;
		width: 28px;
		height: 28px;
		background: url(../../_images/common/icon-mail.webp) no-repeat center;
		background-size: 100% auto;
	}
	
	.header-nav .header-cart {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 0;
		width: 46px;
		height: 46px;
		background-color: transparent;
		padding: 0;
		border: none;
		position: relative;
	}
	.header-nav .header-cart:before {
		width: 30px;
		height: 30px;
	}
	.header-nav .cart-badge {
		width: 20px;
		height: 20px;
		font-size: 13px;
		border-radius: 50%;
		position: absolute;
		top: 0;
		right: 0;
	}

	.header-nav .btn-menu {
		width: 46px;
		padding: 6px 10px;
		font-size: 15px;
	}
}

/* ===================================================
   フッター
=================================================== */
footer{
	background-color: #0d172a;
	color: var(--color-white);
	margin: 0 auto;
	padding: 30px 0;
}
footer .inner{
	max-width: 1280px;
	margin: auto;
}
footer .footer-link{
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-template-rows: auto;
	grid-column-gap: 50px;
	grid-row-gap: 40px;
	padding: 60px 0;
}
footer .footer-link > dl.scene		{ grid-area: 1 / 1 / 2 / 3;}
footer .footer-link > dl.category	{ grid-area: 2 / 1 / 3 / 3;}
footer .footer-link > dl.guide		{ grid-area: 1 / 3 / 2 / 4;}
footer .footer-link > dl.service	{ grid-area: 1 / 4 / 2 / 5;}

footer .footer-link > dl > dt{
	margin-bottom: 10px;
	padding-bottom: 10px;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.5em;
	border-bottom: 1px solid var(--color-white);
}
footer .footer-link > dl > dd a{
	display: inline-block;
	padding: 3px 0;
}
footer .footer-link > dl > dd > a{
	font-size: 14px;
}
footer .footer-link > dl > dd a:after{
	content: "";
	display: block;
	width: 0;
	height: 1px;
	background-color: rgba(255,255,255,0.8);
	transition: width .3s ease;
}
footer .footer-link > dl > dd a:hover:after{
	width: 100%;
}

footer .footer-link > dl ul{
	display: flex;
	flex-direction: column;
	gap: 5px;
}

/*scene*/
footer .footer-link > dl.scene > dd{
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}
footer .footer-link > dl.scene > dd dl{
	width: calc((100% - 60px) / 4);
}
footer .footer-link > dl.scene > dd dl dt{
	font-size: 16px;
	font-weight: 700;
}
footer .footer-link > dl.scene > dd dl dd{
	margin-left: 15px;
}
/*category*/
footer .footer-link > dl.category dd{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 5px 50px;
}
footer .footer-link > dl.category dd ul{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	column-gap: 50px;
	row-gap: 5px;
	width: 100%;
}

/* 運営会社情報（ロゴ・会社概要・Pマーク）※濃紺背景でも見えるよう白パネル */
footer .footer-company{
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 32px;
	margin: 0 0 30px;
	padding: 24px 30px;
	background: var(--color-white);
	border-radius: 10px;
	color: var(--color-primary);
}
footer .footer-company .footer-company-title{
	margin: 0 0 10px;
	font-size: 13px;
	font-weight: 700;
	color: var(--color-primary);
}
footer .footer-company .footer-company-logo img{
	width: 230px;
	height: auto;
	display: block;
}
footer .footer-company .fc-mail a{
	color: var(--color-primary);
	text-decoration: underline;
}
footer .footer-company .footer-company-detail{
	flex: 1 1 320px;
	min-width: 260px;
	font-size: 13px;
	line-height: 1.75;
	color: var(--color-primary);
}
footer .footer-company .fc-name{
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 4px;
	font-size: 15px;
	font-weight: 700;
}
footer .footer-company .fc-name img{
	width: 45px;
	height: 25px;
	display: block;
}
footer .footer-company .footer-company-pmark img{
	width: 250px;
	height: auto;
	display: block;
}
@media screen and ( max-width: 810px ){
	footer .footer-company{
		gap: 18px;
		padding: 20px;
		justify-content: center;
		text-align: center;
	}
	footer .footer-company .footer-company-detail{
		flex-basis: 100%;
		text-align: center;
	}
	footer .footer-company .fc-name{
		justify-content: center;
	}
}

/**/
footer .copy{
	width: 100%;
	color: var(--color-white);
	padding: 15px 30px 0;
	font-size: 15px;
	text-align: center;
	border-top: 1px solid var(--color-white);
}

@media screen and ( max-width: 1200px ){
	footer{
		width: 100%;
		padding: 50px 0;
	}
	footer .inner{
		margin: 0 20px;
	}
}

@media screen and ( max-width: 810px ){
	footer{
		margin: 0 auto;
	}
	
	footer .footer-link{
		grid-template-columns: repeat(2, 1fr);
		grid-template-rows: auto; 
		grid-column-gap: 30px;
		grid-row-gap: 40px;
		padding: 20px 0 40px;
	}
	footer .footer-link > dl.scene		{ grid-area: 1 / 1 / 2 / 3;}
	footer .footer-link > dl.category	{ grid-area: 2 / 1 / 3 / 3;}
	footer .footer-link > dl.guide		{ grid-area: 3 / 1 / 4 / 2;}
	footer .footer-link > dl.service	{ grid-area: 3 / 2 / 4 / 3;}

	/*scene*/
	footer .footer-link > dl.scene > dd{
		gap: 20px;
	}
	footer .footer-link > dl.scene > dd dl{
		width: calc((100% - 40px) / 3);
	}
	/*category*/
	footer .footer-link > dl.category dd{
		gap: 10px 30px;
	}
	footer .footer-link > dl.category dd ul{
		grid-template-columns: repeat(2, 1fr);
		column-gap: 30px;
		width: 100%;
	}
}

@media screen and ( max-width: 480px ){
	footer{
		padding: 20px 0 40px;
	}

	footer .footer-link{
		grid-column-gap: 20px;
		grid-row-gap: 30px;
	}

	/*scene*/
	footer .footer-link > dl.scene > dd{
		gap: 20px;
	}
	footer .footer-link > dl.scene > dd dl{
		width: calc((100% - 20px) / 2);
	}
	/*category*/
	footer .footer-link > dl.category dd{
		gap: 5px 20px;
	}
	footer .footer-link > dl.category dd ul{
		width: 100%;
	}

	/**/
	footer .copy{
		padding: 15px 0 0;
		font-size: 14px;
	}
}



/* ===================================================
   ページトップへ戻るボタン
=================================================== */
.btn-pagetop {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	background: var(--color-primary);
	border-radius: 50%;
	opacity: 0;
	pointer-events: none;
	transform: translateY(12px);
	transition: opacity .3s, transform .3s, background .2s;
	box-shadow: 0 3px 14px rgba(0,0,0,.28);
	position: fixed;
	right: 24px;
	bottom: 32px;
	z-index: 90;
}
.btn-pagetop img{
	width: 20px;
	height: 20px;
	transform: rotate(-90deg);
	filter: brightness(0) saturate(100%) invert(99%) sepia(99%) saturate(2%) hue-rotate(76deg) brightness(110%) contrast(100%);
}
.btn-pagetop.is-visible {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}
.btn-pagetop:hover { background: #2a5298; }

@media screen and ( max-width: 480px ){
	.btn-pagetop {
		right: 15px;
		bottom: 20px;
	}
}

/* ===================================================
   オーバーレイメニュー
=================================================== */
body.menu-open { overflow: hidden; }

.nav-overlay {
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(8, 16, 38, .9);
	color: var(--color-white);
	opacity: 0;
	transition: opacity .35s;
	pointer-events: none;
	position: fixed;
	z-index: 950;
	inset: 0;
}
.nav-overlay.is-open {
	opacity: 1;
	pointer-events: auto;
}

/* コンテンツエリア（最大850px・中央） */
.nav-overlay .nav-overlay-inner {
	width: 100%;
	max-width: 850px;
	padding: 0 80px;
	opacity: 0;
	transform: translateY(-22px);
	transition: transform .4s cubic-bezier(.4,0,.2,1), opacity .35s;
	scrollbar-width: none;
	position: relative;
}
.nav-overlay-inner::-webkit-scrollbar { display: none; }
.nav-overlay.is-open .nav-overlay-inner {
	transform: translateY(0);
	opacity: 1;
}

/* 閉じるボタン */
.nav-overlay-close {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 35px;
	height: 35px;
	background: rgba(8, 16, 38, .3);
	color: rgba(255,255,255,.7);
	border: 2px solid var(--color-bg-light);
	border-radius: 50%;
	transition: all .2s, color .2s;
	position: fixed;
	right: 12px;
	top: 20px;
	z-index: 5;
}
.nav-overlay-close img{
	width: 60%;
	height: auto;
	filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(103%) contrast(103%);
}
.nav-overlay-close:hover {
	opacity: .7;
}

/*----------*/
.nav-overlay .overlay-cont{
	width: 100%;
	max-width: 800px;
	max-height: 100vh;
	margin: auto;
	padding: 50px 10px;
	overflow-y: auto;
}
.nav-overlay .overlay-cont > dl{
	display: flex;
	flex-direction: column;
	gap: 30px;
	width: 100%;
	margin-bottom: 40px;
}
.nav-overlay .overlay-cont > dl > div dt{
	margin-bottom: 15px;
	font-size: 24px;
	font-weight: 900;
}
.nav-overlay .overlay-cont > dl > div:not(:first-child) dt{
	padding-bottom: 5px;
	border-bottom: 1px solid var(--color-white);
}

/*検索*/
.nav-overlay .over-search {
	flex: 1;
	display: flex;
	align-items: center;
	width: 50%;
	max-width: 630px;
	padding: 0 14px;
	border: 2px solid var(--color-border);
	border-radius: 30px;
	overflow: hidden;
}
.nav-overlay .over-search:after {
	content: "";
	flex-shrink: 0;
	display: block;
	width: 20px;
	height: 20px;
	background: url(../../_images/common/icon-search.webp) no-repeat center;
	background-size: 100% auto;
	filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(103%) contrast(103%);
}
.nav-overlay .over-search .search-input {
	width: 100%;
	color: var(--color-white);
	padding: 10px 10px;
	font-size: 16px;
	border: none;
	outline: none;
}

/**/
.nav-overlay ul.scene-list{
    display: flex;
	flex-wrap: wrap;
    gap: 30px 15px;
}
.nav-overlay ul.scene-list > li{
    width: calc((100% - 45px) / 4);
    transition: all .3s ease;
    position: relative;
}
.nav-overlay ul.scene-list > li .scene-card{
    display: block;
    min-height: 80px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-blend-mode: overlay;
    padding: 10px;
    border: 1px solid #838383;
    border-radius: 10px;
    transition: all .2s ease;
    overflow: hidden;
    position: relative;
}
.nav-overlay ul.scene-list > li .scene-card:before{
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}
.nav-overlay ul.scene-list > li .scene-name{
	background: none;
    color: var(--color-white);
    font-size: 18px;
    font-weight: 700;
    position: absolute;
    left: 5px;
    bottom: 5px;
    z-index: 5;
}

/*hover*/
.nav-overlay ul.scene-list > li a.scene-card:hover{
    transform: translate(0, -3px);
}


.scene-section ul.scene-list > li .scene-name{
    background-repeat: no-repeat;
    background-position: left top;
    background-size: 35px auto;
    padding-top: 35px;
}



/**/
ul.scene-list > li.scene-live .scene-card{
    background-image: url(../../_images/common/scene-live.webp);
    background-color: #c96add;
}
ul.scene-list > li.scene-live .scene-card:before{
    background-image: linear-gradient(30deg, #be6adb 15%, transparent 50%);
}
ul.scene-list > li.scene-live:hover .scene-card{
    background-color: #de61f7;
}
.scene-section ul.scene-list > li.scene-live .scene-name{
    background-image: url(../../_images/common/icon-scene-live.webp);
}

ul.scene-list > li.scene-sports .scene-card{
    background-image: url(../../_images/common/scene-sports.webp);
    background-color: #6a99ec;
}
ul.scene-list > li.scene-sports .scene-card:before{
    background-image: linear-gradient(30deg, #6a99ec 15%, transparent 50%);
}
ul.scene-list > li.scene-sports:hover .scene-card{
    background-color: #4180ec;
}
.scene-section ul.scene-list > li.scene-sports .scene-name{
    background-image: url(../../_images/common/icon-scene-sports.webp);
}

ul.scene-list > li.scene-festival .scene-card{
    background-image: url(../../_images/common/scene-festival.webp);
    background-color: #db991d;
}
ul.scene-list > li.scene-festival .scene-card:before{
    background-image: linear-gradient(30deg, #dca135 15%, transparent 50%);
}
ul.scene-list > li.scene-festival:hover .scene-card{
    background-color: #ce8909;
}
.scene-section ul.scene-list > li.scene-festival .scene-name{
    background-image: url(../../_images/common/icon-scene-festival.webp);
}


ul.scene-list > li.scene-arts .scene-card{
    background-image: url(../../_images/common/scene-arts.webp);
    background-color: #7a73d8;
}
ul.scene-list > li.scene-arts .scene-card:before{
    background-image: linear-gradient(30deg, #7a73d8 15%, transparent 50%);
}
ul.scene-list > li.scene-arts:hover .scene-card{
    background-color: #6058d6;
}
.scene-section ul.scene-list > li.scene-arts .scene-name{
    background-image: url(../../_images/common/icon-scene-arts.webp);
}


ul.scene-list > li.scene-oshikatsu .scene-card,
ul.scene-list > li.scene-museum .scene-card{
    background-image: url(../../_images/common/scene-arts.webp);
    background-color: #666;
}

/*子カテ*/
.nav-overlay ul.scene-list > li ul.sub-link{
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-top: 10px;
	font-size: 14px;
}
.nav-overlay ul.scene-list > li ul.sub-link a{
	display: inline-block;
	transition: color .2s, padding-left .25s;
}
/*.nav-overlay ul.scene-list > li ul.sub-link a:hover{
  padding-left: 5px;
}*/
.nav-overlay ul.scene-list > li ul.sub-link a:after{
	content: "";
	display: block;
	width: 0;
	height: 1px;
	background-color: rgba(255,255,255,0.8);
	transition: width .3s ease;
}
.nav-overlay ul.scene-list > li ul.sub-link a:hover:after{
	width: 100%;
}


/* ナビゲーションリンク */
.nav-overlay .nav-overlay-nav {
	display: flex;
	justify-content: space-between;
	gap: 15px;
}
.nav-overlay .nav-overlay-list {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 0;
}
.nav-overlay .nav-overlay-list li a {
  display: inline-block;
  color: var(--color-white);
  padding: 5px 0;
  font-size: 16px;
  font-weight: 800;
  transition: color .2s, padding-left .25s;
  letter-spacing: .02em;
}
/*
.nav-overlay .nav-overlay-list li a:hover {
  color: #fff;
  padding-left: 8px;
}*/
.nav-overlay .nav-overlay-list li a:after{
	content: "";
	display: block;
	width: 0;
	height: 1px;
	background-color: rgba(255,255,255,0.8);
	transition: width .3s ease;
}
.nav-overlay .nav-overlay-list li a:hover:after{
	width: 100%;
}
/* PCではリンクリストを2列（カテゴリ12件＝6段2列）。列間に余白。SPは現状維持 */
@media screen and ( min-width: 811px ){
	.nav-overlay .nav-overlay-list{
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		column-gap: 48px;
		row-gap: 4px;
	}
}

/*お問い合わせ*/
.nav-overlay ul.contact-link{
    display: flex;
    justify-content: center;
    gap: 20px;
	margin: auto;
}
.nav-overlay ul.contact-link li{
    width: calc((100% - 20px) / 2);
    text-align: center;
}
.nav-overlay ul.contact-link li p{
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 900;
}
.nav-overlay ul.contact-link li a{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 70px;
    padding: 10px;
    border-radius: 50px;
	transition: all .3s ease;
}
.nav-overlay ul.contact-link li a:hover{
	transform: translateY(-3px);
	opacity: 0.7;
}
.nav-overlay ul.contact-link li.link a{
	gap: 20px;
	background-image: linear-gradient(45deg, #ffd95a 0, #ffc928 100%);
	color: var(--color-text);
    font-size: 18px;
    font-weight: 700;
}
.nav-overlay ul.contact-link li.link a:after{
	content: "";
	display: block;
	width: 30px;
	height: 30px;
	background: #fff url(../../_images/common/icon-arrow.webp) no-repeat center;
	background-size: 40%;
	border-radius: 50%;
}
.nav-overlay ul.contact-link li.tel a{
    flex-direction: column;
    background-color: var(--color-white);
}
.nav-overlay ul.contact-link li.tel a span{
    display: block;
    color: var(--color-primary);
    font-size: 12px;
}


@media screen and ( max-width: 810px ){
	/* コンテンツエリア（最大850px・中央） */
	.nav-overlay .nav-overlay-inner {
		width: 90%;
		max-width: 850px;
		padding: 0;
	}
	
	/* 閉じるボタン */
	.nav-overlay .nav-overlay-close {
		width: 35px;
		height: 35px;
		right: 12px;
		top: 15px;
	}
	
	/*----------*/
	.nav-overlay .overlay-cont > div dt{
		font-size: 22px;
	}

	/**/
    .nav-overlay ul.scene-list{
        flex-wrap: wrap;
        gap: 20px;
    }
    .nav-overlay ul.scene-list > li{
        width: calc((100% - 60px) / 4);
    }
    .nav-overlay ul.scene-list > li a.scene-card{
        min-height: 80px;
    }
    .nav-overlay ul.scene-list > li .scene-name{
        font-size: 18px;
    }
}

@media screen and ( max-width: 480px ){
	/* コンテンツエリア（最大850px・中央） */
	.nav-overlay .nav-overlay-inner {
		width: 100%;
		padding: 0;
	}
	.nav-overlay .overlay-cont{
		padding: 50px 5%;
		max-height: 100vh;
	}
	
	/* 閉じるボタン */
	.nav-overlay .nav-overlay-close {
		width: 35px;
		height: 35px;
		right: 12px;
		top: 12px;
	}
	
	/*検索*/
	.nav-overlay .over-search {
		width: 70%;
	}
	.nav-overlay .over-search .search-icon {
		flex-shrink: 0;
		color: var(--color-text-light);
	}
	.nav-overlay .over-search .search-input {
		width: 100%;
		color: var(--color-text-light);
		padding: 10px 10px;
		font-size: 16px;
		border: none;
		outline: none;
	}

    .nav-overlay ul.scene-list{
        gap: 15px;
    }
    .nav-overlay ul.scene-list > li{
        width: calc((100% - 15px) / 2);
    }
    .nav-overlay ul.scene-list > li a.scene-card{
        padding: 5px;
    }

	/* ナビゲーションリンク */
	.nav-overlay .nav-overlay-nav.category {
		flex-direction: column;
		gap: 0;
	}
	.nav-overlay .nav-overlay-nav.service{
		flex-wrap: wrap;
	}
	.nav-overlay .nav-overlay-nav.service > .nav-overlay-list {
		flex: none;
		width: calc((100% - 15px) / 2);
	}


	/*お問い合わせ*/
	.nav-overlay ul.contact-link{
		flex-wrap: wrap;
		gap: 20px;
	}
	.nav-overlay ul.contact-link li{
		width: 100%;
	}
	.nav-overlay ul.contact-link li p{
		font-size: 13px;
	}
	.nav-overlay ul.contact-link li a{
		min-height: 60px;
		padding: 10px;
	}
	.nav-overlay ul.contact-link li.link a{
		font-size: 20px;
	}

}


/* ===================================================
   お問い合わせバナー
=================================================== */
.contact-banner{
    display: grid;
    grid-template-columns: 1fr minmax(0, 940px) minmax(0, 340px) 1fr;
    grid-gap: 0px;
    background-image: url(../../_images/common/contact-bg.webp);
    background-repeat: no-repeat;
    background-position: 100% 50%;
    background-size: 40% auto;
    margin: 0 auto;
}
.contact-banner .contact-inner{
    grid-column: 1 / 3;
    display: grid;
    grid-template-columns: 1fr minmax(0, 940px);
    background-image: linear-gradient( to right, #0084e0 0, #005dd7 100%);
    border-radius: 0 0 100px 0;
}
.contact-banner .contact-info{
    grid-column: 2;
    padding: 50px 60px 50px 40px;
}
.contact-banner .contact-lead{
    color: var(--color-white);
    margin-bottom: 20px;
    font-size: 25px;
    font-weight: 900;
}
.contact-banner ul.contact-link{
    display: flex;
    justify-content: center;
    gap: 30px;
}
.contact-banner ul.contact-link li{
    width: calc((100% - 30px) / 2);
    text-align: center;
}
.contact-banner ul.contact-link li p{
    color: var(--color-white);
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 900;
}
.contact-banner ul.contact-link li a{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 70px;
    padding: 10px;
    border-radius: 50px;
	transition: all .3s ease;
}
.contact-banner ul.contact-link li a:hover{
	transform: translateY(-3px);
	opacity: 0.7;
}
.contact-banner ul.contact-link li.link a{
	gap: 20px;
	background-image: linear-gradient(45deg, #ffd95a 0, #ffc928 100%);
    font-size: 20px;
    font-weight: 900;
}
.contact-banner ul.contact-link li.link a:after{
	content: "";
	display: block;
	width: 30px;
	height: 30px;
	background: #fff url(../../_images/common/icon-arrow.webp) no-repeat center;
	background-size: 40%;
	border-radius: 50%;
}
.contact-banner ul.contact-link li.tel a{
    flex-direction: column;
    background-color: var(--color-white);
	color: var(--color-primary);
}
.contact-banner ul.contact-link li.tel a span{
    display: block;
    font-size: 12px;
}

/*1カラム*/
.contact-banner.column1{
	display: block;
	background-image: none;
}
.contact-banner.column1 .contact-inner{
	display: block;
    border-radius: 0;
}
.contact-banner.column1 .contact-info{
	margin: auto;
	text-align: center;
}
.contact-banner.column1 ul.contact-link{
	align-items: center;
}
.contact-banner.column1 ul.contact-link li.tel{
	width: 60%;
}
.contact-banner.column1 ul.contact-link li.tel a{
	border-radius: 10px;
    padding: 20px;
}


@media screen and ( max-width: 1080px ){
    .contact-banner{
        grid-template-columns: 65% 1fr;
        background-position: 100% 50%;
        background-size: contain;
        margin: 0 auto;
    }
    .contact-banner .contact-inner{
		grid-column: 1;
		display: block;
        border-radius: 0 0 50px 0;
    }
    .contact-banner .contact-info{
        padding: 5% 5%;
    }
}
@media screen and ( max-width: 810px ){
    .contact-banner{
        grid-template-columns: 65% 1fr;
        background-position: calc(100% + 100px) 50%;
        background-size: auto 100%;
        margin: 0 auto;
    }
    .contact-banner .contact-inner{
		grid-column: 1;
        border-radius: 0 0 50px 0;
    }
    .contact-banner .contact-info{
        padding: 5% 5%;
    }
    .contact-banner .contact-lead{
        font-size: 20px;
    }
    .contact-banner ul.contact-link{
        gap: 20px;
        flex-direction: column;
    }
    .contact-banner ul.contact-link li{
        width: 100%;
        text-align: center;
    }
    .contact-banner ul.contact-link li p{
        font-size: 13px;
    }
    .contact-banner ul.contact-link li a{
        min-height: 55px;
        padding: 5px;
        border-radius: 30px;
    }
    .contact-banner ul.contact-link li.link a{
        font-size: 18px;
    }
	
	/*1カラム*/
	.contact-banner.column1 .contact-info{
        padding: 5% 3%;
	}
	.contact-banner.column1 ul.contact-link{
		flex-direction: column;
		align-items: center;
	}
}
@media screen and ( max-width: 480px ){
    .contact-banner{
        display: block;
        background: none;
    }
    .contact-banner .contact-inner{
        border-radius: 0;
    }
    .contact-banner .contact-info{
        padding: 8% 6%;
    }
    .contact-banner .contact-lead{
        font-size: 20px;
        font-weight: 700;
        text-align: center;
    }
	
	/*1カラム*/
	.contact-banner.column1 .contact-info{
        padding: 5% 3%;
	}
	.contact-banner.column1 ul.contact-link li.tel{
		width: 90%;
	}
}


/* ===================================================
   商品リスト/カード
=================================================== */
.items-list > li a{
	display: block;
}
.items-list > li .item-card{
	background-color: #fff;
	padding: 20px;
	border: 1px solid var(--color-border-light);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-sm);
	transition: all .3s ease;
}
.items-list > li .item-card img{
	width: 100%;
	max-width: 250px;
	height: auto;
}
.items-list > li .item-card ul.icon{
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	width: 100%;
	height: auto;
	margin-bottom: 10px;
}
.items-list > li .item-card ul.icon > li{
	color: #265e99;
	padding: 0 15px;
	font-size: 14px;
	border: 1px solid var(--color-border);
}
.items-list > li .item-card p.name{
	font-size: 18px;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	overflow: hidden;
	line-height: 1.4;
	min-height: 2.8em; /* 2行ぶん確保し、名前の長短でカード高さがズレないように */
}
.items-list > li .item-card p.code{
	color: #8ea1b5;
	font-size: 16px;
}
.items-list > li .item-card ul.scene{
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	width: 100%;
	height: auto;
	margin: 10px 0;
}
.items-list > li .item-card ul.scene > li{
	padding: 0 15px;
	font-size: 14px;
    border-radius: 20px;
}
.items-list > li .item-card ul.scene > li.live{
    background-color: #f1d9ff;
    color: #a33eff;
}
.items-list > li .item-card ul.scene > li.sports{
    background-color: #ffe7b8;
    color: #e28a00;
}
.items-list > li .item-card p.lot{
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	background-color: #f4f8fd;
	color: var(--color-primary);
	margin-top: 15px;
	padding: 5px;
	font-size: 14px;
	text-align: center;
	line-height: 1.5em;
	position: relative;
}
.items-list > li .item-card p.lot:before{
	content: "";
	display: block;
	width: 20px;
	height: 20px;
	background: url(../../_images/common/icon-box.webp) no-repeat center;
	background-size: 100% auto;
	filter: brightness(0) saturate(100%) invert(42%) sepia(93%) saturate(2310%) hue-rotate(201deg) brightness(107%) contrast(96%);
}

.items-list > li .item-card:hover{
	border: 1px solid var(--color-accent);
	transform: translateY(-5px);
}

/*カルーセル*/
.carousel-wrap {
	padding: 0;
	position: relative;
	overflow: hidden;
}
.carousel-wrap .items-carousel{
	padding: 10px 20px 40px;
}

.carousel-wrap .items-carousel .swiper-pagination-bullet-active{
	background-color: var(--color-accent);
}

/**/
.items-carousel .swiper-button-prev,
.items-carousel .swiper-button-next{
	width: 50px;
	height: 50px;
	background-color: var(--color-white);
	border: 1px solid var(--color-primary);
	border-radius: 50%;
	top: calc(50% - 5px);
}
.items-carousel .swiper-button-prev{
	left: 0;
}
.items-carousel .swiper-button-next{
	right: 0;
}
.items-carousel .swiper-button-prev:after,
.items-carousel .swiper-button-next:after{
	content: "";
	display: block;
	width: 20px;
	height: 30px;
	background: url(../../_images/common/icon-arrow.webp) no-repeat center;
	background-size: 100% auto;
	filter: brightness(0) saturate(100%) invert(15%) sepia(85%) saturate(876%) hue-rotate(163deg) brightness(98%) contrast(102%);
}
.items-carousel .swiper-button-prev:after{
	left: -5px;
	transform: scale(-1, 1);
}
.items-carousel .swiper-button-next:after{
	right: -5px;
}

/*--最近見た--*/
.recent > ul > li .item-card{
	padding: 15px;
}
.recent > ul > li .item-card p.name{
	display: -webkit-box;
	-webkit-box-orient: vertical;
	font-size: 14px;
	text-overflow: ellipsis;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	overflow: hidden;
}
.recent > ul > li .item-card p.lot{
	gap: 5px;
	font-size: 12px;
}
.recent > ul > li .item-card p.lot:before{
	width: 15px;
	height: 15px;
}

/**/
.items-carousel.recent .swiper-button-prev,
.items-carousel.recent .swiper-button-next{
	width: 40px;
	height: 40px;
}
.items-carousel.recent .swiper-button-prev:after,
.items-carousel.recent .swiper-button-next:after{
	width: 15px;
	height: 25px;
	font-size: 25px;
}

@media screen and ( max-width: 810px ){
	.carousel-wrap {
		padding: 0;
	}
	.carousel-wrap .items-carousel{
		padding: 0 15px 40px;
	}
	.items-list > li .item-card ul.icon > li{
		padding: 0 10px;
	}
	.items-list > li .item-card p.name{
		font-size: 16px;
	}
	.items-list > li .item-card p.code{
		font-size: 15px;
	}
	.items-list > li .item-card p.lot{
		font-size: 14px;
	}
	
	/**/
	.items-carousel .swiper-button-prev,
	.items-carousel .swiper-button-next{
		width: 46px;
		height: 46px;
	}
	/* SP: トレンド/人気グッズ等（.related）は左右矢印が下部に回り込み崩れるため非表示 */
	.items-carousel.related .swiper-button-prev,
	.items-carousel.related .swiper-button-next{
		display: none;
	}
	.items-carousel .swiper-button-prev:after,
	.items-carousel .swiper-button-next:after{
		width: 16px;
		height: 25px;
		font-size: 25px;
	}
	.items-carousel .swiper-button-prev:after{
		left: -8px;
	}
	.items-carousel .swiper-button-next:after{
		right: -8px;
	}
}
@media screen and ( max-width: 480px ){
	.items-list > li .item-card{
		padding: 15px;
	}
	.items-list > li .item-card ul.icon {
		margin-bottom: 5px;
	}
	.items-list > li .item-card ul.icon > li{
		padding: 0 8px;
		font-size: 12px;
	}
	.items-list > li .item-card p.name{
		font-size: 14px;
	}
	.items-list > li .item-card ul.scene{
		gap: 5px;
	}
	.items-list > li .item-card ul.scene > li{
		padding: 0 10px;
		font-size: 12px;
	}
	.items-list > li .item-card p.code{
		font-size: 14px;
	}
	.items-list > li .item-card p.lot{
		font-size: 12px;
	}
	
	/**/
	.items-carousel .swiper-button-prev,
	.items-carousel .swiper-button-next{
		width: 40px;
		height: 40px;
		top: auto;
		bottom: 0;
	}
	.items-carousel .swiper-button-prev:after,
	.items-carousel .swiper-button-next:after{
		width: 16px;
		height: 22px;
		font-size: 22px;
	}
	.items-carousel .swiper-button-prev:after{
		left: -10px;
	}
	.items-carousel .swiper-button-next:after{
		right: -10px;
	}
	
	/**/
	.items-carousel.recent .swiper-button-prev,
	.items-carousel.recent .swiper-button-next{
		width: 40px;
		height: 40px;
	}
	.items-carousel.recent .swiper-button-prev:after,
	.items-carousel.recent .swiper-button-next:after{
		width: 15px;
		height: 25px;
		font-size: 25px;
	}
}



/* ===================================================
   hタグ
=================================================== */
/*汎用見出し*/
.section-title {
    color: var(--color-primary);
    margin-bottom: 35px;
    font-size: 40px;
    font-weight: 900;
    text-align: center;
    line-height: 1.4;
	letter-spacing: 0.08em;
}
.section-title span{
	display: inline-block;
}

/*伸びる見出し*/
.stretch-title-wrap {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 36px;
    position: relative;
}
.stretch-title-wrap .stretch-title {
    flex-shrink: 0;
    color: var(--color-primary);
    font-size: 28px;
    font-weight: 900;
    white-space: nowrap;
    position: relative;
}
.stretch-title-wrap .stretch-title + small{
    display: block;
    color: var(--color-primary);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    position: absolute;
    left: 0;
    bottom: -20px;
}
.stretch-title-wrap .stretch-title br{
	display: none;
}
.stretch-title-wrap .stretch-line {
    display: block;
    height: 1px;
    background-color: #b9d3ec;
    flex: 1;
    min-width: 0;
    transform-origin: left center;
    transform: scaleX(0);
    transition: transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}
.stretch-title-wrap .stretch-line.show {
    transform: scaleX(1);
}

@media screen and ( max-width: 810px ){
	/*汎用見出し*/
    .section-title {
        padding: 0 10px;
        font-size: 35px;
    }
	
    /*伸びる見出し*/
    .stretch-title-wrap {
        gap: 20px;
        margin-left: 20px;
    }
    .stretch-title-wrap .stretch-title {
        font-size: 26px;
		white-space: wrap;
    }
    .stretch-title-wrap .stretch-title br{
		display: inline-block;
	}
}
@media screen and ( max-width: 480px ){
	/*汎用見出し*/
    .section-title {
        font-size: 30px;
    }
}


/* ===================================================
   footer前リンクボタン
=================================================== */
.under-link-box{
	padding: 50px 0;
}
.under-link-box > ul{
	display: flex;
	flex-direction: column;
	gap: 20px;
	max-width: 360px;
	margin: auto;
}
.under-link-box > ul > li{
	text-align: center;
}
.under-link-box > ul > li a{
	display: block;
	padding: 10px 20px;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.8em;
	border-radius: 30px;
	overflow: hidden;
	position: relative;
	z-index: 1;
}
.under-link-box > ul > li.item a:after{
	content: "";
	display: block;
}
.under-link-box > ul > li.item a{
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--color-primary);
	color: var(--color-white);
	padding-right: 40px;
	border: 1px solid var(--color-primary);
}
.under-link-box > ul > li.item a:before{
	content: "";
	display: block;
	width: 30px;
	height: 30px;
	background-color: var(--color-white);
	border-radius: 50%;
	transform: translateY(-50%);
	position: absolute;
	top: 50%;
	right: 15px;
}
.under-link-box > ul > li.item a:after{
	content: "";
	display: block;
	width: 15px;
	height: 15px;
	background: url(../../_images/common/icon-arrow.webp) no-repeat center;
	background-size: 100% auto;
	filter: brightness(0) saturate(100%) invert(15%) sepia(35%) saturate(3036%) hue-rotate(177deg) brightness(100%) contrast(96%);
    transition: transform 0.5s cubic-bezier(0.6, -0.28, 0.735, 0.045);
	position: absolute;
	right: 22px;
}
/* 1. ボタンホバー時に矢印を右側へ消し去る */
.under-link-box > ul > li.item a:hover::after {
  transform: translateX(40px);
  animation: arrow-return 0.5s forwards;
}

/*---*/
.under-link-box > ul > li.top a{
	background-color: #f5f8fb;
	color: var(--color-primary);
	border: 1px solid var(--color-primary);
	transition: all .3s ease;
}
.under-link-box > ul > li.top a:hover{
	box-shadow: 0 0 0 2px var(--color-primary) inset;
}


@keyframes arrow-return {
  0% {
    transform: translateX(0);
    opacity: 1; /* 最初は見えている */
  }
  30% {
    transform: translateX(40px);
    opacity: 0; /* ここで完全に透明にする */
  }
  50% {
    transform: translateX(-40px); /* テキストの後ろにワープ */
    opacity: 0; /* まだ透明のまま */
  }
  70% {
    transform: translateX(-40px);
    opacity: 1; /* ここで透明度を戻し、再登場の準備をする */
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@media screen and ( max-width: 810px ){
	.under-link-box > ul > li{
		text-align: center;
	}
}
@media screen and ( max-width: 480px ){
	.under-link-box > ul{
		width: 85%;
	}
	.under-link-box > ul > li a{
		font-size: 16px;
	}
}

/* ===================================================
   特集・紹介コンテンツ（feature_html / カテゴリ・シーン固有の読み物）
=================================================== */
.feature-section{
	padding: 60px 0;
}
.feature-section .inner-container{
	max-width: 1000px;
	margin: auto;
}
.feature-section h2{
	color: var(--color-primary);
	font-size: 26px;
	font-weight: 800;
	margin: 0 0 18px;
	padding-bottom: 10px;
	border-bottom: 2px solid #b9d3ec;
}
.feature-section h3{
	color: var(--color-primary);
	font-size: 19px;
	font-weight: 700;
	margin: 28px 0 10px;
}
.feature-section p{
	font-size: 15px;
	line-height: 1.9;
	margin-bottom: 14px;
}
.feature-section ul,
.feature-section ol{
	margin: 0 0 16px 1.4em;
}
.feature-section li{
	font-size: 15px;
	line-height: 1.8;
	margin-bottom: 6px;
}
.feature-section ul{ list-style: disc; }
.feature-section ol{ list-style: decimal; }
.feature-section a{
	color: var(--color-blue);
	text-decoration: underline;
}
@media screen and ( max-width: 810px ){
	.feature-section{ padding: 40px 0; }
	.feature-section .inner-container{ margin: 0 20px; }
	.feature-section h2{ font-size: 22px; }
}



/* ===== ボリュームディスカウント グラフ（SVG・下から伸びるアニメ） ===== */
.discount-graph{
	width: 100%;
	max-width: 560px;
	margin: 0 auto;
}
.discount-graph .dg-svg{
	display: block;
	width: 100%;
	height: auto;
}
.discount-graph .dg-base{
	stroke: rgba(255,255,255,.5);
	stroke-width: 2;
}
.discount-graph .dg-bar{
	fill: rgba(255,255,255,.55);
	transform: scaleY(0);
	transform-box: fill-box;
	transform-origin: bottom;
}
.discount-graph .dg-bar.dg-accent{
	fill: #28c8e6;
}
.discount-graph.is-visible .dg-bar{
	animation: dgGrow .9s cubic-bezier(.22,1,.36,1) forwards;
}
.discount-graph.is-visible .dg-bar:nth-of-type(1){ animation-delay: .05s; }
.discount-graph.is-visible .dg-bar:nth-of-type(2){ animation-delay: .20s; }
.discount-graph.is-visible .dg-bar:nth-of-type(3){ animation-delay: .35s; }
.discount-graph.is-visible .dg-bar:nth-of-type(4){ animation-delay: .50s; }
@keyframes dgGrow{ from{ transform: scaleY(0); } to{ transform: scaleY(1); } }
.discount-graph .dg-axis{
	display: flex;
	list-style: none;
	margin: 8px 0 0;
	padding: 0;
}
.discount-graph .dg-axis > li{
	flex: 1;
	text-align: center;
	color: #fff;
	font-size: 14px;
	font-weight: 700;
}
.discount-graph .dg-note{
	margin: 12px 0 0;
	color: rgba(255,255,255,.85);
	font-size: 12px;
	text-align: center;
	line-height: 1.6;
}
@media screen and ( max-width: 480px ){
	.discount-graph .dg-axis > li{ font-size: 12px; }
	.discount-graph .dg-note{ font-size: 11px; }
}
@media (prefers-reduced-motion: reduce){
	.discount-graph .dg-bar{ transform: scaleY(1); animation: none; }
}

/* ボリュームディスカウント：凡例・矢印・バッジ（訴求強化） */
.discount-graph .dg-svg{ overflow: visible; }
.discount-graph .dg-ylabel,
.discount-graph .dg-xlabel{ fill:#fff; font-size:15px; font-weight:700; }
.discount-graph .dg-xlabel{ text-anchor:middle; }
.discount-graph .dg-axisline{ stroke:rgba(255,255,255,.5); stroke-width:2; }
.discount-graph .dg-line{
	stroke:#ff3b3b; stroke-width:6; stroke-linecap:round; stroke-linejoin:round; fill:none;
	stroke-dasharray:440; stroke-dashoffset:440;
}
.discount-graph .dg-arrowhead{ fill:#ff3b3b; opacity:0; }
.discount-graph .dg-badge-text{ fill:#1a1a1a; font-size:20px; font-weight:700; }
.discount-graph .dg-badge{ opacity:0; transform:scale(.5); transform-box:fill-box; transform-origin:center; }
.discount-graph.is-visible .dg-line{ animation:dgDraw .85s ease .55s forwards; }
.discount-graph.is-visible .dg-arrowhead{ animation:dgFade .3s ease 1.35s forwards; }
.discount-graph.is-visible .dg-badge{ animation:dgPop .5s cubic-bezier(.34,1.56,.64,1) 1.0s forwards; }
@keyframes dgDraw{ to{ stroke-dashoffset:0; } }
@keyframes dgFade{ to{ opacity:1; } }
@keyframes dgPop{ to{ opacity:1; transform:scale(1); } }
@media (prefers-reduced-motion: reduce){
	.discount-graph .dg-line{ stroke-dashoffset:0; }
	.discount-graph .dg-arrowhead{ opacity:1; }
	.discount-graph .dg-badge{ opacity:1; transform:none; }
}

/* シーン/カテゴリ商品一覧のカテゴリ軸 絞り込みボタン */
.cat-filter{
	display: flex;
	flex-wrap: wrap;
	gap: 8px 8px;
	margin: 0 0 24px;
}
.cat-filter .cat-filter-btn{
	display: inline-block;
	background-color: #fff;
	color: var(--color-primary);
	padding: 6px 18px;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.4;
	text-align: center;
	white-space: nowrap;
	border: 1px solid var(--color-border);
	border-radius: 20px;
	transition: background-color .2s, color .2s, border-color .2s;
}
.cat-filter .cat-filter-btn:hover{ border-color: var(--color-primary); }
.cat-filter .cat-filter-btn.is-active{
	background-color: var(--color-primary);
	color: #fff;
	border-color: var(--color-primary);
}
@media screen and ( max-width: 480px ){
	.cat-filter{ gap: 6px; }
	.cat-filter .cat-filter-btn{ padding: 4px 14px; font-size: 13px; }
}

/* 絞り込みボタンのアンカー着地：固定ヘッダー分の余白（4選直下＝定番グッズ見出しに合わせる） */
#item{ scroll-margin-top: 100px; }
@media screen and ( max-width: 810px ){ #item{ scroll-margin-top: 76px; } }

/* SP：絞り込みボタンを2段の横スクロールに（内容幅は可変・縦そろえ不要）。
   商品群（items-listのpadding 15px）と左右インセットを揃える */
@media screen and ( max-width: 810px ){
	.cat-filter{
		display: flex;
		flex-wrap: nowrap;            /* 1列（1行）で横スクロール */
		gap: 8px;
		margin: 0 0 20px;
		padding: 0 15px 8px;          /* 左右15px＝商品群と同じ／下はスクロール余白 */
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
	}
	.cat-filter::-webkit-scrollbar{ display: none; }
	.cat-filter .cat-filter-btn{ flex: 0 0 auto; }   /* 縮まず内容幅のまま横スクロール */
}
/* 切り替え時のフェード（Ajax差し替えと併用） */
.index-list-box{ transition: opacity .25s ease; }
.index-list-box.is-swapping{ opacity: 0; }

/* メニューモーダル：左右を独立した列にして縦詰め（行を共有しない＝余白防止） */
.nav-overlay .ov-col{ display: flex; flex-direction: column; gap: 30px; }

/* PC：メニューモーダル（幅1300）。フッター準拠の2カラム。
   1行目=キーワード検索（全幅）／左列=シーン・カテゴリ／右列=ガイド・サービス（各列独立で縦詰め） */
@media screen and ( min-width: 811px ){
	.nav-overlay .nav-overlay-inner{ max-width: 1300px; padding: 0 60px; }
	.nav-overlay .overlay-cont{ max-width: 1300px; max-height: 100vh; padding: 32px 10px; }
	.nav-overlay .overlay-cont > dl{
		display: grid;
		grid-template-columns: 60% 1fr;   /* 左：シーン/カテゴリ(約650px)／右：ガイド/サービス */
		column-gap: 56px;
		row-gap: 28px;
		align-items: start;
		margin-bottom: 60px;
	}
	.nav-overlay .overlay-cont > dl > .ov-search{ grid-column: 1 / -1; }   /* キーワード検索（全幅） */
	.nav-overlay .overlay-cont > dl > .ov-col-left{ grid-column: 1; }      /* 左列：シーン＋カテゴリ */
	.nav-overlay .overlay-cont > dl > .ov-col-right{ grid-column: 2; }     /* 右列：ガイド＋サービス */
	.nav-overlay .overlay-cont > dl div dt{ margin-bottom: 12px; font-size: 18px; }
	/* ガイド・サービスはフッター同様の1列（カテゴリは基底の2列を使用） */
	.nav-overlay .nav-overlay-nav.guide .nav-overlay-list,
	.nav-overlay .nav-overlay-nav.service .nav-overlay-list{ grid-template-columns: 1fr; }
	/* お問い合わせ：中央寄せのままサイズ縮小（巨大化＆スクロール対策） */
	.nav-overlay ul.contact-link{ max-width: 760px; gap: 16px; }
	.nav-overlay ul.contact-link li a{ min-height: 54px; padding: 8px; }
	.nav-overlay ul.contact-link li p{ font-size: 13px; margin-bottom: 6px; }
	.nav-overlay ul.contact-link li.link a{ font-size: 18px; }
	.nav-overlay ul.contact-link li.link a:after{ width: 24px; height: 24px; }
	.nav-overlay ul.contact-link li.tel a span{ font-size: 9px; }
	/* モーダル内フォントを2px縮小 */
	.nav-overlay .over-search .search-input{ font-size: 14px; }
	.nav-overlay .nav-overlay-list li a{ font-size: 14px; }
	.nav-overlay ul.scene-list > li .scene-name{ font-size: 16px; }
}
@media screen and ( min-width: 1201px ){
	.nav-overlay .overlay-cont > dl{
		grid-template-columns: 650px 1fr;   /* 左：シーン/カテゴリ(約1200px)／右：ガイド/サービス */
	}
}
