@charset "UTF-8";

/* ============================================================
   MyMoods LP — style.css (inline)
   ============================================================ */

/* Shopify header/footer are hidden byat top of file */

:root {
	--w: #fff;
	--b: #000;
	--p1: #2500c1;
	--p2: #242833;
	--p3: #7c3aed;
	--p4: #1e1b4b;
	--p5: #a78bfa;
	--p6: #3b0764;
	--p7: #f8f7ff;
	--ja: "Noto Sans JP", sans-serif;
	--en: "Poppins", sans-serif;
	--thin: 100;
	--exLight: 200;
	--light: 300;
	--regular: 400;
	--medium: 500;
	--sBold: 600;
	--bold: 700;
	--exBold: 800;
	--black: 900;
}

html {
	color: var(--p2);
	font-family: var(--ja);
	font-feature-settings: "palt";
	font-optical-sizing: auto;
	font-size: 2.5641025641vw;
}
@media (min-width: 769px) {
	html {
		font-size: 0.75vw;
		scrollbar-gutter: stable;
	}
}

img { height: auto; width: 100%; }
*, *::before, *::after { box-sizing: border-box; }

/* FV HERO TITLE OVERLAY */
.fv-title-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 20;
	padding: 6vw 5% 4vw;
	background: linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0) 100%);
	pointer-events: none;
}
@media (min-width: 769px) {
	.fv-title-overlay {
		padding: 3vw 8% 2vw;
	}
}
.fv-title-label {
	display: inline-block;
	background: var(--p1);
	color: #fff;
	font-family: var(--ja);
	font-size: clamp(0.8rem, 2.8vw, 1rem);
	font-weight: var(--bold);
	letter-spacing: .18em;
	padding: 0.35rem 1rem;
	border-radius: 30px;
	margin-block-end: 0.7rem;
	box-shadow: 0 4px 12px rgba(37,0,193,.45);
}
@media (min-width: 769px) {
	.fv-title-label { font-size: 0.85vw; }
}
.fv-title-text {
	color: #fff;
	font-family: var(--ja);
	font-size: clamp(1.6rem, 6vw, 2.6rem);
	font-weight: var(--black);
	line-height: 1.45;
	letter-spacing: .08em;
	text-shadow: 0 2px 16px rgba(0,0,0,.5);
	margin: 0;
}
@media (min-width: 769px) {
	.fv-title-text { font-size: 2.2vw; }
}
.fv-title-name {
	color: var(--p5);
	white-space: nowrap;
}

/* HEADER BUY BUTTON — BIGGER */
@media (min-width: 769px) {
	body { background-color: var(--p7); }
	body::before {
		background-color: var(--p1);
		content: "";
		display: block;
		height: 16px;
		inset: 0 0 auto;
		position: fixed;
		z-index: 9999;
	}
}

/* VARIABLES */
:root {
	--topbar-h: 16px;
	--sidebar-w: calc((100vw - 33.125vw) / 2);
	--header-row-h: 9.75vw;
	--fv-h: calc(100svh - var(--topbar-h) - var(--header-row-h));
	--img-ratio: calc(20 / 9);
	--col-w: calc(var(--fv-h) / var(--img-ratio));
}

/* WRAPPER */
.wrapper { padding-block-start: min(15vw, 60px); }
@media (min-width: 769px) {
	.wrapper {
		align-items: start;
		display: grid;
		grid-template-columns: 1fr 33.125vw 1fr;
		grid-template-rows: 9.75vw repeat(2, min-content) 1fr;
		margin-block-start: var(--topbar-h);
		padding-block-start: 0;
	}
}

/* HEADER */
.header {
	background-color: var(--w);
	left: 0;
	right: 0;
	top: 0;
	position: fixed;
	z-index: 9000;
}
@media (min-width: 769px) {
	.header {
		background: transparent;
		position: static;
		z-index: auto;
		grid-column: 1 / 2;
		grid-row: 1 / -1;
	}
}

/* ── SP: ヘッダーバー ── */
.header .head {
	align-items: center;
	display: flex;
	justify-content: space-between;
	height: 15vw;
	max-height: 60px;
	padding-inline: 4%;
	background-color: var(--w);
	position: relative;
	z-index: 9001;
}
@media (min-width: 769px) {
	/* PC: ロゴを左サイドバー上部中央に独立配置 */
	.header .head {
		background: transparent;
		display: flex;
		align-items: center;
		justify-content: center;
		position: fixed;
		left: 0;
		top: var(--topbar-h);
		width: var(--sidebar-w);
		height: 9vw;
		max-height: none;
		padding: 1.5vw 2vw;
		z-index: 101;
	}
}

.header .head .trademark {
	width: 28%;
	max-width: 80px;
	flex-shrink: 0;
}
@media (min-width: 769px) {
	.header .head .trademark {
		width: 85%;
		max-width: 320px;
		margin: 0 auto;
	}
}
.header .head .trademark img { display: block; width: 100%; height: auto; }

/* SP HEADER RIGHT ACTIONS */
.header .head .header-right {
	display: flex;
	align-items: center;
	gap: 16px; /* 余白を広げる */
}
@media (min-width: 769px) {
	.header .head .header-right { display: none; }
}

.header .head .header-buy-btn {
	background-color: var(--p1);
	color: var(--w);
	font-family: var(--ja);
	font-size: clamp(1.05rem, 4.2vw, 1.35rem); /* テキスト大きく */
	font-weight: var(--bold);
	padding: 0.75rem 1.8rem;
	border-radius: 50px;
	text-decoration: none;
	letter-spacing: 0.05em;
	transition: opacity 0.2s, transform 0.2s;
	box-shadow: 0 4px 16px rgba(37,0,193,.45);
	white-space: nowrap;
}
.header .head .header-buy-btn:hover { opacity: 0.8; transform: translateY(-1px); }

/* ハンバーガーボタン（SP のみ表示） */
.header .head .menu {
	background: none;
	border: none;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 5px;
	min-width: 44px;
	min-height: 44px;
	flex-shrink: 0;
	z-index: 9002;
	transition: opacity .2s;
}
.header .head .menu:hover { opacity: .55; }
/* シンプルな3本線アイコン */
.header .head .menu .bar-top,
.header .head .menu .bar-mid,
.header .head .menu .bar-bot {
	display: block;
	background-color: var(--p2);
	border-radius: 2px;
	width: 26px;
	height: 2px;
	transition: all .3s ease;
	align-self: center;
}
/* メニュー展開時の×ボタン化 */
.header.menu-open .head .menu .bar-top {
	transform: translateY(8px) rotate(45deg);
}
.header.menu-open .head .menu .bar-mid {
	opacity: 0;
}
.header.menu-open .head .menu .bar-bot {
	transform: translateY(-8px) rotate(-45deg);
}

@media (min-width: 769px) {
	.header .head .menu { display: none; }
}

/* ── SP: ドロワーメニュー ── */
.header .body {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--p7);
	display: flex;
	flex-direction: column;
	visibility: hidden;
	opacity: 0;
	transform: translateY(-8px);
	transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s linear 0.3s;
	z-index: 8999;
	overflow-y: auto;
	overflow-x: hidden;
}
.header .body.open {
	visibility: visible;
	opacity: 1;
	transform: translateY(0);
	transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s linear 0s;
}
@media (min-width: 769px) {
	/* PC: .body は左サイドバー nav エリア（ロゴの下） */
	.header .body {
		visibility: visible;
		opacity: 1;
		transform: none;
		transition: none;
		position: fixed;
		left: 0;
		right: auto;
		width: var(--sidebar-w);
		top: calc(var(--topbar-h) + 9vw);
		bottom: 5.5vw;
		background: transparent;
		display: flex;
		flex-direction: column;
		overflow-y: auto;
		scrollbar-width: none;
		padding: 2vw 2.5vw 2vw 2.5vw;
		z-index: 100;
	}
	.header .body::-webkit-scrollbar { display: none; }
}

/* NAV INDEX */
.nav-header { display: none; }

.header .body .index {
	padding: 24vw 6% 8%;
	width: 100%;
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
@media (min-width: 769px) {
	.header .body .index {
		background: transparent;
		padding: 0;
		width: 100%;
		flex: 1;
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		justify-content: flex-start;
	}
	.header .body .index::before { display: none; }
}

.header .body .index .local {
	display: flex;
	flex-direction: column;
	list-style: none;
	margin: 0;
	padding: 0;
	row-gap: 0;
	width: 100%;
	align-items: flex-start;
}
@media (min-width: 769px) {
	.header .body .index .local { width: 100%; flex: 1; align-items: flex-start; }
}

.header .body .index .local li { position: relative; }

/* SPのみ SHOP LIST メニュー項目を非表示 */
@media (max-width: 768px) {
	.header .body .index .local li.menu-item-shoplist { display: none; }
}

.header .body .index .local li a {
	align-items: flex-start;
	border-bottom: none;
	color: var(--p2);
	display: flex;
	flex-direction: column;
	gap: 4px;
	padding: 2.5vw 0;
	position: relative;
	text-decoration: none;
	transition: opacity .2s;
	justify-content: flex-start;
}
.header .body .index .local li a::before { display: none; }
.header .body .index .local li a:hover { opacity: .5; }

.header .body .index .local li a .en {
	display: block;
	font-family: var(--en);
	font-size: 8vw;
	font-weight: 900;
	letter-spacing: .02em;
	line-height: 1;
	color: var(--p2);
}
.header .body .index .local li a .ja {
	display: block;
	font-family: var(--ja);
	font-size: 3.6vw;
	font-weight: var(--regular);
	letter-spacing: .04em;
	line-height: 1;
	color: var(--p2);
	opacity: 1;
}

@media (min-width: 769px) {
	.header .body .index .local li a {
		align-items: flex-start;
		border-bottom: none;
		color: var(--p2);
		display: flex;
		flex-direction: column;
		gap: 0.25vw;
		padding: 0.6vw 0;
		white-space: nowrap;
		justify-content: flex-start;
	}
	.header .body .index .local li:first-child a { border-top: none; }
	.header .body .index .local li a::before { display: none; }
	.header .body .index .local li a:hover { opacity: .5; padding-left: 0; background: none; }
	.header .body .index .local li a .en {
		font-size: 2vw;
		letter-spacing: .02em;
		color: var(--p2);
		line-height: 1;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: clip;
		font-weight: 900;
	}
	.header .body .index .local li a .ja {
		display: block;
		font-size: 0.9vw;
		font-weight: var(--regular);
		letter-spacing: .05em;
		opacity: 1;
	}
}

/* SNS */
.header .body .index .media {
	display: flex;
	gap: 8%;
	list-style: none;
	margin: 6vw 0 0 0;
	padding: 0;
	width: auto;
	justify-content: center;
}
@media (min-width: 769px) {
	/* PC: .index内のSNSは非表示（独立.sidebar-snsで管理） */
	.header .body .index .media { display: none; }
}

.header .body .index .media li { width: 14vw; max-width: 52px; }
@media (min-width: 769px) {
	.header .body .index .media li { width: 2.8vw; max-width: none; }
}

.header .body .index .media li a {
	align-items: center;
	border: none;
	color: var(--p2);
	display: flex;
	justify-content: center;
	width: 100%;
	aspect-ratio: 1;
	transition: opacity .2s;
}
.header .body .index .media li a:hover { opacity: .5; }
@media (min-width: 769px) {
	.header .body .index .media li a { color: var(--p2); }
}
.header .body .index .media li a svg { display: block; width: 100%; height: auto; }

/* CLOSE BUTTON (Hidden, as we use the hamburger icon to close) */
.header .body .close {
	display: none;
}

/* CONTENTS */
.contents.home { grid-column: 2/3; grid-row: 1/-1; display: flex; flex-direction: column; }

/* HERO */
.contents.home .theme { background-color: var(--p4); position: relative; }
.contents.home .visual { background-color: var(--p4); overflow: hidden; position: relative; }
.contents.home .visual,
.contents.home .visual .swiper-wrapper,
.contents.home .visual .slide {
	height: calc(100svh - min(15vw, 60px) - min(16vw, 65px));
	min-height: 200px;
}
.contents.home .visual .slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center bottom;
}
@media (min-width: 769px) {
	.contents.home .visual,
	.contents.home .visual .swiper-wrapper,
	.contents.home .visual .slide {
		height: calc(100svh - var(--topbar-h)); /* PC時はショートカットが無いのでそのまま画面下端 */
		min-height: 300px;
	}
	.contents.home .visual .slide img { object-fit: cover; object-position: center bottom; }
}

.contents.home .visual .swiper-button-next,
.contents.home .visual .swiper-button-prev { color: var(--w); }
.contents.home .visual .swiper-pagination-bullet { background: var(--w); opacity: .6; }
.contents.home .visual .swiper-pagination-bullet-active { background: var(--p5); opacity: 1; }

/* SHORTCUTS */
.shortcuts { background-color: var(--p4); }
@media (min-width: 769px) {
	.shortcuts { display: none !important; }
}
.shortcuts .list { display: flex; list-style: none; margin: 0; padding: 0; width: 100%; }
.shortcuts .list li { flex: 1; display: flex; }
.shortcuts .list li a {
	align-items: center;
	border-right: 1px solid rgba(255,255,255,.15);
	color: var(--w);
	display: flex;
	font-family: var(--en);
	font-size: 1.1rem;
	font-weight: var(--sBold);
	justify-content: center;
	letter-spacing: .1em;
	padding: 0 1%;
	height: min(16vw, 65px);
	text-decoration: none;
	transition: background .2s;
	width: 100%;
}
.shortcuts .list li a:hover { background-color: rgba(255,255,255,.08); }
.shortcuts .list li.link a { background-color: var(--p1); border: none; }
.shortcuts .list li.link a:hover { background-color: var(--p3); }

/* --------------------------------------
   COMMON SECTION STYLES
-------------------------------------- */
.section {
	position: relative;
	padding-block: 16% 12%;
}
.sec-title {
	color: var(--p1);
	font-family: var(--en);
	font-size: clamp(2.4rem, 8vw, 3.6rem);
	font-weight: var(--black);
	letter-spacing: .1em;
	line-height: 1.2;
	margin-block-end: 2%;
	text-align: center;
	text-transform: uppercase;
}
.sec-title.white {
	color: var(--w);
}
.sec-subtitle {
	color: var(--p2);
	font-family: var(--ja);
	font-size: clamp(1.1rem, 3.5vw, 1.4rem);
	font-weight: var(--bold);
	letter-spacing: .15em;
	text-align: center;
}
.sec-subtitle.white {
	color: var(--p5);
}
.section-head {
	margin-block-end: 10%;
}

@media (min-width: 769px) {
	.section {
		padding-block: 8% 6%;
	}
	.section-head {
		margin-block-end: 5%;
	}
}

/* ABOUT SECTION */
.about {
	overflow: hidden;
	background-color: #111;
}
.about-bg {
	position: absolute;
	top: 0; left: 0; width: 100%; height: 100%;
	background-image: url('https://image.rakuten.co.jp/mymoods/cabinet/imgrc0106366731.jpg');
	background-size: cover;
	background-position: center;
	opacity: 0.5;
	z-index: 0;
}
.about::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(20, 22, 28, 0.3) 0%, rgba(10, 12, 18, 0.5) 100%);
	z-index: 0;
}
.about-container {
	position: relative;
	z-index: 1;
	background: rgba(25, 28, 38, 0.25);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 24px;
	padding: 10% 6%;
	max-width: 1000px;
	margin: 0 auto;
	box-shadow: 0 10px 40px rgba(0,0,0,0.5);
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
}
.about-body {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	width: 100%;
}
.about-body .catch-copy {
	color: var(--w);
	font-size: clamp(1.3rem, 4.5vw, 2rem);
	font-weight: var(--bold);
	line-height: 1.6;
	text-align: center;
}
.about-body .catch-copy .en-quote {
	display: block;
	font-family: var(--en);
	color: var(--p5);
	font-size: 0.8em;
	margin-bottom: 0.5rem;
	letter-spacing: 0.05em;
}
.about-body .desc-text {
	color: rgba(255, 255, 255, 0.85);
	font-size: clamp(1rem, 3.5vw, 1.3rem);
	line-height: 2;
}
/* 文節で改行されないようにインラインブロック化 */
.text-chunk {
	display: inline-block;
}
.about-body .desc-text p {
	margin-bottom: 1.5em;
	padding-left: 1em;
	border-left: 2px solid var(--p5);
}
.about-body .desc-text .last-message {
	border-left: none;
	padding-left: 0;
	text-align: center;
	font-weight: var(--bold);
	color: var(--w);
	font-size: 1.1em;
	margin-top: 2.5em;
	margin-bottom: 0;
	text-shadow: 0 0 10px rgba(167, 139, 250, 0.5);
}
.about-body .desc-text strong {
	color: var(--w);
	font-weight: var(--bold);
	background: linear-gradient(transparent 60%, rgba(167, 139, 250, 0.5) 60%);
}

/* FEATURES NEW OVERLAY CARDS */
.features { background-color: var(--p7); display: flex; flex-direction: column; padding-inline: 0; }
.features-copy { 
	color: var(--p2); 
	font-size: clamp(1.4rem, 4.5vw, 1.8rem); 
	font-weight: var(--bold); 
	line-height: 1.6; 
	margin-block-start: 0; 
	margin-block-end: 8%; 
	padding-inline: 6%; 
	text-align: center; 
	width: 100%;
}
.feature-list { display: flex; flex-direction: column; gap: 8vw; padding-inline: 5%; max-width: 1000px; margin-inline: auto; width: 100%; }

.feature-card { 
    position: relative;
    background-color: #111;
    border-radius: 20px; 
    overflow: hidden; 
    box-shadow: 0 10px 30px rgba(36,40,51,0.06); 
    display: flex; 
    flex-direction: column; 
    justify-content: flex-end;
    min-height: 110vw; /* スマホ用縦長 */
	height: auto;
    background-size: cover; 
    background-position: center; 
    transition: transform 0.4s ease, box-shadow 0.4s ease; 
}
/* Feature 01-03: Clickable Modal Trigger */
.feature-card[data-mfp-src] { cursor: pointer; }

.feature-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 30%, rgba(0,0,0,0.85) 100%);
    z-index: 1;
}
.feature-card:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(36,40,51,0.2); }

.feature-body { 
    padding: 10% 8%; 
    display: flex; 
    flex-direction: column; 
    gap: 1.2rem; 
    position: relative;
    z-index: 2;
}

.feature-num { 
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    display: inline-block; 
    background-color: var(--p1); /* All blue */
    color: var(--w); 
    font-family: var(--en); 
    font-size: clamp(1.1rem, 3.5vw, 1.4rem); 
    font-weight: var(--exBold); 
    letter-spacing: .12em; 
    padding: 0.8rem 1.6rem; 
    border-radius: 20px 0 20px 0; 
    width: fit-content; 
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3); 
}

/* Feature tags colors united to blue (p1) */
.feature-card:nth-child(n) .feature-num { background-color: var(--p1); }

.feature-title { color: var(--w); font-size: clamp(1.6rem, 5vw, 2.2rem); font-weight: var(--bold); line-height: 1.4; margin-block-end: 0.5rem; text-shadow: 0 2px 6px rgba(0,0,0,0.6); }
.feature-desc { color: rgba(255,255,255,0.9); font-size: clamp(1.1rem, 3.5vw, 1.4rem); line-height: 1.8; text-shadow: 0 1px 4px rgba(0,0,0,0.6); }

/* Sub CTA Card (Feature 04) */
.feature-card.sub-card { cursor: default; min-height: auto; height: auto; overflow: hidden; border-radius: 20px; }
.feature-card.sub-card::before { background: linear-gradient(to bottom, rgba(10, 8, 40, 0.15) 0%, rgba(10, 8, 40, 0.88) 50%, rgba(10, 8, 40, 0.98) 100%); }
.sub-link { display: flex; flex-direction: column; justify-content: flex-start; text-decoration: none; color: inherit; height: 100%; position: relative; z-index: 2; padding: calc(8% + 2.8rem) 8% 10%; }
.feature-card.sub-card .feature-num { position: absolute; top: 0; left: 0; display: block; width: fit-content; border-radius: 20px 0 20px 0; margin: 0; box-shadow: 2px 2px 10px rgba(0,0,0,0.3); z-index: 3; }
.feature-card.sub-card .feature-body { padding: 0; gap: 1rem; }

/* サブスクバッジ行 */
.sub-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-block-end: 0.8rem;
}
.sub-badge {
	display: inline-flex;
	align-items: center;
	font-family: var(--ja);
	font-size: clamp(0.75rem, 2.5vw, 0.9rem);
	font-weight: var(--bold);
	letter-spacing: .05em;
	padding: 0.3rem 0.8rem;
	border-radius: 30px;
	line-height: 1;
}
.sub-badge--red { background: #e63946; color: #fff; }
.sub-badge--red strong { font-size: 1.2em; }
.sub-badge--green { background: #2a9d5c; color: #fff; }
.sub-badge--gray { background: rgba(255,255,255,0.2); color: #fff; border: 1px solid rgba(255,255,255,0.4); }

/* 強調テキスト */
.sub-em {
	font-style: normal;
	font-weight: var(--bold);
	color: var(--p5);
	background: none;
}

/* 特典リスト */
.sub-merits {
	list-style: none;
	margin: 0.6rem 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.45rem;
}
.sub-merits li {
	color: rgba(255,255,255,0.92);
	font-size: clamp(0.85rem, 2.8vw, 1.05rem);
	line-height: 1.5;
	display: flex;
	align-items: baseline;
	gap: 0.4rem;
}
.sub-merit-icon {
	color: #7cfc8a;
	font-weight: var(--bold);
	flex-shrink: 0;
}

/* プラングリッド */
.sub-plans {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0.4rem;
	margin: 0.8rem 0 1.2rem;
}
.sub-plan {
	background: rgba(255,255,255,0.1);
	border: 1px solid rgba(255,255,255,0.2);
	border-radius: 8px;
	padding: 0.5rem 0.3rem;
	text-align: center;
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
}
.sub-plan--family {
	background: rgba(167,139,250,0.25);
	border-color: var(--p5);
}
.sub-plan-name {
	font-family: var(--en);
	font-size: clamp(0.65rem, 1.8vw, 0.8rem);
	font-weight: var(--bold);
	color: rgba(255,255,255,0.8);
	letter-spacing: .04em;
}
.sub-plan-off {
	font-size: clamp(0.75rem, 2.2vw, 0.95rem);
	font-weight: var(--black);
	color: #ffcc44;
}
.sub-plan-price {
	font-family: var(--en);
	font-size: clamp(0.65rem, 1.8vw, 0.8rem);
	color: rgba(255,255,255,0.7);
}

.sub-cta { margin-top: 0.5rem; text-align: right; }
.sub-btn { display: inline-block; background: linear-gradient(135deg, var(--p5), var(--p3)); color: var(--w); font-family: var(--ja); font-size: clamp(1.1rem, 3.5vw, 1.3rem); font-weight: var(--bold); letter-spacing: .08em; padding: 0.9rem 2.2rem; border-radius: 50px; transition: filter 0.3s ease, transform 0.3s ease; box-shadow: 0 4px 20px rgba(124, 58, 237, 0.5); }
.sub-link:hover .sub-btn { filter: brightness(1.15); transform: translateY(-2px); }

@media (min-width: 769px) {
	.sub-plans { grid-template-columns: repeat(4, 1fr); gap: 0.5rem; }
	.sub-plan { padding: 0.6rem 0.4rem; }
	.feature-card.sub-card { min-height: auto; height: auto; overflow: hidden; }
}


/* LINEUP */
.lineup { background-color: var(--p7); }
.lineup-copy { color: var(--p2); font-size: clamp(1.4rem, 4vw, 1.6rem); line-height: 1.7; margin-block-start: 0; margin-block-end: 8%; text-align: center; font-weight: var(--bold); }

.lineup-subtitle-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	margin-block-start: 0.5rem;
	margin-block-end: 4%;
}
.lineup .item .name small { 
	color: var(--p2); 
	display: inline-block; 
	font-family: var(--ja); 
	font-size: 1.2rem; 
	font-weight: var(--regular); 
	letter-spacing: .05em; 
	margin-block-start: 0; 
}
.nico-tar-zero-badge {
	display: inline-block;
	background-color: #111;
	color: var(--w);
	font-family: var(--ja);
	font-size: clamp(0.9rem, 2.5vw, 1.1rem);
	font-weight: var(--bold);
	padding: 0.3rem 0.8rem;
	border-radius: 4px;
	letter-spacing: .05em;
	margin-block-end: 0;
	line-height: 1;
}

.lineup .head .note { color: #888; font-size: 1.1rem; text-align: center; }
.lineup .item { background-color: var(--w); border-radius: 4px; margin-block-end: 4%; margin-inline: 4.1025641026%; padding: 8.2051282051% 5.1282051282%; }
.lineup .item .name { color: var(--p1); font-family: var(--en); font-size: 2.2rem; font-weight: var(--exBold); letter-spacing: .08em; line-height: 1.2; margin-block-end: 3%; text-align: center; }

.lineup .item .lead { color: var(--p1); font-size: 1.6rem; font-weight: var(--bold); line-height: 1.5; margin-block-end: 4%; }
.lineup .item .label { border-block: 1px solid rgba(36,40,51,.1); display: grid; gap: 1%; grid-template-columns: 1fr auto; margin-block-end: 3%; padding-block: 3%; }
.item-image { cursor: pointer; position: relative; transition: opacity .2s; }
.item-image:hover { opacity: .85; }
.item-image::after { content: '🛒 購入する'; position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%); background: rgba(36,40,51,.75); color: #fff; font-size: 1.2rem; font-weight: bold; padding: 5px 14px; border-radius: 20px; white-space: nowrap; opacity: 0; transition: opacity .2s; pointer-events: none; }
.item-image:hover::after { opacity: 1; }
.lineup .item .label dt { color: var(--p2); font-size: 1.4rem; font-weight: var(--bold); line-height: 1.5; }
.lineup .item .label dd { align-self: center; background-color: var(--p2); border-radius: 2px; color: var(--w); font-size: 1.1rem; padding: .3rem .8rem; white-space: nowrap; }
.lineup .item .volume { display: flex; gap: 2%; margin-block-end: 1rem; }
.lineup .item .volume dt { color: #888; font-size: 1.2rem; flex-shrink: 0; }
.lineup .item .volume dd { color: var(--p2); font-size: 1.2rem; font-weight: var(--bold); line-height: 1.5; }

/* PRICE DISPLAY (二重価格用) */
.lineup .item .price-area { margin-block-end: 5%; background: var(--p7); padding: 1.5rem; border-radius: 12px; border: 2px solid rgba(37,0,193,0.1); text-align: center; }
.lineup .item .price-discount-badge { display: inline-block; background: #e63946; color: #fff; font-size: clamp(0.9rem, 3.5vw, 1rem); font-weight: bold; padding: 0.4rem 1rem; border-radius: 40px; margin-bottom: 0.8rem; letter-spacing: 0.05em; box-shadow: 0 4px 10px rgba(230, 57, 70, 0.3); }
.lineup .item .price-wrap { display: flex; flex-direction: column; align-items: center; gap: 0.2rem; margin-bottom: 0.8rem; }
.lineup .item .price-normal { font-size: 1rem; color: #888; text-decoration: line-through; }
.lineup .item .price-special-wrap { display: flex; align-items: baseline; justify-content: center; gap: 0.5rem; color: #e63946; }
.lineup .item .price-special-label { font-size: 1.1rem; font-weight: bold; }
.lineup .item .price-special { font-size: 2.6rem; font-family: var(--en); font-weight: 900; line-height: 1; }
.lineup .item .price-special .currency { font-size: 1.2rem; font-family: var(--ja); margin-left: 0.1rem; }
.lineup .item .price-special .tax { font-size: 0.9rem; font-family: var(--ja); margin-left: 0.2rem; color: #666; font-weight: normal; }
.lineup .item .price-sub { font-size: 1.1rem; font-weight: bold; color: var(--p1); }

.lineup .item .note { color: #888; font-size: 1.1rem; margin-block-end: 3%; text-align: left; }
.lineup .item .button button { background-color: var(--p1); border: none; border-radius: 4px; color: var(--w); cursor: pointer; display: block; font-family: var(--ja); font-size: 1.5rem; font-weight: var(--bold); margin-block-end: 3%; padding: 3.5% 5%; text-align: center; transition: background .2s; width: 100%; }
.lineup .item .button button:hover { background-color: var(--p3); }
.lineup .item .button:last-of-type button { background-color: var(--w); border: 1px solid var(--p2); color: var(--p2); }
.lineup .item .button:last-of-type button:hover { background-color: var(--p7); }

/* FLAVOR SLIDER IN LINEUP (Tab UI) */
.flavor-badge-wrap { text-align: center; margin-block-start: 1.5rem; margin-block-end: 1.5rem; border-top: 1px dashed rgba(36,40,51,.15); padding-top: 1.5rem; }
.flavor-badge-wrap .badge { display: inline-block; background: linear-gradient(135deg, var(--p1), var(--p3)); color: #fff; padding: 0.4rem 1.2rem; border-radius: 30px; font-size: clamp(0.9rem, 3vw, 1rem); font-weight: bold; letter-spacing: 0.1em; margin-bottom: 0.5rem; box-shadow: 0 4px 10px rgba(37,0,193,0.3); }
.flavor-badge-wrap .title { font-size: clamp(1.5rem, 5vw, 1.8rem); font-weight: 900; color: var(--p2); letter-spacing: 0.05em; font-family: var(--ja); line-height: 1.2; }

.flavor-section { margin-block-end: 2.5rem; }
.flavor-tabs { display: flex; gap: 0.5rem; margin-bottom: 1.5rem; flex-wrap: wrap; justify-content: center; }
.flavor-tab { background: #eee; border: none; padding: 0.6rem 1rem; border-radius: 40px; font-size: clamp(0.8rem, 3vw, 0.9rem); font-weight: bold; color: #555; cursor: pointer; transition: 0.2s; white-space: nowrap; }
.flavor-tab.active { background: var(--p1); color: #fff; box-shadow: 0 4px 10px rgba(37,0,193,0.3); }
.flavor-content { display: none; animation: fadeIn 0.3s ease; }
.flavor-content.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(5px); } to { opacity: 1; transform: translateY(0); } }

.flavor-cat-title { font-size: 1.1rem; font-weight: var(--bold); margin-bottom: 1rem; color: var(--p2); text-align: center; }
.flavor-scroll { display: flex; gap: 12px; overflow-x: auto; padding-bottom: 16px; scroll-snap-type: x mandatory; scrollbar-width: thin; scrollbar-color: var(--p5) transparent; }
.flavor-scroll::-webkit-scrollbar { height: 6px; }
.flavor-scroll::-webkit-scrollbar-thumb { background: var(--p5); border-radius: 3px; }
.flavor-item { flex: 0 0 140px; scroll-snap-align: start; text-align: center; cursor: pointer; transition: transform 0.2s; }
.flavor-item:hover { transform: translateY(-3px); }
.flavor-item img { width: 100%; border-radius: 8px; margin-bottom: 0.5rem; box-shadow: 0 2px 8px rgba(0,0,0,0.08); }
.flavor-name { font-size: 0.85rem; font-family: var(--en); font-weight: var(--bold); color: var(--p2); line-height: 1.3; margin-bottom: 0.3rem; }
.flavor-desc { font-size: 0.75rem; color: #666; line-height: 1.5; text-align: left; }
@media (min-width: 769px) {
  .flavor-item { flex: 0 0 160px; }
}

/* RANKING */
.ranking { background-color: var(--p7); padding-block: 8% 0; }
.ranking-container { max-width: 1000px; margin: 0 auto; padding-inline: 5%; text-align: center; }
.ranking-container img { width: 100%; height: auto; border-radius: 16px; box-shadow: 0 10px 30px rgba(36,40,51,0.1); }
.ranking-img-full { overflow: hidden; width: calc(100% + 10%); margin-left: -5%; margin-right: -5%; line-height: 0; }
.ranking-img-full img { width: 100%; height: auto; display: block; border-radius: 0; box-shadow: none; }

/* REVIEW */
.review { 
	position: relative; 
	padding-block: 12% 12%; 
	overflow: hidden;
	background-color: #111;
}
.review-bg {
	position: absolute;
	top: 0; left: 0; width: 100%; height: 100%;
	background-image: url('/wp-content/uploads/shopify-assets/41d9522d-251102_My_moods22901.webp');
	background-size: cover;
	background-position: center;
	background-attachment: scroll;
	opacity: 0.6;
	z-index: 0;
}
.review::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(20, 22, 28, 0.4) 0%, rgba(10, 12, 18, 0.6) 100%);
	z-index: 0;
}
.review-container {
	position: relative;
	z-index: 1;
	max-width: 1000px;
	margin: 0 auto;
}

/* Rating Summary in Review Section */
.review .rating-summary {
	display: flex;
	align-items: center;
	gap: 32px;
	background: rgba(255,255,255,0.1);
	border: 1px solid rgba(255,255,255,0.2);
	border-radius: 16px;
	padding: 28px 36px;
	margin-inline: 5%;
	margin-bottom: 40px;
	flex-wrap: wrap;
	justify-content: center;
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.review .rating-score { text-align: center; }
.review .rating-score .score {
	font-family: var(--en);
	font-size: 4rem; font-weight: 900;
	color: #fff; line-height: 1; display: block;
}
.review .rating-score .total { font-size: 0.85rem; color: rgba(255,255,255,0.8); margin-top: 6px; font-family: var(--ja); font-weight: var(--bold); }
.review .rating-bars { flex: 1; min-width: 200px; }
.review .bar-row {
	display: flex; align-items: center;
	gap: 10px; margin-bottom: 8px;
}
.review .bar-row-label { font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.9); width: 22px; text-align: right; }
.review .bar-track {
	flex: 1; height: 8px;
	background: rgba(255,255,255,0.2);
	border-radius: 4px; overflow: hidden;
}
.review .bar-fill {
	height: 100%;
	background: #FFD700;
	border-radius: 4px;
	width: 0;
	transition: width 1.2s ease-out;
}
.review .bar-pct { font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.9); width: 32px; }


.review .frame { overflow: hidden; position: relative; padding-block: 2%; }
.review .item { padding-inline: 3%; height: auto; }
.review .review-card { 
	background-color: rgba(255,255,255,.1); 
	border: 1px solid rgba(255,255,255,.2); 
	border-radius: 16px; 
	padding: 8% 7%; 
	backdrop-filter: blur(8px); 
	-webkit-backdrop-filter: blur(8px); 
	box-shadow: 0 8px 32px rgba(0,0,0,0.2);
	display: flex;
	flex-direction: column;
	gap: 1rem;
	height: 100%;
}
.review .review-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid rgba(255,255,255,0.15);
	padding-bottom: 0.8rem;
}
.review .stars {
	color: #FFD700;
	font-size: 1.2rem;
	letter-spacing: 0.1em;
}
.review .user-attr {
	color: rgba(255,255,255,0.7);
	font-size: 0.9rem;
	font-family: var(--ja);
}
.review .review-text { 
	color: rgba(255,255,255,.95); 
	font-size: clamp(1.1rem, 3.5vw, 1.3rem); 
	line-height: 1.8; 
}
.review .review-text em { 
	color: var(--w); 
	font-style: normal; 
	font-weight: var(--bold);
	background: linear-gradient(transparent 60%, rgba(167, 139, 250, 0.6) 60%);
}
.review .arrow { background: rgba(255,255,255,.15); border: none; border-radius: 50%; color: var(--w); cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 2rem; height: 10vw; line-height: 1; max-height: 44px; max-width: 44px; position: absolute; top: 50%; transform: translateY(-50%); width: 10vw; z-index: 10; transition: background .2s; }
.review .arrow:hover { background: rgba(255,255,255,.3); }
.review .arrow.next { right: 2%; }
.review .arrow.prev { left: 2%; }
.review .dots.swiper-pagination { display: flex; justify-content: center; gap: 8px; margin-block-start: 6%; position: static; }
.review .dots.swiper-pagination .swiper-pagination-bullet { background: rgba(255,255,255,.35); border-radius: 50%; height: 8px; opacity: 1; width: 8px; cursor: pointer; transition: background .2s; }
.review .dots.swiper-pagination .swiper-pagination-bullet-active { background: var(--p5); }


/* INFORMATION HOW TO USE */
.information { background-color: var(--p7); }
.information .howto .prop { padding-inline: 5%; max-width: 800px; margin-inline: auto; }
.information .howto .step { display: flex; flex-direction: column; gap: 2rem; list-style: none; margin-block-end: 10%; }
.information .howto .step li figure { align-items: flex-start; display: flex; gap: 1.5rem; }
.step-num { align-items: center; background-color: var(--p1); border-radius: 50%; color: var(--w); display: flex; flex-shrink: 0; font-family: var(--en); font-size: clamp(1.2rem, 4vw, 1.6rem); font-weight: var(--exBold); height: clamp(40px, 10vw, 56px); justify-content: center; width: clamp(40px, 10vw, 56px); letter-spacing: 0; box-shadow: 0 4px 10px rgba(37,0,193,0.3); }
.information .howto .step li figcaption { display: flex; flex-direction: column; gap: 0.4rem; padding-block-start: 0.2rem; }
.information .howto .step-title { color: var(--p1); font-size: clamp(1.2rem, 4vw, 1.5rem); font-weight: var(--bold); line-height: 1.4; }
.information .howto .step-desc { color: var(--p2); font-size: clamp(1rem, 3.5vw, 1.3rem); line-height: 1.7; }

/* FAQ */
.information .faq { background-color: var(--p7); }
.information .faq .list { padding-inline: 5%; max-width: 800px; margin-inline: auto; }
.information .faq .list .qa { border-bottom: 1px solid rgba(36,40,51,.12); }
.information .faq .list .qa:first-child { border-top: 1px solid rgba(36,40,51,.12); }
.information .faq .list .qa .q { cursor: pointer; list-style: none; padding-block: 5%; position: relative; }
.information .faq .list .qa .q span { color: var(--p2); display: block; font-size: 1.4rem; font-weight: var(--bold); line-height: 1.6; padding-inline-end: 8%; padding-inline-start: 5%; }
.information .faq .list .qa .q::before { color: var(--p1); content: "Q"; font-family: var(--en); font-size: 1.6rem; font-weight: var(--exBold); left: 0; position: absolute; top: 50%; transform: translateY(-50%); }
.information .faq .list .qa .q::after { border-color: var(--p1); border-style: solid; border-width: 2px 2px 0 0; content: ""; display: block; height: 1.5vw; max-height: 9px; max-width: 9px; position: absolute; right: 1%; top: 50%; transform: translateY(-70%) rotate(135deg); transition: transform .3s; width: 1.5vw; }
.information .faq .list .qa .q.open::after { transform: translateY(-30%) rotate(-45deg); }
.information .faq .list .qa .a { display: none; padding-block: 0 5%; padding-inline: 5%; }
.information .faq .list .qa .a p { color: #555; font-size: 1.3rem; line-height: 1.75; }
.information .faq .list .close { display: flex; justify-content: center; margin-block: 5%; }
.information .faq .list .close button { background: none; border: 1px solid var(--p2); border-radius: 2px; color: var(--p2); cursor: pointer; font-family: var(--en); font-size: 1.2rem; letter-spacing: .15em; padding: .5rem 2rem; transition: all .2s; }
.information .faq .list .close button:hover { background-color: var(--p2); color: var(--w); }
.information .faq .list.init .qa:nth-child(n+6) { display: none; }
.information .faq .list.init .close { display: none; }
.information .faq .more { display: flex; justify-content: center; margin-block-start: 5%; }
.information .faq .more button { background: none; border: 2px solid var(--p1); border-radius: 4px; color: var(--p1); cursor: pointer; font-family: var(--en); font-size: 1.3rem; font-weight: var(--bold); letter-spacing: .15em; padding: 2.5% 8%; transition: all .2s; }
.information .faq .more button:hover { background-color: var(--p1); color: var(--w); }

/* mfp SP padding — ヘッダー被り対策 */
.mfp-container { padding-block-start: max(55px, 14vw) !important; padding-block-end: 12px !important; }
@media (min-width: 769px) { .mfp-container { padding-block-start: 20px !important; padding-block-end: 20px !important; } }

/* MODAL */
.modal { background-color: var(--w); border-radius: 20px; max-width: 93.3vw; padding: 0; position: relative; width: 93.3vw; margin: 0 auto; overflow: hidden; box-shadow: 0 24px 64px rgba(0,0,0,.18), 0 4px 16px rgba(0,0,0,.08); }
@media (min-width: 769px) { .modal { max-width: 440px; width: 440px; } }

/* detail modal — スクロール対応 */
.modal.detail {
	max-height: calc(100svh - max(55px, 14vw) - 24px);
	overflow-y: auto;
	overflow-x: hidden;
	scrollbar-width: thin;
	scrollbar-color: rgba(37,0,193,.2) transparent;
	padding: 6% 6% 0;
}
@media (min-width: 769px) { .modal.detail { max-height: calc(100svh - 80px); } }

/* buying modal — header strip */
.modal.buying .modal-header {
	background: linear-gradient(135deg, var(--p1) 0%, var(--p6) 100%);
	padding: 7% 6% 6%;
	position: relative;
	overflow: hidden;
	text-align: center;
}
.modal.buying .modal-header::after {
	content: '';
	position: absolute;
	inset: -60% -30%;
	background: radial-gradient(ellipse at 75% 25%, rgba(167,139,250,.3) 0%, transparent 55%);
	pointer-events: none;
}
.modal.buying .modal-header .modal-eyebrow {
	color: rgba(255,255,255,.6);
	font-family: var(--en);
	font-size: .85rem;
	font-weight: var(--medium);
	letter-spacing: .22em;
	text-transform: uppercase;
	margin-block-end: .3em;
}
.modal.buying .modal-header .modal-title {
	color: #fff;
	font-family: var(--ja);
	font-size: 2rem;
	font-weight: var(--bold);
	letter-spacing: .06em;
	line-height: 1.2;
}

/* 公式サイト限定バッジ — ボーダーライン装飾スタイル */
.exclusive-badge {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: .7em;
	color: rgba(255,255,255,.95);
	font-family: var(--ja);
	font-size: .9rem;
	font-weight: var(--sBold);
	letter-spacing: .18em;
	margin-block-end: .9rem;
}
.exclusive-badge::before,
.exclusive-badge::after {
	content: '';
	display: block;
	height: 1px;
	width: 2.2em;
	background: rgba(255,255,255,.45);
	flex-shrink: 0;
}

/* buying modal — btn list area */
.modal.buying .modal-body {
	background: var(--p7);
	padding: 5% 5% 4%;
}
.modal.buying .modal-btns {
	display: flex;
	flex-direction: column;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 10px;
}

/* ---- modal CTA buttons ---- */
.modal-btn {
	align-items: center;
	border-radius: 12px;
	display: flex;
	justify-content: center;
	text-decoration: none;
	transition: opacity .18s, transform .15s, box-shadow .15s;
	width: 100%;
	height: 80px; /* 固定高さに変更 */
	padding: 12px 16px;
	box-sizing: border-box;
	font-family: var(--ja);
	cursor: pointer;
	position: relative;
	overflow: hidden;
}
.modal-btn:hover { opacity: .88; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.14); }
.modal-btn:active { transform: translateY(0); opacity: 1; }

/* 公式ストア — white base */
.modal-btn--official {
	background: #fff;
	border: 2px solid var(--p1);
}
.modal-btn--official:hover { box-shadow: 0 8px 24px rgba(37,0,193,.18); }

/* Amazon — white bg, Amazon logo, orange accent */
.modal-btn--amazon {
	background: #fff;
	border: 2px solid #FF9900;
}
.modal-btn--amazon:hover { box-shadow: 0 8px 24px rgba(255,153,0,.22); }

/* 楽天 — white bg, Rakuten logo, red accent */
.modal-btn--rakuten {
	background: #fff;
	border: 2px solid #BF0000;
}
.modal-btn--rakuten:hover { box-shadow: 0 8px 24px rgba(191,0,0,.18); }

/* Modal product group labels */
.modal-group { margin-block-end: 1.1rem; }
.modal-group:last-child { margin-block-end: 0; }
.modal-group-label {
	font-size: 1rem;
	font-weight: 800;
	color: var(--p1);
	margin-block-end: .6rem;
	padding-block: .8rem .2rem;
	border-top: 2px solid rgba(37,0,193,.12);
	display: flex;
	align-items: center;
	gap: .45em;
}
.modal-group-label::before {
	content: '';
	display: inline-block;
	width: 4px;
	height: 1.1em;
	border-radius: 2px;
	background: var(--p1);
	flex-shrink: 0;
}
.modal-group:first-child .modal-group-label { border-top: none; padding-block-start: 0; }

/* Qoo10 — white bg, logo, pink accent */
.modal-btn--qoo10 {
	background: #fff;
	border: 2px solid #e2498a;
}
.modal-btn--qoo10:hover { box-shadow: 0 8px 24px rgba(226,73,138,.18); }

.modal-btn__logo {
	display: block;
	max-height: 48px; /* 最大高さを広げる */
	max-width: 80%;
	object-fit: contain;
	width: auto;
}

/* 公式ボタン用共通レイアウト */
.official-btn-content {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
}
.official-btn-logo {
	display: block;
	max-height: 48px;
	width: auto;
	max-width: 90%;
	object-fit: contain;
}
@media (min-width: 769px) {
	.modal-btn { min-height: 88px; }
	.modal-btn__logo { max-height: 54px; }
	.official-btn-logo { max-height: 60px; }
}


/* モーダル内の詳細情報スタイル */
.modal.detail .ingredients .name { color: var(--p2); font-size: 1.6rem; font-weight: var(--bold); line-height: 1.5; margin-block-end: 4%; }
.modal.detail .ingredients .list { border-top: 1px solid rgba(36,40,51,.1); padding-block-start: 4%; margin-block-end: 4%; }
.modal.detail .ingredients .list dt { color: var(--p1); font-size: 1.2rem; font-weight: var(--bold); margin-block-end: 2%; line-height: 1.4; }
.modal.detail .ingredients .list dd { color: #555; font-size: 1.1rem; line-height: 1.7; }
.modal.detail .spec-table { width: 100%; font-size: 1.1rem; color: #555; line-height: 1.7; border-collapse: collapse; margin-block-start: 2%; }
.modal.detail .spec-table th { text-align: left; padding: 0.5em 1em 0.5em 0; font-weight: var(--bold); white-space: nowrap; border-bottom: 1px dashed rgba(36,40,51,.1); }
.modal.detail .spec-table td { padding: 0.5em 0; border-bottom: 1px dashed rgba(36,40,51,.1); }

.modal .close { display: flex; justify-content: center; padding: 2% 6% 5%; }
.modal .close button { background: none; border: 1.5px solid rgba(36,40,51,.18); border-radius: 100px; color: var(--p2); cursor: pointer; font-family: var(--en); font-size: 1.15rem; letter-spacing: .18em; padding: .55rem 2.2rem; transition: all .2s; }
.modal .close button:hover { background-color: var(--p2); color: var(--w); border-color: var(--p2); }
.mfp-bg { background: var(--p2); opacity: 0.85; }

/* SHOP LIST */
.shoplist-section { background: var(--p1); }
.shoplist-inner { max-width: 400px; margin-inline: auto; padding-inline: 5%; }
.shoplist-list { display: flex; flex-direction: column; gap: 12px; list-style: none; margin: 0; padding: 0; }
.shoplist-btn { align-items: center; background: #fff; border-radius: 8px; display: flex; justify-content: center; position: relative; padding: 12px 6%; text-decoration: none; transition: opacity .18s, transform .15s; width: 100%; height: 80px; box-sizing: border-box; border: 2px solid transparent; }
.shoplist-btn:hover { opacity: .88; transform: translateY(-1px); }
.shoplist-btn__logo { display: block; height: auto; max-height: 48px; max-width: 80%; object-fit: contain; width: auto; margin: 0 auto; }
.shoplist-btn--official { background-color: #fff; border-color: var(--p1); }
.shoplist-btn--official .official-btn-logo { max-height: 48px; width: auto; max-width: 90%; object-fit: contain; display: block; margin: 0 auto; }

/* SHOP LIST 矢印アイコン共通 */
.shoplist-btn::after {
	content: '';
	position: absolute;
	right: 14px;
	top: 50%;
	transform: translateY(-50%);
	width: 7px;
	height: 7px;
	border-right: 2px solid rgba(36,40,51,.3);
	border-top: 2px solid rgba(36,40,51,.3);
	rotate: 45deg;
	transition: right .18s, border-color .18s;
}
.shoplist-btn--official::after { border-color: var(--p1); opacity: .6; }
.shoplist-btn:hover::after { right: 10px; }

@media (min-width: 769px) {
	.shoplist-inner { max-width: 400px; padding-inline: 0; }
	.shoplist-list { gap: 1rem; }
	.shoplist-btn { border-radius: 10px; padding: 12px 5%; height: 88px; }
	.shoplist-btn__logo { max-height: 54px; max-width: 80%; }
	.shoplist-btn--official .official-btn-logo { max-height: 60px; }
}

/* PC SIDEBAR — 独立SNSバー（下端中央固定） */
.sidebar-sns {
	display: none;
}
@media (min-width: 769px) {
	.sidebar-sns {
		display: flex;
		align-items: center;
		justify-content: flex-start;
		gap: 2vw;
		list-style: none;
		margin: 0;
		padding: 0 0 0 2.5vw;
		position: fixed;
		left: 0;
		right: calc(33.125vw + var(--sidebar-w));
		bottom: 0;
		height: 6.5vw;
		background: var(--p7);
		z-index: 100;
		overflow: hidden;
		box-sizing: border-box;
	}
	.sidebar-sns li { width: 4vw; max-width: 48px; flex-shrink: 0; }
	.sidebar-sns li a {
		align-items: center;
		border: none;
		color: var(--p2);
		display: flex;
		justify-content: center;
		width: 100%;
		aspect-ratio: 1;
		transition: opacity .2s;
	}
	.sidebar-sns li a:hover { opacity: .45; }
	.sidebar-sns li a svg { display: block; width: 100%; height: 100%; }
}

/* ASIDE / WHERE — PC右列 大型CTA */
.where { display: none; }
@media (min-width: 769px) {
	.where {
		display: flex;
		align-items: center;
		justify-content: center;
		grid-column: 3/4;
		grid-row: 1/-1;
		position: sticky;
		top: 0;
		height: 100svh;
		width: 100%;
		padding: 1.5vw 1vw;
		box-sizing: border-box;
		z-index: 100;
	}
	.where::before { display: none; }
}
.where-inner { padding: 2% 3% 2.5%; }
.where-head { display: none; }
.where-btns { display: flex; gap: 6px; list-style: none; margin: 0; padding: 0; }
@media (min-width: 769px) {
	.where-inner {
		background: var(--p1);
		border-radius: 14px;
		overflow: hidden;
		padding: 0 0 6% 0;
		width: 100%;
		max-width: 380px;
		box-sizing: border-box;
		box-shadow: 0 6px 32px rgba(37,0,193,.22);
		display: flex;
		flex-direction: column;
		height: auto;
	}
	.where-head {
		display: block;
		padding: 8% 5% 6%;
		text-align: center;
		background: var(--p1);
		flex-shrink: 0;
	}
	.where-title {
		color: #fff;
		font-family: var(--en);
		font-size: 2.2vw;
		font-weight: var(--black);
		letter-spacing: .06em;
		line-height: 1;
		text-transform: uppercase;
	}
	.where-sub {
		color: rgba(255,255,255,.9);
		font-family: var(--ja);
		font-size: 0.9vw;
		letter-spacing: .08em;
		line-height: 1;
		margin-block-start: .6em;
	}
	.where-group {
		display: block;
		padding: 5% 5% 0;
		border-top: 1px solid rgba(255,255,255,.2);
		margin-block-end: 1rem;
	}
	.where-group:last-child {
		margin-block-end: 0;
	}
	.where-group-label {
		font-size: 1rem;
		font-weight: 900;
		letter-spacing: .02em;
		color: #fff;
		margin: 0 0 0.8rem 0;
		padding: 0;
		border-top: none;
		background: transparent;
		display: flex;
		align-items: center;
		gap: .4em;
		flex-shrink: 0;
	}
	.where-btns {
		display: flex;
		flex-direction: column;
		gap: 12px;
		list-style: none;
		margin: 0;
		padding: 0;
	}
	.where-btns li {
		display: block;
		min-height: 0;
		padding: 0;
		box-sizing: border-box;
	}
}
.where-btn {
	align-items: center;
	background: #fff;
	border-radius: 8px;
	display: flex;
	justify-content: center;
	overflow: hidden;
	padding: 0 5%;
	text-decoration: none;
	transition: opacity .18s, transform .15s;
	box-sizing: border-box;
	border: 2px solid transparent;
	position: relative;
	width: 100%;
	height: 80px;
}
.where-btn:hover { opacity: .88; transform: translateY(-1px); }

/* 矢印アイコン */
.where-btn::after {
	content: '';
	position: absolute;
	right: 14px;
	top: 50%;
	transform: translateY(-50%);
	width: 7px;
	height: 7px;
	border-right: 2px solid rgba(36,40,51,.3);
	border-top: 2px solid rgba(36,40,51,.3);
	rotate: 45deg;
	transition: right .18s, border-color .18s;
}
.where-btn--official::after { border-color: var(--p1); opacity: .6; }
.where-btn:hover::after { right: 10px; }

.where-btn__logo {
	display: block;
	max-height: 48px;
	max-width: 80%;
	object-fit: contain;
	width: auto;
	margin: 0 auto;
}
.where-btn__ext { display: none; }
/* Shoplist / Where group labels */
.shoplist-group { margin-block-end: 1.75rem; }
.shoplist-group:last-child { margin-block-end: 0; }
.shoplist-group-label {
	color: #fff;
	font-size: 1.35rem;
	font-weight: 900;
	letter-spacing: .02em;
	margin-block-end: .85rem;
	padding: 1.2rem 1rem .8rem;
	border-top: 2px solid rgba(255,255,255,.3);
	background: rgba(255,255,255,.08);
	border-radius: 8px 8px 0 0;
	display: flex;
	align-items: center;
	gap: .5em;
}
.shoplist-group-label::before {
	content: '';
	display: inline-block;
	width: 5px;
	height: 1.2em;
	border-radius: 3px;
	background: #fff;
	flex-shrink: 0;
}
.shoplist-group:first-child .shoplist-group-label { border-top: 2px solid rgba(255,255,255,.3); }
.where-group-label::before {
	content: '';
	display: inline-block;
	width: 4px;
	height: 1em;
	border-radius: 3px;
	background: #fff;
	flex-shrink: 0;
}

.where-btn--official {
	background: #fff;
	border-color: var(--p1);
}
.where-btn--official .official-btn-logo { max-height: 54px; width: auto; max-width: 90%; object-fit: contain; display: block; margin: 0 auto; filter: none; }
.where-btn--qoo10 { background: #fff; border-color: rgba(255,60,0,.15); }
.where-btn--amazon { background: #fff; }
.where-btn--rakuten { background: #fff; }

@media (min-width: 769px) {
	.where-btn {
		height: 88px;
		border-radius: 12px;
		padding: 12px 16px;
	}
	.where-btn__logo {
		max-height: 54px;
	}
	.where-btn--official .official-btn-logo {
		max-height: 60px;
	}
}

/* ========== SP専用 WHERE TO BUY（メニューとSNSアイコンの間） ========== */
.where-mobile { display: none; }
@media (max-width: 768px) {
	.where-mobile {
		display: block;
		width: 100%;
		margin: 6vw 0 0 0;
		box-sizing: border-box;
	}
	.where-mobile-inner {
		background: var(--p1);
		border-radius: 14px;
		overflow: hidden;
		padding: 0 0 6% 0;
		width: 100%;
		box-sizing: border-box;
		box-shadow: 0 6px 32px rgba(37,0,193,.22);
		display: flex;
		flex-direction: column;
	}
	.where-mobile-head {
		display: block;
		padding: 8% 5% 6%;
		text-align: center;
		background: var(--p1);
	}
	.where-mobile-title {
		color: #fff;
		font-family: var(--en);
		font-size: 8vw;
		font-weight: var(--black, 900);
		letter-spacing: .06em;
		line-height: 1;
		text-transform: uppercase;
		margin: 0;
	}
	.where-mobile-sub {
		color: rgba(255,255,255,.9);
		font-family: var(--ja);
		font-size: 3.2vw;
		letter-spacing: .08em;
		line-height: 1;
		margin: .6em 0 0 0;
	}
	.where-mobile-group {
		display: block;
		padding: 5% 5% 0;
		border-top: 1px solid rgba(255,255,255,.2);
		margin-block-end: 1rem;
	}
	.where-mobile-group:last-child {
		margin-block-end: 0;
	}
	.where-mobile-group-label {
		font-size: 3.6vw;
		font-weight: 900;
		letter-spacing: .02em;
		color: #fff;
		margin: 0 0 0.8rem 0;
		padding: 0;
		background: transparent;
		display: flex;
		align-items: center;
		gap: .4em;
	}
	.where-mobile-group-label::before {
		content: '';
		display: inline-block;
		width: 4px;
		height: 1em;
		border-radius: 3px;
		background: #fff;
		flex-shrink: 0;
	}
	.where-mobile-btns {
		display: flex;
		flex-direction: column;
		gap: 12px;
		list-style: none;
		margin: 0;
		padding: 0;
	}
	.where-mobile-btns li {
		display: block;
		padding: 0;
		box-sizing: border-box;
	}
	.where-mobile-btn {
		align-items: center;
		background: #fff;
		border-radius: 10px;
		display: flex;
		justify-content: center;
		overflow: hidden;
		padding: 0 5%;
		text-decoration: none;
		transition: opacity .18s, transform .15s;
		box-sizing: border-box;
		border: 2px solid transparent;
		position: relative;
		width: 100%;
		height: 64px;
	}
	.where-mobile-btn:hover { opacity: .88; transform: translateY(-1px); }
	.where-mobile-btn::after {
		content: '';
		position: absolute;
		right: 14px;
		top: 50%;
		transform: translateY(-50%);
		width: 7px;
		height: 7px;
		border-right: 2px solid rgba(36,40,51,.3);
		border-top: 2px solid rgba(36,40,51,.3);
		rotate: 45deg;
		transition: right .18s, border-color .18s;
	}
	.where-mobile-btn--official { background: #fff; border-color: var(--p1); }
	.where-mobile-btn--official::after { border-color: var(--p1); opacity: .6; }
	.where-mobile-btn--qoo10 { background: #fff; border-color: rgba(255,60,0,.15); }
	.where-mobile-btn--amazon { background: #fff; }
	.where-mobile-btn--rakuten { background: #fff; }
	.where-mobile-btn__logo {
		display: block;
		max-height: 40px;
		max-width: 80%;
		object-fit: contain;
		width: auto;
		margin: 0 auto;
	}
	.where-mobile-btn--official .official-btn-logo {
		max-height: 44px;
		width: auto;
		max-width: 90%;
		object-fit: contain;
		display: block;
		margin: 0 auto;
	}
}

/* FOOTER (Rich Layout) */
.footer { background-color: var(--p2); padding: 12% 6% 6%; color: var(--w); font-family: var(--ja); }
.footer-inner { display: flex; flex-direction: column; }
.footer-top-row { display: flex; flex-direction: column; gap: 3rem; }

.footer-logo { width: 40%; max-width: 160px; margin-block-end: 1.5rem; filter: brightness(0) invert(1); }
.footer-logo img { display: block; width: 100%; height: auto; }
.footer .media { display: flex; gap: 1.5rem; list-style: none; align-items: center; }
.footer .media li a { color: rgba(255,255,255,.8); display: flex; align-items: center; justify-content: center; transition: color .2s, transform .2s, opacity .2s; width: 36px; height: 36px; }
.footer .media li a:hover { color: var(--p5); transform: translateY(-3px); }
.footer .media li a svg { display: block; width: 100%; height: 100%; }

.footer-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem 1rem; }
.footer-nav-col { display: flex; flex-direction: column; gap: 1rem; }
.footer-nav-title { font-family: var(--en); font-size: 1.1rem; font-weight: var(--bold); letter-spacing: .1em; color: var(--p5); margin-block-end: 0.2rem; }
.footer-nav .local { display: flex; flex-direction: column; gap: 0.8rem; list-style: none; padding: 0; margin: 0; }
.footer-nav .local li a { color: rgba(255,255,255,.8); font-size: 1rem; text-decoration: none; transition: color .2s; font-family: var(--en); letter-spacing: .05em; display: inline-block; }
.footer-nav .local li a:hover { color: var(--w); }

/* COMPANY INFO */
.footer-company { margin-top: 3rem; border-top: 1px solid rgba(255,255,255,0.15); padding-top: 2.5rem; }
.company-info { display: flex; flex-direction: column; gap: 0.8rem; margin-top: 1.5rem; }
.company-info p { color: rgba(255,255,255,.8); font-size: 0.95rem; line-height: 1.6; margin: 0; font-family: var(--ja); letter-spacing: .05em; }
.company-info a { color: var(--w); text-decoration: underline; transition: color .2s; }
.company-info a:hover { color: var(--p5); }

.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-block-start: 6%; text-align: center; margin-top: 3rem; }
.footer .rights { color: rgba(255,255,255,.5); font-size: 1rem; font-family: var(--en); letter-spacing: .05em; margin-block-start: 1rem; }

/* FV CTA BUTTON */
.fv-cta-btn {
	position: absolute;
	bottom: 32vw;
	left: 50%;
	transform: translateX(-50%);
	z-index: 21;
	display: inline-flex;
	align-items: center;
	gap: 0.6em;
	background: var(--p1);
	color: #fff;
	font-family: var(--ja);
	font-size: clamp(1.05rem, 4.2vw, 1.3rem);
	font-weight: var(--bold);
	letter-spacing: .1em;
	padding: 0.9rem 2.2rem;
	border-radius: 50px;
	text-decoration: none;
	white-space: nowrap;
	box-shadow: 0 6px 24px rgba(37,0,193,.55), 0 2px 8px rgba(0,0,0,.3);
	transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
	animation: fvCtaPulse 2.5s ease-in-out infinite;
}
.fv-cta-btn:hover {
	background: var(--p3);
	transform: translateX(-50%) translateY(-3px);
	box-shadow: 0 10px 32px rgba(124,58,237,.6), 0 4px 12px rgba(0,0,0,.3);
}
.fv-cta-btn__arrow {
	width: 1.1em;
	height: 1.1em;
	flex-shrink: 0;
}
@keyframes fvCtaPulse {
	0%, 100% { box-shadow: 0 6px 24px rgba(37,0,193,.55), 0 2px 8px rgba(0,0,0,.3); }
	50% { box-shadow: 0 6px 32px rgba(124,58,237,.75), 0 2px 8px rgba(0,0,0,.3); }
}
@media (min-width: 769px) {
	.fv-cta-btn {
		bottom: 9vw;
		font-size: 1.1vw;
		padding: 0.85vw 2vw;
	}
}

/* SCROLL BUTTON */
.scroll-down {
	position: absolute;
	bottom: 6vw;
	left: 50%;
	transform: translateX(-50%);
	z-index: 20;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	cursor: pointer;
	text-decoration: none;
	animation: scrollBounce 1.8s ease-in-out infinite;
}
/* SP: 丸いアイコンのみ */
.scroll-down__label { display: none; }
.scroll-down__line  { display: none; }
.scroll-down__circle {
	width: 11vw;
	height: 11vw;
	max-width: 48px;
	max-height: 48px;
	background: rgba(255,255,255,.18);
	border: 1.5px solid rgba(255,255,255,.6);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	backdrop-filter: blur(4px);
}
.scroll-down__circle svg {
	width: 45%;
	height: auto;
	color: #fff;
	display: block;
}
@media (min-width: 769px) {
	/* PC: テキスト + ライン */
	.scroll-down {
		bottom: 2vw;
		gap: 8px;
		animation: scrollBouncePC 1.8s ease-in-out infinite;
	}
	.scroll-down__circle { display: none; }
	.scroll-down__label {
		display: block;
		color: rgba(255,255,255,.85);
		font-family: var(--en);
		font-size: 0.65vw;
		font-weight: var(--sBold);
		letter-spacing: .22em;
		line-height: 1;
		text-transform: uppercase;
	}
	.scroll-down__line {
		display: block;
		width: 1px;
		height: 2.8vw;
		max-height: 40px;
		background: linear-gradient(to bottom, rgba(255,255,255,.7), transparent);
	}
}
@keyframes scrollBounce {
	0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
	50%       { transform: translateX(-50%) translateY(6px); opacity: .65; }
}
@keyframes scrollBouncePC {
	0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
	50%       { transform: translateX(-50%) translateY(6px); opacity: .6; }
}

/* SWIPER OVERRIDES */
.swiper-button-next::after, .swiper-button-prev::after { display: none; }
.swiper-button-next, .swiper-button-prev { font-size: 2rem; color: var(--p5); }
.review .swiper-pagination { display: flex; gap: 2%; justify-content: center; margin-block-start: 4%; position: static; }
.review .swiper-pagination .swiper-pagination-bullet { background: rgba(255,255,255,.35); border-radius: 50%; height: 8px; opacity: 1; width: 8px; cursor: pointer; transition: background .2s; }
.review .swiper-pagination .swiper-pagination-bullet-active { background: var(--p5); }

/* DESKTOP */
@media (min-width: 769px) {
	.contents.home { background-color: var(--w); max-width: 33.125vw; }

	/* ABOUT section adjustments for PC */
	.about-bg { opacity: 0.7; background-attachment: fixed; } 
	.about-container {
		flex-direction: column; /* 縦積みに変更 */
		align-items: center;    /* 中央揃え */
		padding: 6% 8%;
		gap: 3rem;
	}
	.about-head {
		flex: auto;
		text-align: center; /* 中央揃え */
		border-right: none; /* 右の線を消す */
		border-bottom: 1px solid rgba(255,255,255,0.15); /* 下の線に戻す */
		padding-right: 0;
		padding-bottom: 2rem;
		width: 100%;
	}
	.about-body {
		width: 100%;
		max-width: 800px;
	}
	.about-body .catch-copy {
		text-align: center; /* 中央揃え */
	}
	.about-body .desc-text .last-message {
		text-align: center; /* 中央揃え */
	}

	.features-copy { font-size: 1.8vw; margin-block-start: 1rem; margin-block-end: 6%; }
	.feature-list { gap: 4vw; padding-inline: 2%; }
	.feature-card { min-height: 520px; height: 38vw; max-height: 650px; }
	.feature-body { width: 100%; padding: 8% 6% 5%; justify-content: flex-end; gap: 1.5rem; }
	.sub-link { padding: calc(2.8rem + 1.2rem) 6% 2rem; justify-content: flex-start; height: 100%; overflow: visible; flex: 1; }
	.feature-card.sub-card .sub-badges { margin-top: 0; }
	/* feature-num は position:absolute で上書き済み (行784) */
	.feature-card.sub-card .feature-num {
		position: static;
		display: block;
		width: fit-content;
		border-radius: 20px 0 20px 0;
		margin: 0;
		z-index: 3;
		position: absolute;
		top: 0;
		left: 0;
		box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
	}
	.feature-card.sub-card {
		display: flex;
		flex-direction: column;
		padding: 0;
		height: auto;
		min-height: auto;
		max-height: none;
		overflow: hidden;
	}
	.feature-card.sub-card .feature-body { width: 100%; padding: 0; }
	.sub-cta { margin-top: 1.5rem; text-align: right; }

	.lineup-copy { margin-block-start: 1rem; margin-block-end: 4%; }
	.review-bg { background-attachment: fixed; opacity: 0.7; }
	.review .review-card { padding: 6% 8%; gap: 1.5rem; }
	.review .stars { font-size: 1.4rem; }
	.review .user-attr { font-size: 1rem; }
	.review .review-text { font-size: 1.2rem; }
	.shortcuts .list li a { font-size: 0.85rem; }
	
	/* FOOTER PC */
	/* Make sure footer displays inside the .wrapper main grid on PC */
	.footer { padding: 6% 4% 3%; }
	.footer-top-row { flex-direction: row; justify-content: space-between; align-items: flex-start; gap: 4rem; }
	.footer-info { flex: 0 0 25%; }
	.footer-logo { width: 180px; margin-block-end: 2rem; }
	.footer .media { gap: 1.4rem; flex-wrap: wrap; max-width: 108px; }
	.footer .media li a { width: 40px; height: 40px; }
	.footer-nav { display: flex; flex: 1; flex-direction: row; justify-content: flex-end; gap: 8%; }
	.footer-nav-col { gap: 1.2rem; }
	.footer-nav-title { font-size: 1rem; margin-block-end: 0.5rem; }
	.footer-nav .local li a { font-size: 0.9rem; }
	
	.footer-company { margin-top: 4rem; padding-top: 3rem; }
	.company-info { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.2rem 3rem; }
	.company-info p { font-size: 0.9rem; }
	
	.footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; padding-block-start: 3%; text-align: left; }
	.footer .rights { margin-block-start: 0; }
}

/* BRAND LOGO TEXT (inline replacement for external images) */
.logo-text {
	display: inline-block;
	font-family: var(--en);
	font-weight: var(--black);
	letter-spacing: -.01em;
	line-height: 1;
	font-size: 5vw;
}
.logo-amazon { color: #FF9900; }
.logo-rakuten { color: #BF0000; }
.logo-qoo10 { color: #e63900; }
@media (min-width: 769px) {
	.logo-text { font-size: 1.25vw; }
}

/* UTILITY */
[id] { scroll-margin-top: 18vw; }
@media (min-width: 769px) { [id] { scroll-margin-top: 11vw; } }

/* FADE IN ANIMATION */
.about-container, .feature-card, .lineup .item, .review-container, .information .section {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity .6s ease, transform .6s ease;
}
.about-container.visible, .feature-card.visible, .lineup .item.visible, .review-container.visible, .information .section.visible {
	opacity: 1;
	transform: translateY(0);
}
	
