/* リセットとベーススタイル */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	overflow-x: hidden;
	width: 100%;
}

body {
	font-family: "Noto Sans JP", "Hiragino Sans", "ヒラギノ角ゴシック", Arial, Meiryo, "メイリオ", sans-serif;
	line-height: 1.8;
	color: #1a202c;
	background-color: #f8fafc;
	background-image:
		radial-gradient(circle at 25px 25px, rgba(36, 69, 131, 0.03) 2px, transparent 2px),
		radial-gradient(circle at 75px 75px, rgba(36, 69, 131, 0.02) 1px, transparent 1px);
	background-size: 100px 100px;
	font-size: 15px;
	overflow-x: hidden;
	width: 100%;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

a {
	text-decoration: none;
	color: inherit;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* ヘッダー */
.header {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: #4cccfd;
}

.header-top {
	background: linear-gradient(135deg, #1e3a8a 0%, #312e81 50%, #4c1d95 100%);
	background-size: 200% 100%;
	animation: gradientShift 8s ease infinite;
	color: #fff;
	padding: 8px 0;
}

@keyframes gradientShift {
	0%, 100% { background-position: 0% 50%; }
	50% { background-position: 100% 50%; }
}

.header-top-content {
	display: flex;
	justify-content: flex-end;
}

.header-links {
	display: flex;
	gap: 30px;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.5px;
}

.header-links a {
	color: #fff;
	padding: 6px 14px;
	border-radius: 20px;
	transition: all 0.3s ease;
	position: relative;
}

.header-links a::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.1);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.header-links a:hover::before {
	opacity: 1;
}

.header-main-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 100px;
}

.logo h1 img {
	max-width: 150px;
}

/* ハンバーガーメニューボタン */
.mobile-menu-toggle {
	display: none;
	flex-direction: column;
	gap: 6px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 10px;
}

.mobile-menu-toggle span {
	display: block;
	width: 30px;
	height: 3px;
	background: #FFF;
	border-radius: 3px;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-toggle.active span:nth-child(1) {
	transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
	opacity: 0;
	transform: scale(0);
}

.mobile-menu-toggle.active span:nth-child(3) {
	transform: rotate(-45deg) translate(7px, -7px);
}

/* グローバルナビゲーション */
.global-nav {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	flex: 1;
	height: 100%;
}

.global-nav * {
	height: 100%;
}

.nav-list {
	display: flex;
	justify-content: flex-end;
	list-style: none;
}

.nav-item {
	position: relative;
	width: 170px;
}

.nav-item > a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	color: #FFF;
	font-weight: 700;
	font-size: 18px;
	position: relative;
	letter-spacing: 0.5px;
}

.nav-item > a:hover,
.nav-item.has-megamenu:hover > a {
	background: #FFF;
	color: #ec0000;
}

/* メガメニュー */
.megamenu {
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%) translateY(10px);
	height: auto;
	background-color: #fff;
	box-shadow: 0 20px 60px rgba(36, 69, 131, 0.15);
	opacity: 0;
	visibility: hidden;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	min-width: 700px;
	overflow: hidden;
	border: 1px solid rgba(36, 69, 131, 0.08);
}

.nav-item.has-megamenu:hover .megamenu {
	opacity: 1;
	visibility: visible;
	transform: translateX(-50%) translateY(0);
}

.megamenu-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
	gap: 10px;
	padding: 15px;
}

.megamenu-column {
	background: #ffffff;
	overflow: hidden;
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	border: 1px solid #f2f2f2;
	position: relative;
	cursor: pointer;
}

.megamenu-column:hover {
	transform: translateY(-4px);
	border: 1px solid #ff8f45;
	box-shadow: 0 5px 15px rgba(36, 69, 131, 0.2);
}

.megamenu-column a {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	padding: 12px 0;
	overflow: hidden;
}

.megamenu-column img {
	width: 40%;
	height: auto;
	transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.megamenu-column:hover img {
	transform: scale(1.08);
}

.megamenu-column a span {
	display: none;
}

.megamenu-column .logo-musemolds {
	width: 50%;
}

.megamenu-column .logo-solaraingoods {
	width: 35%;
}

/* メインビジュアル（カルーセル） */
.main-visual {
	position: relative;
	width: 100%;
	background: linear-gradient(180deg, #fbfdff 0%, #f8fafc 100%);
	padding: 20px 0;
	overflow: hidden;
}

.main-visual::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image:
		radial-gradient(ellipse at 10% 20%, rgba(36, 69, 131, 0.08) 0%, transparent 40%),
		radial-gradient(ellipse at 90% 80%, rgba(36, 69, 131, 0.06) 0%, transparent 40%),
		linear-gradient(
			90deg,
			transparent 0%,
			transparent 49.5%,
			rgba(36, 69, 131, 0.02) 49.5%,
			rgba(36, 69, 131, 0.02) 50.5%,
			transparent 50.5%,
			transparent 100%
		);
	background-size: 100% 100%, 100% 100%, 80px 80px;
	pointer-events: none;
}

.main-visual::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 100px;
	background: linear-gradient(180deg, transparent 0%, rgba(248, 250, 252, 0.8) 100%);
	pointer-events: none;
}

/* Slickスライダー */
.main-slider {
	position: relative;
	z-index: 1;
}

.main-slider .slide {
	margin: 0 15px;
	border: 3px solid rgba(255, 255, 255, 0.8);
	transition: transform 0.4s ease, opacity 0.4s ease;
	position: relative;
}

.main-slider .slick-slide {
	filter: brightness(0.6);
	transition: filter 0.4s ease;
}

.main-slider .slick-slide.slick-current {
	filter: brightness(1);
	border: 3px solid #ff832f;
}

.main-slider .slick-slide:not(.slick-center) .slide {
	transform: scale(0.95);
}

.main-slider .slide a {
	display: block;
	width: 100%;
	height: 100%;
	overflow: hidden;
	position: relative;
}

.main-slider .slide img {
	display: block;
	width: auto;
	height: 340px;
}

/* Slick矢印ボタン */
.main-slider .slick-prev,
.main-slider .slick-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	color: transparent;
	border: none;
	font-size: 0;
	width: 55px;
	height: 160px;
	cursor: pointer;
	transition: background-color 0.3s ease;
	z-index: 10;
	background-color: #4cccfd;
	background-image: url('../img/slider/arrow.png');
	background-repeat: no-repeat;
	background-position: center;
	background-size: 35% auto;
}

.main-slider .slick-prev {
	transform: translateY(-50%) scaleX(-1);
}

.main-slider .slick-prev:hover,
.main-slider .slick-next:hover {
	background-color: #ff8f45;
}

.main-slider .slick-prev::before,
.main-slider .slick-next::before {
	display: none;
}

/* Slickドットインジケーター */
.main-slider .slick-dots {
	bottom: -40px;
	z-index: 10;
}

.main-slider .slick-dots li {
	margin: 0 5px;
}

.main-slider .slick-dots li button {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background-color: rgba(30, 58, 138, 0.2);
	border: none;
	padding: 0;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-slider .slick-dots li button::before {
	display: none;
}

.main-slider .slick-dots li button:hover {
	transform: scale(1.4);
	background-color: rgba(30, 58, 138, 0.4);
}

.main-slider .slick-dots li.slick-active button {
	background: #4dcdfe;
	transform: scale(1.4);
	box-shadow: 0 0 20px rgba(76, 29, 149, 0.6);
}

/* メインコンテンツ */
.main-content {
	padding: 0 50px;
	position: relative;
}

.section {
	margin-bottom: 0;
}

/* セクションヘッダー */
.section-header {
	text-align: center;
	margin-bottom: 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0;
}

.section-title {
	font-size: 32px;
	color: #4cccfd;
	margin: 0;
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	font-weight: 800;
	letter-spacing: 3px;
}

.section-title i {
	background: linear-gradient(135deg, #1e3a8a 0%, #312e81 50%, #4c1d95 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	font-size: 28px;
}

.section-subtitle {
	font-size: 18px;
	color: #979797;
	text-transform: uppercase;
	letter-spacing: 4px;
	font-weight: 600;
	position: relative;
	display: inline-block;
	padding: 0 40px;
	margin-top: -10px;
}

/* ブランドセクション */
.brand-section {
	background: #f2f2f2;
	padding: 30px 0;
	margin: 0;
	width: 100vw;
	position: relative;
	left: 50%;
	right: 50%;
	margin-left: -50vw;
	margin-right: -50vw;
	border-radius: 0;
}

.brand-section .container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	position: relative;
	z-index: 1;
}

.brand-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 20px;
}

.brand-card {
	background: #ffffff;
	overflow: hidden;
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	border: 2px solid rgba(36, 69, 131, 0.08);
	position: relative;
	cursor: pointer;
}

.brand-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 10px 40px rgba(36, 69, 131, 0.25);
	border-color: #ff8f45;
}

.brand-card a {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	padding: 20px 0 40px;
	overflow: hidden;
	position: relative;
}

.brand-card a::after {
	content: attr(data-label);
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	background: #ff8f45;
	color: #fff;
	font-weight: 700;
	font-size: 14px;
	letter-spacing: 0.5px;
	text-align: center;
	padding: 1px 0;
	opacity: 0;
	visibility: hidden;
	transform: translateY(100%);
	transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, visibility 0.3s ease;
}

.brand-card:hover a::after {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.brand-card img {
	width: 40%;
	height: auto;
	transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.brand-card:hover img {
	transform: scale(1.08);
}

.brand-card .logo-musemolds {
	width: 50%;
}

.brand-card .logo-solaraingoods {
	width: 35%;
}

/* 商品セクション - 完全左右ぶち抜き */
.products-section {
	background:
			linear-gradient(135deg, #f0f4f8 0%, #ffffff 50%, #f0f4f8 100%);
	padding: 30px 0 80px;
	margin: 0;
	width: 100vw;
	position: relative;
	left: 50%;
	right: 50%;
	margin-left: -50vw;
	margin-right: -50vw;
	overflow: hidden;
}

.products-section .pattern-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image:
		radial-gradient(circle at 20% 30%, rgba(36, 69, 131, 0.05) 0%, transparent 50%),
		radial-gradient(circle at 80% 70%, rgba(36, 69, 131, 0.05) 0%, transparent 50%),
		repeating-radial-gradient(
			circle at 50% 50%,
			transparent 0px,
			transparent 40px,
			rgba(36, 69, 131, 0.01) 40px,
			rgba(36, 69, 131, 0.01) 41px
		);
	pointer-events: none;
}

.products-section .container {
	max-width: 100%;
	padding: 0 40px;
}

.product-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: 24px;
	width: 100%;
}

.product-card {
	background-color: #fff;
	border: 2px solid rgba(36, 69, 131, 0.08);
	overflow: hidden;
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	display: block;
	position: relative;
	box-shadow: 0 6px 20px rgba(36, 69, 131, 0.08);
}

.product-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 15px 50px rgba(36, 69, 131, 0.25);
	border-color: #ff8f45;
}

.product-card img {
	width: 100%;
	height: auto;
	aspect-ratio: 1;
	object-fit: cover;
	transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	background: linear-gradient(135deg, #f7fafc 0%, #ffffff 100%);
}

.product-card:hover img {
	transform: scale(1.05);
}

.product-card .brand-name {
	padding: 12px 12px 0;
	font-size: 12px;
	font-weight: bold;
	color: #979797;
	line-height: 1.4;
	transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card h3 {
	padding: 5px 12px;
	font-size: 16px;
	color: #1a202c;
	font-weight: 700;
	line-height: 1.3;
	transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.brand-product-grid .product-card h3 {
	padding: 15px 12px 5px;
}

.product-card .price {
	padding: 0 12px 12px;
	font-size: 18px;
	font-weight: 800;
	color: #4cccfd;
	letter-spacing: 0.5px;
	transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .brand-name,
.product-card:hover h3,
.product-card:hover .price {
	color: #ff8f45;
}

/* ページヘッダー（下層ページ共通） */
.page-header {
	position: relative;
	overflow: hidden;
	margin-bottom: 60px;
	padding: 50px 0;
	background: linear-gradient(135deg, #1e3a8a 0%, #312e81 50%, #4c1d95 100%);
	text-align: center;
}

.page-title {
	font-size: 32px;
	color: #fff;
	font-weight: 800;
	letter-spacing: 3px;
	position: relative;
}

.page-title i {
	margin-right: 12px;
}

.page-subtitle {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.7);
	text-transform: uppercase;
	letter-spacing: 4px;
	font-weight: 600;
	margin-top: 4px;
	position: relative;
}

/* 採用情報ページ */
.recruit-section {
	margin-bottom: 60px;
}

.recruit-heading {
	font-size: 24px;
	font-weight: 800;
	color: #1a202c;
	padding-bottom: 14px;
	margin-bottom: 30px;
	border-bottom: 3px solid;
	border-image: linear-gradient(135deg, #1e3a8a 0%, #312e81 50%, #4c1d95 100%) 1;
	letter-spacing: 1px;
}

.recruit-card {
	background: #fff;
	border-radius: 16px;
	padding: 40px;
	margin-bottom: 30px;
	box-shadow: 0 6px 20px rgba(36, 69, 131, 0.08);
	border: 1px solid rgba(36, 69, 131, 0.08);
}

.recruit-card-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 16px;
}

.recruit-card-header h4 {
	font-size: 22px;
	font-weight: 800;
	color: #1e3a8a;
	letter-spacing: 0.5px;
}

.recruit-badge {
	background: linear-gradient(135deg, #1e3a8a 0%, #4c1d95 100%);
	color: #fff;
	padding: 6px 18px;
	border-radius: 20px;
	font-size: 13px;
	font-weight: 700;
}

.recruit-note {
	color: #718096;
	font-size: 14px;
	margin-bottom: 24px;
}

.recruit-table {
	width: 100%;
	border-collapse: collapse;
}

.recruit-table tr {
	border-bottom: 1px solid rgba(36, 69, 131, 0.08);
}

.recruit-table tr:last-child {
	border-bottom: none;
}

.recruit-table th {
	width: 140px;
	padding: 20px 20px 20px 0;
	font-size: 14px;
	font-weight: 700;
	color: #1e3a8a;
	vertical-align: top;
	text-align: left;
	white-space: nowrap;
}

.recruit-table td {
	padding: 20px 0;
	font-size: 15px;
	color: #2d3748;
	line-height: 1.8;
}

.recruit-table td ul {
	list-style: none;
	padding: 0;
}

.recruit-table td ul li {
	padding-left: 18px;
	position: relative;
	margin-bottom: 4px;
}

.recruit-table td ul li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 11px;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: linear-gradient(135deg, #1e3a8a 0%, #4c1d95 100%);
}

.recruit-table td p {
	margin-bottom: 8px;
}

.recruit-table td p strong {
	color: #1e3a8a;
	font-size: 13px;
	letter-spacing: 0.5px;
}

/* 募集職種リスト */
.recruit-position-list {
	list-style: none;
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}

.recruit-position-list li {
	padding: 10px 24px;
	background: linear-gradient(135deg, #f7fafc 0%, #ffffff 100%);
	border-radius: 8px;
	border: 1px solid rgba(36, 69, 131, 0.1);
	font-weight: 700;
	color: #1e3a8a;
}

/* 採用カード内の見出し・テキスト */
.recruit-sub-heading {
	font-size: 17px;
	font-weight: 800;
	color: #1e3a8a;
	margin: 30px 0 12px;
	padding-left: 14px;
	border-left: 4px solid;
	border-image: linear-gradient(180deg, #1e3a8a 0%, #4c1d95 100%) 1;
}

.recruit-sub-heading:first-of-type {
	margin-top: 24px;
}

.recruit-description {
	font-size: 15px;
	color: #2d3748;
	line-height: 1.8;
	margin-bottom: 16px;
}

.recruit-task-title {
	font-size: 14px;
	font-weight: 700;
	color: #1e3a8a;
	margin: 20px 0 8px;
}

.recruit-list {
	list-style: none;
	padding: 0;
	margin-bottom: 8px;
}

.recruit-list li {
	padding-left: 18px;
	position: relative;
	margin-bottom: 4px;
	font-size: 15px;
	color: #2d3748;
	line-height: 1.8;
}

.recruit-list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 11px;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: linear-gradient(135deg, #1e3a8a 0%, #4c1d95 100%);
}

.recruit-notes {
	list-style: none;
	margin-top: 20px;
	padding: 16px 20px;
	background: rgba(36, 69, 131, 0.03);
	border-radius: 8px;
}

.recruit-notes li {
	font-size: 13px;
	color: #718096;
	padding-left: 16px;
	position: relative;
	margin-bottom: 4px;
	line-height: 1.8;
}

.recruit-notes li::before {
	content: '※';
	position: absolute;
	left: 0;
}

/* 待遇リスト */
.recruit-benefits {
	list-style: none;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 20px;
}

.recruit-benefits li {
	display: flex;
	align-items: center;
	gap: 14px;
	font-size: 15px;
	color: #2d3748;
	padding: 16px 20px;
	background: linear-gradient(135deg, #f7fafc 0%, #ffffff 100%);
	border-radius: 12px;
	border: 1px solid rgba(36, 69, 131, 0.06);
}

.recruit-benefits li i {
	color: #1e3a8a;
	font-size: 20px;
	width: 24px;
	text-align: center;
	flex-shrink: 0;
}

/* 選考フロー */
.recruit-flow {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	flex-wrap: wrap;
	margin-bottom: 20px;
}

.flow-step {
	text-align: center;
	background: #fff;
	padding: 30px 40px;
	border-radius: 16px;
	box-shadow: 0 6px 20px rgba(36, 69, 131, 0.08);
	border: 1px solid rgba(36, 69, 131, 0.08);
	min-width: 140px;
}

.flow-icon {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: linear-gradient(135deg, #1e3a8a 0%, #4c1d95 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 14px;
}

.flow-icon i {
	color: #fff;
	font-size: 24px;
}

.flow-step p {
	font-weight: 700;
	color: #1a202c;
	font-size: 15px;
}

.flow-arrow {
	color: #1e3a8a;
	font-size: 24px;
}

.flow-note {
	text-align: center;
	color: #718096;
	font-size: 14px;
}

/* 応募方法 */
.recruit-apply p {
	font-size: 15px;
	color: #2d3748;
	margin-bottom: 20px;
	line-height: 1.8;
}

.recruit-email {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 20px 30px;
	background: linear-gradient(135deg, #f0f4f8 0%, #ffffff 100%);
	border-radius: 12px;
	border: 1px solid rgba(36, 69, 131, 0.1);
	margin-bottom: 20px;
	width: fit-content;
}

.recruit-email i {
	color: #1e3a8a;
	font-size: 20px;
}

.recruit-email a {
	font-size: 18px;
	font-weight: 700;
	color: #1e3a8a;
}

.recruit-email a:hover {
	color: #4c1d95;
}

.recruit-apply-note {
	font-size: 13px;
	color: #718096;
}

/* ブランド商品一覧ページ */
.brand-product-list {
	position: relative;
	padding: 60px 0 80px;
	overflow: hidden;
	min-height: 60vh;
}

.brand-product-list-bg {
	position: absolute;
	top: 50%;
	right: -10px;
	transform: translateY(-50%);
	font-size: 200px;
	font-weight: 900;
	color: rgba(36, 69, 131, 0.04);
	letter-spacing: 15px;
	writing-mode: vertical-rl;
	pointer-events: none;
	z-index: 0;
	line-height: 1;
	user-select: none;
}

.brand-product-list .container {
	position: relative;
	z-index: 1;
}

.brand-product-list-header {
	text-align: center;
	margin-bottom: 30px;
}

.brand-product-list-logo {
	margin-bottom: 10px;
}

.brand-product-list-logo img {
	max-width: 200px;
	margin: 0 auto;
}

.brand-product-list-title {
	font-size: 24px;
	font-weight: 800;
	color: #4cccfd;
	letter-spacing: 2px;
	margin-top: 20px;
}

.brand-product-list-description {
	margin: 16px auto 40px;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.9;
	color: #979797;
	text-align: center;
}

.sushing-description-flex {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 30px;
	margin: 16px auto 40px;
	max-width: 1000px;
}

.sushing-description-flex .brand-product-list-description {
	margin: 0;
	text-align: left;
	flex: 1;
}

.kacha-hover {
	position: relative;
	flex-shrink: 0;
}

.kacha-icon {
	width: 90px;
	height: 90px;
	background: #4cccfd;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background 0.3s ease, transform 0.3s ease;
	box-shadow: 0 4px 12px rgba(76, 204, 253, 0.3);
}

.kacha-icon img {
	height: auto;
	display: block;
}

.kacha-hover:hover .kacha-icon,
.kacha-hover:focus-within .kacha-icon {
	background: #ff8f45;
	box-shadow: 0 4px 12px rgba(255, 143, 69, 0.4);
	transform: scale(1.05);
}

.kacha-popup {
	position: fixed;
	top: 0;
	left: 50%;
	width: min(880px, calc(100vw - 32px));
	background: #ffffff;
	border: 2px solid #4cccfd;
	padding: 28px 36px;
	font-size: 15px;
	line-height: 1.9;
	color: #444;
	text-align: left;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
	opacity: 0;
	visibility: hidden;
	transform: translateX(-50%) translateY(10px);
	transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease;
	pointer-events: none;
	z-index: 1100;
}

.kacha-popup::after {
	content: "";
	position: absolute;
	width: 16px;
	height: 16px;
	background: #ffffff;
	border: 2px solid transparent;
}

.kacha-popup[data-tail-side="bottom"]::after {
	bottom: -10px;
	left: var(--tail-x, 50%);
	transform: translateX(-50%) rotate(45deg);
	border-right-color: #4cccfd;
	border-bottom-color: #4cccfd;
}

.kacha-popup[data-tail-side="top"]::after {
	top: -10px;
	left: var(--tail-x, 50%);
	transform: translateX(-50%) rotate(45deg);
	border-top-color: #4cccfd;
	border-left-color: #4cccfd;
}

.kacha-popup[data-tail-side="right"]::after {
	right: -10px;
	top: var(--tail-y, 50%);
	transform: translateY(-50%) rotate(45deg);
	border-top-color: #4cccfd;
	border-right-color: #4cccfd;
}

.kacha-popup[data-tail-side="left"]::after {
	left: -10px;
	top: var(--tail-y, 50%);
	transform: translateY(-50%) rotate(45deg);
	border-left-color: #4cccfd;
	border-bottom-color: #4cccfd;
}

.kacha-popup p {
	margin: 0 0 10px;
}

.kacha-popup p:last-child {
	margin-bottom: 0;
}

.kacha-popup-note {
	color: #4cccfd;
	font-weight: 600;
	margin-top: 6px;
}

.kacha-hover:hover .kacha-popup,
.kacha-hover:focus-within .kacha-popup,
.kacha-hover.is-active .kacha-popup {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateX(-50%) translateY(0);
}

.brand-product-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: 24px;
	width: 100%;
}

/* ページナビゲーション */
.pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
	margin-top: 50px;
}

.pagination-prev,
.pagination-next {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	font-size: 16px;
	font-weight: 700;
	color: #244583;
	transition: color 0.3s ease;
}

.pagination-prev:hover,
.pagination-next:hover {
	color: #e67e22;
}

.pagination-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 4px;
	font-size: 14px;
	font-weight: 700;
	color: #1a202c;
	transition: all 0.3s ease;
}

.pagination-link:hover {
	background: rgba(36, 69, 131, 0.08);
	color: #244583;
}

.pagination-link.active {
	background: linear-gradient(135deg, #1e3a8a 0%, #312e81 100%);
	color: #fff;
}

/* 商品詳細ページ */
.product-detail {
	position: relative;
	padding: 40px 0 80px;
	overflow: hidden;
	min-height: 60vh;
}

.product-detail-bg {
	position: absolute;
	top: 50%;
	right: -10px;
	transform: translateY(-50%);
	font-size: 200px;
	font-weight: 900;
	color: rgba(36, 69, 131, 0.04);
	letter-spacing: 15px;
	writing-mode: vertical-rl;
	pointer-events: none;
	z-index: 0;
	line-height: 1;
	user-select: none;
}

.product-detail .container {
	position: relative;
	z-index: 1;
}

/* 商品タイトル */
.product-detail-header {
	text-align: center;
	margin-bottom: 30px;
}

.product-series {
	margin-bottom: 20px;
}

.product-series img {
	display: block;
	margin: auto;
}

.product-contents {
	color: #ff8f45;
	font-size: 18px;
	font-weight: bold;
}

.product-name {
	font-size: 28px;
	font-weight: 800;
	color: #1a202c;
	letter-spacing: 2px;
}

/* スライダーエリア */
.product-slider-area {
	max-width: 800px;
	margin: 0 auto 20px;
	position: relative;
	padding: 30px 0 20px;
	border-top: 1px solid #e0e0e0;
	border-bottom: 1px solid #e0e0e0;
}

/* メインスライダー */
.product-slider-main {
	margin-bottom: 15px;
}

.product-slider-main .product-slide {
	outline: none;
}

.product-slider-main .product-slide img {
	height: 700px;
	max-width: 100%;
	object-fit: contain;
	display: block;
	margin: 0 auto;
}

.product-slider-main .slick-prev,
.product-slider-main .slick-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	color: transparent;
	border: none;
	font-size: 0;
	width: 55px;
	height: 160px;
	cursor: pointer;
	transition: background-color 0.3s ease;
	z-index: 10;
	background-color: #4cccfd;
	background-image: url('../img/slider/arrow.png');
	background-repeat: no-repeat;
	background-position: center;
	background-size: 35% auto;
}

.product-slider-main .slick-prev:hover,
.product-slider-main .slick-next:hover {
	background-color: #ff8f45;
}

.product-slider-main .slick-prev::before,
.product-slider-main .slick-next::before {
	display: none;
}

.product-slider-main .slick-prev {
	left: -50px;
	transform: translateY(-50%) scaleX(-1);
}

.product-slider-main .slick-next {
	right: -50px;
}

/* サムネイルスライダー */
.product-slider-thumb {
	max-width: 800px;
	margin: 0 auto;
	padding: 20px 120px 0;
	border-top: 1px solid #e0e0e0;
}

.product-slider-thumb .product-thumb {
	padding: 0 4px;
	cursor: pointer;
	outline: none;
	display: flex !important;
	justify-content: center;
}

.product-slider-thumb .product-thumb img {
	max-width: 100px;
	max-height: 100px;
	width: 100%;
	height: auto;
	display: block;
	border: 3px solid transparent;
	transition: border-color 0.3s ease, opacity 0.3s ease;
	opacity: 0.5;
}

.product-slider-thumb .product-thumb.is-active img {
	border-color: #e67e22 !important;
	opacity: 1 !important;
}

.product-slider-thumb .product-thumb:hover img {
	opacity: 0.8;
}

.product-slider-thumb .slick-prev,
.product-slider-thumb .slick-next {
	position: absolute;
	top: 60%;
	transform: translateY(-50%);
	background: none;
	border: none;
	font-size: 36px;
	color: #e67e22;
	cursor: pointer;
	z-index: 10;
	padding: 0;
	transition: color 0.3s ease;
	width: auto;
	height: auto;
}

.product-slider-thumb .slick-prev:hover,
.product-slider-thumb .slick-next:hover {
	color: #d35400;
}

.product-slider-thumb .slick-prev::before,
.product-slider-thumb .slick-next::before {
	display: none;
}

.product-slider-thumb .slick-prev {
	left: 50px;
}

.product-slider-thumb .slick-next {
	right: 50px;
}

/* 購入ボタン */
.product-purchase {
	text-align: center;
	margin-bottom: 50px;
}

.purchase-btn {
	display: inline-block;
	padding: 14px 60px;
	background: linear-gradient(135deg, #1e3a8a 0%, #312e81 100%);
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 4px;
	border-radius: 4px;
	transition: all 0.3s ease;
}

.purchase-btn:hover {
	opacity: 0.9;
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(36, 69, 131, 0.3);
	color: #fff;
}

/* 商品仕様 */
.product-specs {
	max-width: 800px;
	margin: 0 auto;
}

.spec-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	border-bottom: 1px solid rgba(36, 69, 131, 0.1);
}

.spec-row:last-child {
	border-bottom: none;
}

.spec-item {
	padding: 16px 0;
}

.spec-item-full {
	grid-column: 1 / -1;
}

.spec-label {
	display: block;
	font-size: 12px;
	color: #718096;
	letter-spacing: 1px;
	margin-bottom: 2px;
	font-weight: 600;
}

.spec-value {
	display: block;
	font-size: 16px;
	font-weight: 700;
	color: #1a202c;
}

/* フッター */
.footer {
	background: #4cccfd;
	background-size: 200% 100%;
	color: #fff;
	padding: 60px 0 30px;
	position: relative;
	overflow: hidden;
}

.footer-content {
	margin-bottom: 50px;
}

.footer-nav {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.footer-column h4 {
	font-size: 18px;
	margin-bottom: 20px;
	color: #fff;
	font-weight: 800;
	letter-spacing: 1px;
	position: relative;
	padding-bottom: 12px;
}

.footer-column h4::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 40px;
	height: 3px;
	background: linear-gradient(90deg, #fff 0%, transparent 100%);
	border-radius: 2px;
}

.footer-column ul {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 10px 40px;
}

.footer-column ul li {
	margin-bottom: 0;
}

.footer-column ul li a {
	color: rgba(255, 255, 255, 0.8);
	font-size: 14px;
	padding: 6px 0;
	display: inline-block;
	transition: all 0.3s ease;
	position: relative;
}

.footer-column ul li a::before {
	content: '→';
	position: absolute;
	left: -20px;
	opacity: 0;
	transition: all 0.3s ease;
}

.footer-column ul li a:hover {
	color: #fff;
	padding-left: 25px;
}

.footer-column ul li a:hover::before {
	opacity: 1;
	left: 0;
}

.footer-bottom {
	text-align: center;
	padding-top: 30px;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.7);
	letter-spacing: 0.5px;
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
	.nav-list {
		gap: 30px;
	}

	.nav-item > a {
		font-size: 14px;
	}

	.megamenu {
		min-width: 600px;
	}

	.main-slider .slide {
		width: 600px;
	}

	.product-grid {
		grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
		gap: 25px;
	}

	.products-section .container {
		padding: 0 30px;
	}

	.product-slider-main .slick-prev {
		left: -15px;
	}

	.product-slider-main .slick-next {
		right: -15px;
	}
}

@media (max-width: 768px) {
	.main-slider .slick-dots {
		display: none !important;
	}

	.slick-dotted.slick-slider {
		margin-bottom: 0;
	}

	/* ブランド商品一覧ページ */
	.brand-product-list {
		padding: 40px 0 60px;
	}

	.brand-product-list-bg {
		font-size: 120px;
		right: -5px;
	}

	.brand-product-list-description {
		font-size: 14px;
		text-align: left;
	}

	.sushing-description-flex {
		flex-direction: column;
		gap: 20px;
	}

	.sushing-description-flex .brand-product-list-description {
		text-align: left;
	}

	.kacha-icon {
		width: 70px;
		height: 70px;
	}

	.kacha-popup {
		width: calc(100vw - 20px);
		font-size: 13px;
		padding: 16px 18px;
		line-height: 1.8;
		border-radius: 10px;
	}

	.brand-product-grid {
		grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
		gap: 20px;
	}

	.brand-product-grid .product-card h3 {
		padding: 12px 12px 5px;
	}

	/* 商品詳細ページ */
	.product-detail {
		padding: 20px 0 60px;
	}

	.product-detail-bg {
		font-size: 120px;
		right: -5px;
	}

	.product-detail-header {
		margin-bottom: 15px;
	}

	.product-series {
		margin-bottom: 10px;
	}

	.product-name {
		font-size: 22px;
	}

	.product-slider-area {
		max-width: 100%;
	}

	.product-slider-main .slick-track {
		display: flex !important;
		align-items: center;
	}

	.product-slider-main .product-slide img {
		height: auto;
		width: 100%;
	}

	.product-slider-main .slick-prev,
	.product-slider-main .slick-next {
		width: 44px;
		height: 52px;
	}

	.product-slider-main .slick-prev {
		left: -10px;
	}

	.product-slider-main .slick-next {
		right: -10px;
	}

	.product-slider-thumb {
		max-width: 100%;
		padding: 20px 25px 0;
	}

	.product-slider-thumb .slick-prev {
		left: -5px;
	}

	.product-slider-thumb .slick-next {
		right: -5px;
	}

	.spec-row {
		grid-template-columns: 1fr;
	}

	.spec-item {
		padding: 12px 0;
	}

	.purchase-btn {
		padding: 12px 40px;
		font-size: 15px;
		letter-spacing: 3px;
	}

	/* 下層ページヘッダー */
	.page-title {
		font-size: 24px;
	}

	/* 採用情報 */
	.recruit-card {
		padding: 24px;
	}

	.recruit-card-header {
		flex-direction: column;
		align-items: flex-start;
	}

	.recruit-card-header h4 {
		font-size: 18px;
	}

	.recruit-table th {
		display: block;
		width: 100%;
		padding: 16px 0 4px;
	}

	.recruit-table td {
		display: block;
		padding: 4px 0 16px;
	}

	.flow-step {
		padding: 20px 30px;
		min-width: 110px;
	}

	.recruit-email {
		width: 100%;
	}

	.recruit-benefits {
		grid-template-columns: 1fr;
	}

	.header-main-content {
		height: auto;
		padding: 8px 0;
	}

	.logo h1 img {
		max-width: 100px;
	}

	/* モバイルメニュー */
	.mobile-menu-toggle {
		display: flex;
	}

	.global-nav {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		display: block;
		height: auto;
		background-color: #4cccfd;
		backdrop-filter: blur(20px);
		box-shadow: 0 10px 30px rgba(36, 69, 131, 0.15);
		opacity: 0;
		visibility: hidden;
		transform: translateY(-20px);
		transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	}

	.global-nav.active {
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
	}

	.nav-list {
		flex-direction: column;
		gap: 0;
	}

	.nav-item {
		width: 100%;
		border-top: 1px solid #FFF;
	}

	.nav-item > a {
		padding: 20px 24px;
		display: flex;
		justify-content: space-between;
		align-items: center;
	}

	.nav-item > a::after {
		content: '\f054';
		font-family: 'Font Awesome 6 Free';
		font-weight: 900;
		font-size: 12px;
		width: auto;
		bottom: auto;
		left: auto;
		transform: none;
		height: auto;
		background: none;
		border-radius: 0;
		position: static;
	}

	.nav-item > a:hover::after {
		width: auto;
	}

	.nav-item.has-megamenu > a::after {
		content: '\f078';
		transition: transform 0.3s ease;
	}

	.nav-item.has-megamenu.active > a::after {
		transform: rotate(180deg);
	}

	.megamenu-item::after {
		content: '\f054';
		font-family: 'Font Awesome 6 Free';
		font-weight: 900;
		font-size: 11px;
		color: #718096;
		margin-left: auto;
	}

	/* モバイルメガメニュー */
	.megamenu {
		position: static !important;
		transform: none !important;
		min-width: auto;
		margin-top: 0;
		box-shadow: none;
		border-radius: 0;
		border: none;
		background-color: #f7fafc;
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
		opacity: 1;
		visibility: visible;
	}

	.nav-item.has-megamenu:hover .megamenu {
		transform: none !important;
	}

	.nav-item.has-megamenu.active .megamenu {
		max-height: 700px;
	}

	.megamenu-content {
		display: flex;
		flex-direction: column;
		padding: 0;
		gap: 0;
	}

	.megamenu-column {
		border-radius: 0;
		border: none;
		border-bottom: 1px solid rgba(36, 69, 131, 0.06);
		background: none;
	}

	.megamenu-column:last-child {
		border-bottom: none;
	}

	.megamenu-column:hover {
		transform: none;
		box-shadow: none;
	}

	.megamenu-column a {
		padding: 14px 24px;
	}

	.megamenu-column img {
		display: none;
	}

	.megamenu-column a span {
		display: inline;
		font-size: 15px;
		font-weight: 600;
		color: #1a202c;
	}

	.megamenu-column a::after {
		content: '\f054';
		font-family: 'Font Awesome 6 Free';
		font-weight: 900;
		font-size: 11px;
		color: #718096;
		margin-left: auto;
	}

	/* カルーセル */
	.main-visual {
		padding: 15px 0;
	}

	.main-slider .slide {
		margin: 0 10px;
	}

	.main-slider .slide img {
		width: 100%;
		height: auto;
	}

	.main-slider .slick-prev,
	.main-slider .slick-next {
		width: 44px;
		height: 52px;
	}

	.main-slider .slick-prev {
		left: 15px;
	}

	.main-slider .slick-next {
		right: 15px;
	}

	/* セクション */
	.section-header {
		margin-bottom: 20px;
		gap: 0;
	}

	.section-title {
		font-size: 26px;
		gap: 5px;
	}

	.section-title i {
		font-size: 24px;
	}

	.section-subtitle {
		font-size: 11px;
		letter-spacing: 3px;
		padding: 0 30px;
	}

	.section-subtitle::before,
	.section-subtitle::after {
		width: 20px;
	}

	.brand-section {
		padding: 40px 0 20px;
	}

	.products-section {
		padding: 40px 0 60px;
	}

	/* グリッド */
	.brand-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
	}

	.brand-card {
		height: 85px;
	}

	.brand-card img {
		width: 60%;
	}

	.brand-card .logo-musemolds {
		width: 70%;
	}

	.brand-card .logo-solaraingoods {
		width: 40%;
	}

	/* スマホではブランド名ラベルを常時表示 */
	.brand-card a::after {
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
		font-size: 12px;
	}

	.brand-card {
		border-color: #ff8f45;
	}

	.product-grid {
		grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
		gap: 20px;
	}

	.products-section .container {
		padding: 0 20px;
	}

	.footer-nav {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.main-content {
		padding: 0;
	}

	.section {
		margin-bottom: 0;
	}
}

@media (max-width: 480px) {
	.logo h1 {
		font-size: 28px;
	}

	.main-slider .slide {
		margin: 0 8px;
	}

	.main-slider .slick-prev,
	.main-slider .slick-next {
		width: 38px;
		height: 46px;
	}

	.main-slider .slick-prev {
		left: 10px;
	}

	.main-slider .slick-next {
		right: 10px;
	}

	.product-slider-thumb .slick-prev {
		left: -10px;
	}

	.product-slider-thumb .slick-next {
		right: -10px;
	}

	.product-slider-thumb .product-thumb img {
		max-width: none;
		max-height: none;
		border-width: 2px;
	}

	.product-slider-thumb .product-thumb {
		padding: 0 2px;
	}

	.section-header {
		margin-bottom: 10px;
		gap: 0;
	}

	.section-title {
		font-size: 24px;
		gap: 0;
		letter-spacing: 2px;
	}

	.section-title i {
		font-size: 22px;
	}

	.section-subtitle {
		font-size: 10px;
		letter-spacing: 2px;
		margin-top: -5px;
		padding: 0 25px;
	}

	.section-subtitle::before,
	.section-subtitle::after {
		width: 15px;
	}

	.brand-section {
		padding: 20px 0;
	}

	.products-section {
		padding: 10px 0 45px;
	}

	.product-grid {
		grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
		gap: 15px;
	}

	.products-section .container {
		padding: 0 15px;
	}

	.main-content {
		padding: 0;
	}

	.section {
		margin-bottom: 0;
	}
}

/* ページトップに戻るボタン */
.page-top {
	position: fixed;
	right: 30px;
	bottom: 30px;
	width: 60px;
	height: 60px;
	padding: 0;
	border: none;
	background: transparent;
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	transform: translateY(20px);
	transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease;
	z-index: 999;
}

.page-top.is-visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.page-top img {
	width: 100%;
	height: 100%;
	display: block;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-top:hover img {
	transform: translateY(-3px);
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
	.page-top {
		right: 15px;
		bottom: 15px;
		width: 50px;
		height: 50px;
	}
}
