@import url('https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@400;500;700&family=Public+Sans:wght@200;400;500&display=swap');

/* ==============================================
   CSS VARIABLES
   ============================================== */
:root {
	/* Colors */
	--color-white: #FFFFFF;
	--color-white-soft: #FDFCFC;
	--color-black: #2A2A2A;
	--color-gray: #847F7B;
	--color-beige: #EFEFE9;
	--color-blue: #036EB8;
	--color-blue-light: #C3E2F8;
	--color-nav: #1A1A1A;

	/* Gradient（AQUOS AIロゴ・アクセント用） */
	--gradient-aquos: linear-gradient(
		90deg,
		#CD336A 14%,
		#BF346D 20%,
		#9B3976 31%,
		#624284 46%,
		#4D458A 51%,
		#4B488C 52%,
		#3A72AE 67%,
		#2D91C7 80%,
		#25A4D6 92%,
		#23ABDC 100%
	);

	/* Fonts */
	--font-main: "Zen Kaku Gothic New", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
	--font-en: "Public Sans", sans-serif;
	--font-sub: var(--font-en);
	--font-ja: var(--font-main);
}

/* ==============================================
   BASE / RESET
   ============================================== */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	font-size: 62.5%; /* 1rem = 10px */
	scroll-behavior: smooth;
}

@media (max-width: 1279px) {
	html, body {
		-webkit-overflow-scrolling: auto;
		overscroll-behavior: none;
	}
}

body {
	font-family: var(--font-main);
	font-size: 1.6rem;
	line-height: 1.7;
	color: var(--color-black);
	background-color: var(--color-white-soft);
}

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

picture {
	display: block;
	width: 100%;
	height: 100%;
}

a {
	color: var(--color-blue);
	text-decoration: underline;
}

a:hover,
a:focus {
	text-decoration: none;
}

ul,
ol {
	list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-size: inherit;
	font-weight: inherit;
}

sup,
sub {
	font-size: inherit;
	vertical-align: baseline;
}

button,
input,
textarea,
select {
	font: inherit;
}

button {
	cursor: pointer;
	border: none;
	background: none;
}

/* SP以下のみ改行 */
.brTab {
	display: none;
}

@media (max-width: 767px) {
	.brTab {
		display: inline;
	}
}

/* スクリーンリーダー専用 */
.srOnly {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* フォーカスインジケーター */
:focus-visible {
	outline: 3px solid var(--color-blue);
	outline-offset: 2px;
}

/* ==============================================
   LAYOUT
   ============================================== */
.secInner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

@media (min-width: 1280px) {
	.secInner {
		padding: 0 40px;
	}
}

/* ==============================================
   AQUOS AI ロゴ
   ============================================== */
.aquosAiLogo {
	display: inline-block;
	font-size: 1.8rem;
	font-weight: 700;
	letter-spacing: 0.05em;
}

.aquosAiLogoText {
	font-family: var(--font-en);
	background: var(--gradient-aquos);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

/* ==============================================
   HEADER
   ============================================== */
.siteHeader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background-color: var(--color-white-soft);
	height: 64px;
	padding: 0 30px;
	opacity: 1;
	transform: translateY(0);
	transition: opacity 0.3s ease, transform 0.3s ease;
}

.siteHeader.isHidden {
	opacity: 0;
	pointer-events: none;
	transform: translateY(-5px);
}


@media (min-width: 1280px) {
	.siteHeader {
		height: 70px;
		padding: 0 30px;
	}
}

.headerInner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 100%;
}

.headerLogo a {
	display: block;
	text-decoration: none;
}

.headerLogo img {
	width: 125px;
	height: auto;
	display: block;
}

/* PCグローバルナビ */
.gnavPc {
	display: none;
	height: 100%;
}

@media (min-width: 1280px) {
	.gnavPc {
		display: block;
	}
}

.gnavList {
	display: flex;
	align-items: center;
	gap: 0;
	height: 100%;
}

.gnavItem {
	height: 100%;
}

.gnavLink {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 0 16px;
	height: 100%;
	font-family: var(--font-main);
	font-size: 1.3rem;
	font-weight: 700;
	line-height: 1.4;
	color: var(--color-nav);
	text-decoration: none;
	border-bottom: 2px solid transparent;
	transition: color 0.4s ease, border-bottom-color 0.4s ease;
}

.gnavLink:hover {
	color: var(--color-blue);
	border-bottom-color: var(--color-blue);
}

.gnavLink svg {
	flex-shrink: 0;
}

/* SPメニューボタン */
.menuBtn {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 8px 12px;
	background: transparent;
	border: 1px solid var(--color-gray);
	border-radius: 4px;
	cursor: pointer;
}

.menuBtnIcon {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 5px;
}

.menuBtnIcon span {
	display: block;
	width: 20px;
	height: 2px;
	background-color: var(--color-black);
	border-radius: 2px;
}

.menuBtnText {
	font-family: var(--font-en);
	font-size: 1.2rem;
	font-weight: 600;
	letter-spacing: 0.05em;
	color: var(--color-nav);
	transform: translateY(1px);
}


@media (min-width: 1280px) {
	.menuBtn {
		display: none;
	}
}

/* ==============================================
   SP MENU (OVERLAY)
   ============================================== */
.spMenu {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2000;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s ease;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 40px;
}

.spMenu.isOpen {
	opacity: 1;
	pointer-events: auto;
	background-color: rgba(42, 42, 42, 0.9);
}

.spMenuOverlay {
	display: none;
}

.spMenuInner {
	position: relative;
	width: 220px;
	overflow-y: auto;
}

.spMenuHead {
	position: absolute;
	top: 0;
	right: 30px;
	height: 64px;
	display: flex;
	align-items: center;
}

.spMenuClose {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 8px 12px;
	background: #2A2A2A;
	border: 1px solid #2A2A2A;
	border-radius: 4px;
	color: var(--color-white);
	cursor: pointer;
	transition: opacity 0.4s ease;
}



.spMenuCloseText {
	font-family: var(--font-en);
	font-size: 1.2rem;
	font-weight: 600;
	letter-spacing: 0.05em;
	transform: translateY(1px);
}

.spNavList {
	width: 220px;
	margin: 0 auto 40px;
}

.spNavItem {
}

.spNavLink {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 8px;
	padding: 12px 16px;
	color: var(--color-white);
	text-decoration: none;
	font-family: var(--font-main);
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 1.4;
	letter-spacing: 0.05em;
	transition: opacity 0.4s ease;
}



.spNavIcon {
	flex-shrink: 0;
}

.spNavIcon path,
.spNavIcon circle,
.spNavIcon rect,
.spNavIcon line {
	stroke: var(--color-white);
}

.spNavIcon circle[fill] {
	fill: var(--color-white);
	stroke: none;
}

.spMenuCta {
	margin-top: 40px;
}

.spMenuCtaBtn {
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--color-white);
	border-radius: 4px;
	border: 1px solid #847F7B;
	width: 100%;
	height: 90px;
	text-decoration: none;
	transition: opacity 0.4s ease;
}

.spMenuCtaBtnInner {
	display: flex;
	flex-direction: column;
	gap: 2px;
	max-width: 184px;
	transform: translateY(3px);
}



.spMenuCtaLogo {
	height: auto;
	width: 100%;
	display: block;
	transform: translateX(-2px);
}

.spMenuCtaText {
	font-family: var(--font-main);
	font-size: 1.4rem;
	font-weight: 500;
	line-height: 1.8;
	letter-spacing: 0;
	color: var(--color-black);
}

/* ==============================================
   CTA BUTTON
   ============================================== */
.ctaBtn {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 16px 28px;
	background: var(--gradient-aquos);
	color: var(--color-white);
	text-decoration: none;
	border-radius: 50px;
	font-size: 1.5rem;
	font-weight: 700;
	transition: opacity 0.4s ease, transform 0.4s ease;
	box-shadow: 0 4px 16px rgba(3, 110, 184, 0.3);
}


.ctaBtn .aquosAiLogoText {
	-webkit-text-fill-color: var(--color-white);
	font-size: 1.6rem;
}

/* アウトラインボタン */
.btnOutline {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 28px;
	border: 2px solid var(--color-blue);
	color: var(--color-blue);
	text-decoration: none;
	border-radius: 50px;
	font-size: 1.4rem;
	font-weight: 500;
	transition: background-color 0.4s ease, color 0.4s ease;
}


.iconExternal {
	flex-shrink: 0;
}

/* ==============================================
   SECTION COMMON
   ============================================== */
.secTitle {
	font-size: 2.2rem;
	font-weight: 700;
	line-height: 1.4;
	color: var(--color-black);
	margin-bottom: 24px;
	text-align: center;
}

@media (min-width: 768px) {
	.secTitle {
		font-size: 2.8rem;
		margin-bottom: 32px;
	}
}

.secSubTitle {
	font-size: 1.5rem;
	color: #666666;
	text-align: center;
	margin-bottom: 48px;
}

.secLead {
	font-size: 1.5rem;
	line-height: 1.8;
	text-align: center;
	margin-bottom: 48px;
	color: #555555;
}

@media (min-width: 768px) {
	.secLead {
		font-size: 1.6rem;
	}
}

/* ==============================================
   SECTION 01: HERO
   ============================================== */
.heroSec {
	position: relative;
	width: 100%;
	height: 100svh;
	padding: 70px 30px 0;
	display: flex;
	flex-direction: column;
}

.heroBody {
	position: relative;
	flex: 1;
	width: 100%;
	overflow: hidden;
}

@media (min-width: 1280px) {
	.heroSec {
		padding: 70px 65px 0;
	}
}

.heroImgWrap {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.heroSlide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 1.5s ease-in-out;
	display: flex;
}

@media (max-width: 1279px) {
	.heroSlide {
		flex-direction: column;
	}
}

.heroSlide picture {
	overflow: hidden;
}

@media (min-width: 1280px) {
	.heroSlide picture {
		flex: 1;
	}
}

@media (max-width: 1279px) {
	.heroSlide picture {
		flex: initial;
		height: 50%;
	}
}

.heroSlide picture img {
	object-fit: cover;
	object-position: center center;
	width: 100%;
	height: 100%;
}

.heroSlide.isActive {
	opacity: 1;
}


/* 一時停止時のplayアイコン */
.carouselStop.isPaused .carouselStopBar {
	display: none;
}

.carouselStop.isPaused::after {
	content: '';
	display: block;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 5.5px 0 5.5px 9px;
	border-color: transparent transparent transparent #847F7B;
	transform: translateX(1px);
}

.heroImg {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.heroImgWrap::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.heroContent {
	position: relative;
	z-index: 1;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.heroInner {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	gap: 20px;
}

@media (min-width: 1280px) {
	.heroInner {
		gap: 32px;
	}
}

.heroTitleImgWrap {
	width: 220px;
}

.heroTitleImg {
	width: 100%;
	height: auto;
	display: block;
}

.heroCatch {
	font-family: var(--font-main);
	font-size: 1.8rem;
	font-weight: 500;
	color: #FDFCFC;
	line-height: 1.8;
	letter-spacing: 0.2em;
	min-height: 3.6em; /* 2行分確保してタイピング時の高さ変化を防ぐ */
	transform: translate3d(16px, 0, 0);
}

@media (min-width: 1280px) {
	.heroCatch {
		font-size: 2.8rem;
		min-height: auto; /* PC は1行なので解除 */
		transform: translate3d(20px, 0, 0);
	}

	.heroTitleImgWrap {
		width: 357px;
	}
}

/* カルーセルコントロール */
.heroCarouselControls {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 20px;
	height: 70px;
	flex-shrink: 0;
}

@media (min-width: 1280px) {
	.heroCarouselControls {
		justify-content: center;
		gap: 16px;
	}
}

.carouselDots {
	display: flex;
	align-items: center;
	gap: 10px;
}

.carouselDot {
	position: relative;
	overflow: hidden;
	width: 28px;
	height: 3px;
	border-radius: 0;
	background-color: #847F7B;
	padding: 0;
	border: none;
	cursor: pointer;
}

@media (min-width: 1280px) {
	.carouselDot {
		width: 40px;
	}
}

.carouselDot.isActive::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--color-blue);
	transform-origin: left center;
	animation: dotProgress 5s linear forwards;
}

.heroCarouselControls.isPaused .carouselDot.isActive::after {
	animation-play-state: paused;
}

@keyframes dotProgress {
	from { transform: scaleX(0); }
	to { transform: scaleX(1); }
}

.carouselStop {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background-color: var(--color-beige);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 4px;
	padding: 0;
	border: none;
	cursor: pointer;
	flex-shrink: 0;
	transition: opacity 0.4s ease;
}



.carouselStopBar {
	display: block;
	width: 3px;
	height: 11px;
	background-color: #847F7B;
	border-radius: 1px;
}

/* 固定丸型CTA */
.fixedCircleCta {
	position: absolute;
	bottom: 10px;
	right: 6px;
	z-index: 900;
	width: 120px;
	height: 120px;
	border-radius: 50%;
	background-color: #036EB8;
	border: 1px solid var(--color-blue);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	gap: 7px;
	text-decoration: none;
	filter: drop-shadow(0 0 0px rgba(0, 0, 0, 0));
	transition: transform 0.4s ease, opacity 0.4s ease, background-color 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.4s ease;
}

.fixedCircleCta:hover {
	background-color: #fff;
	filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.3));
}


.fixedCircleCtaText {
	color: var(--color-white);
	font-size: 1.3rem;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0;
	text-align: center;
	position: relative;
	z-index: 1;
	transition: color 0.4s ease;
}

.fixedCircleCta:hover .fixedCircleCtaText {
	color: var(--color-blue);
}

.fixedCircleCtaImgWrap {
	width: 56px;
}

.fixedCircleCtaImg {
	width: 100%;
	height: auto;
	display: block;
}

@media (min-width: 1280px) {
	.fixedCircleCta {
		bottom: 33px;
		right: 26px;
		width: 150px;
		height: 150px;
		gap: 8px;
	}

	.fixedCircleCtaImgWrap {
		width: 86px;
	}
}

/* ==============================================
   SECTION 02: CONCEPT
   ============================================== */

/* セクション全体 */
.conceptSec {
	position: relative;
}

/* ── 1: 背景画像 ── */
.conceptBg {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.conceptBgInner {
	position: sticky;
	top: 0;
	height: 100svh;
	overflow: hidden;
}

.conceptBgImg {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	display: block;
}

.conceptBgBase {
	position: absolute;
	inset: 0;
	background: rgba(42, 42, 42, 0.5);
	z-index: 1;
}

.conceptBgOverlay {
	position: absolute;
	inset: 0;
	background: rgba(42, 42, 42, 0.35);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	opacity: 0;
	transition: opacity 0.5s ease;
	z-index: 2;
}

/* ── 2+3: メインラッパー ── */
.conceptMain {
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
	z-index: 1;
	padding-top: 78.4%;
}

/* ── 2: テキスト ── */
.conceptTextSticky {
	position: sticky;
	top: 0;
	height: 100svh;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
	padding: 0 30px;
}

.conceptTextInner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 40px;
	width: 100%;
}

.conceptTtlWrap {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
}

@media (min-width: 1280px) {
	.conceptTtlWrap {
		display: block;
		width: auto;
	}
	.conceptTtl {
		height: 40px;
		margin-bottom: 16px;
	}
}

.conceptTtl {
	height: 30px;
	width: auto;
	margin-bottom: 8px;
	display: block;
}

.conceptHeading {
	font-family: var(--font-main);
	font-size: 2.0rem;
	font-weight: 500;
	letter-spacing: 0.15em;
	color: var(--color-white);
	line-height: 1.8;
	margin-bottom: 0;
}

.conceptBody {
	display: flex;
	flex-direction: column;
	padding-top: 0;
}

.conceptBodyText {
	font-family: var(--font-main);
	font-size: 1.5rem;
	font-weight: 500;
	line-height: 2.0;
	letter-spacing: 0.02em;
	color: var(--color-white);
}

br.br-pc {
	display: none;
}

.conceptBodyText01 {
	margin-bottom: 0;
}

.conceptBodyText02 {
	margin-bottom: 16px;
}


@media (min-width: 1280px) {
	.conceptMain {
		padding-top: 0;
	}
	.conceptTextSticky {
		padding: 0 60px;
	}
	.conceptTextInner {
		flex-direction: row;
		align-items: flex-start;
		gap: 80px;
		width: 1010px;
	}
	.conceptBody {
		padding-top: 70px;
	}
	.conceptHeading {
		font-size: 2.8rem;
		margin-bottom: 16px;
	}
	.conceptBodyText {
		font-size: 1.8rem;
		line-height: 2.5;
		letter-spacing: 0.05em;
	}
	.conceptBodyText01 {
		margin-bottom: 16px;
	}
	br.br-pc {
		display: inline;
	}
}

/* ── 3: スクロール画像群 ── */
.conceptImgFlow {
	width: 100%;
	z-index: 0;
	padding-bottom: 100svh;
}

@media (max-width: 1279px) {
	.conceptImgFlow {
		margin-top: calc(-100svh - 68%);
	}
}

.conceptImgItem img {
	display: block;
	width: 100%;
	height: auto;
	opacity: 0;
	filter: blur(12px);
	transition: opacity 1.1s ease, filter 1.1s ease;
}

.conceptImgItem.isVisible img {
	opacity: 1;
	filter: blur(0);
}

.conceptImgItem01 {
	width: 44.27%;
	margin-left: 0;
	margin-right: auto;
}

.conceptImgItem02 {
	width: 38.4%;
	margin-top: -35.73%;
	margin-right: 0;
	margin-left: auto;
}

.conceptImgItem03 {
	width: 37.33%;
	margin-top: 253.33%;
	margin-left: 10.13%;
	margin-right: auto;
}

.conceptImgItem04 {
	width: 28.53%;
	margin-top: 12.53%;
	margin-left: auto;
	margin-right: 0;
}

.conceptImgItem05 {
	width: 63.2%;
	margin-top: 22.4%;
	margin-left: 0;
	margin-right: auto;
}

.conceptImgItem06 {
	width: 86.93%;
	margin-top: 66.67%;
	margin-left: auto;
	margin-right: 0;
}

.conceptImgItem03,
.conceptImgItem04,
.conceptImgItem05,
.conceptImgItem06 {
	position: relative;
}

@media (max-width: 1279px) {
	.conceptImgItem03::after,
	.conceptImgItem04::after,
	.conceptImgItem05::after,
	.conceptImgItem06::after {
		content: '';
		position: absolute;
		inset: 0;
		background: #2A2A2A;
		opacity: 0.5;
	}
}

@media (min-width: 1280px) {
	.conceptImgItem01 {
		width: 22.5%;
	}
	.conceptImgItem02 {
		width: 24.79%;
		margin-top: -8.54%;
	}
	.conceptImgItem03 {
		width: 19.86%;
		margin-top: 1.74%;
		margin-left: 9.86%;
		margin-right: auto;
	}
	.conceptImgItem04 {
		width: 15.35%;
		margin-top: 5.63%;
		margin-left: 25.35%;
		margin-right: auto;
	}
	.conceptImgItem05 {
		width: 20.28%;
		margin-top: 20.07%;
		margin-left: auto;
		margin-right: 0;
	}
	.conceptImgItem06 {
		width: 41.67%;
		margin-top: 36.67%;
		margin-left: 0;
		margin-right: auto;
	}
}

/* ── 4: YouTubeエリア ── */
.conceptMovie {
	position: relative;
	z-index: 1;
	padding: 100px 30px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.conceptMovieInner {
	position: relative;
	width: 100%;
	max-width: 800px;
	margin: 0 auto;
}

.conceptMovieTtl {
	height: 40px;
	width: auto;
	display: block;
	position: absolute;
	top: -9px;
	left: -20px;
	transform: rotate(-17deg);
	transform-origin: center center;
	z-index: 2;
}

.conceptMovieWrap {
	position: relative;
	z-index: 1;
	width: 100%;
	aspect-ratio: 16 / 9;
}

.conceptMovieWrap iframe {
	width: 100%;
	height: 100%;
}

.conceptMovieThumb {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	padding: 0;
	border: none;
	background: none;
	cursor: pointer;
}

.conceptMovieThumb img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.conceptMovieThumb.isHidden {
	display: none;
}

.conceptMovieCaption {
	font-family: var(--font-main);
	font-size: 1.4rem;
	font-weight: 700;
	line-height: 1.6;
	letter-spacing: 0;
	color: var(--color-white);
	text-align: center;
	margin-top: 14px;
}

@media (min-width: 1280px) {
	.conceptMovie {
		padding: 120px 60px 160px;
		min-height: 100vh;
	}
	.conceptMovieTtl {
		left: -80px;
	}
	.conceptMovieCaption {
		font-size: 1.6rem;
		margin-top: 23px;
	}
	.spBr {
		display: none;
	}
}

/* ==============================================
   SECTION 03: SERVICE
   ============================================== */
.serviceSec {
	padding: 100px 0 0;
}

@media (min-width: 1280px) {
	.serviceSec {
		padding: 100px 60px 0;
		margin-top: 100px;
	}
}

.serviceInner {
	max-width: 1200px;
	margin: 0 auto;
}

/* 見出しエリア */
.serviceHeadArea {
	padding: 0 30px;
	margin-bottom: 0;
}

@media (min-width: 1280px) {
	.serviceHeadArea {
		padding: 0;
		margin-bottom: 80px;
	}
}

.serviceTitleImg {
	display: block;
	width: auto;
	height: 40px;
	margin-bottom: 10px;
}

.serviceHeadingJa {
	font-family: var(--font-main);
	font-size: 2.0rem;
	font-weight: 500;
	letter-spacing: 0.15em;
	color: var(--color-black);
	line-height: 1.8;
	margin-bottom: 16px;
}

@media (min-width: 1280px) {
	.serviceTitleImg {
		height: 52px;
		margin-bottom: 20px;
	}
	.serviceHeadingJa {
		font-size: 2.8rem;
	}
}

.serviceLead {
	font-size: 1.4rem;
	font-weight: 400;
	line-height: 1.8;
	letter-spacing: 0.03em;
	color: var(--color-black);
}

/* ── SP: シンプル縦並び ── */
.serviceScene {
	position: relative;
}

.serviceSceneSticky {
	display: flex;
	flex-direction: column;
}

.serviceLeft {
	background: var(--color-white-soft);
}

@media (max-width: 1279px) {
	.serviceLeft {
		display: flex;
		justify-content: center;
		padding: 100px 30px 40px;
	}

	.serviceLeftInner {
		max-width: 315px;
		width: 100%;
	}
}


.serviceNumRow {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 32px;
}

@media (min-width: 1280px) {
	.serviceNumRow {
		align-items: flex-start;
		margin-bottom: 40px;
	}
}

.serviceNum {
	font-family: var(--font-en);
	font-size: 3.6rem;
	font-weight: 200;
	line-height: 1;
	letter-spacing: 0.05em;
	color: var(--color-black);
	width: 54px;
}

@media (min-width: 1280px) {
	.serviceNum {
		font-size: 4.8rem;
		width: 72px;
	}
}

.serviceTagRow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0;
	background-color: #EFEFE9;
	border-radius: 999px;
	padding: 6px 20px 6px 16px;
}

.serviceTagIco {
	width: 26px;
	height: auto;
	object-fit: contain;
}

.serviceTagLabel {
	font-size: 1.4rem;
	font-weight: 700;
	line-height: 1.6;
	letter-spacing: 0;
	color: var(--color-black);
}

@media (min-width: 1280px) {
	.serviceTagLabel {
		font-size: 1.6rem;
	}
}

.serviceDescArea {
	padding-left: 44px;
	width: 100%;
}

@media (min-width: 1280px) {
	.serviceDescArea {
		padding-left: 60px;
	}
}

.serviceDesc {
	font-size: 1.6875rem;
	font-weight: 500;
	line-height: 1.75;
	letter-spacing: 0.05em;
	color: var(--color-black);
	margin-bottom: 16px;
}

.serviceTvArea {
	display: flex;
	flex-direction: column;
	align-items: center;
	max-width: 240px;
	margin-top: 16px;
	margin-right: auto;
}
@media (min-width: 1280px) {
	.serviceTvArea {
		display: block;
	}
}
@media (min-width: 1280px) {
	.serviceTvArea {
		max-width: 300px;
	}
}

.serviceTvWrap {
	margin-bottom: 16px;
}

.serviceTvWrap img {
	width: 100%;
	height: auto;
}

.serviceHashtag {
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 1.8;
	letter-spacing: 0;
	color: var(--color-gray);
	text-align: center;
	white-space: nowrap;
}
@media (min-width: 1280px) {
	.serviceHashtag {
		white-space: normal;
	}
}


.servicePhoto {
	position: relative;
	display: flex;
	flex-direction: column;
}

.servicePhotoImgWrap {
	position: sticky;
	top: 0;
	height: 100svh;
}

@media (max-width: 767px) {
	.servicePhotoImgWrap--double {
		display: flex;
		flex-direction: column;
	}
	.servicePhotoImgWrap--double picture {
		height: 50% !important;
	}
}

@media (min-width: 768px) {
	.servicePhotoImgWrap--double picture:last-child {
		display: none;
	}
}

.servicePhoto picture {
	width: 100%;
	height: 100%;
	display: block;
}

.servicePhotoImg {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	display: block;
}

.servicePhotoOverlay {
	position: absolute;
	inset: 0;
	background: rgba(42, 42, 42, 0.35);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	opacity: 0;
	z-index: 2;
}

/* チャットボックス */
.serviceScrollBox {
	position: relative;
	min-height: 120vh;
	margin-top: -10svh;
	padding: 40px 24px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	z-index: 20;
}

/* ── PC: スクロールアニメーション ── */
@media (min-width: 1280px) {
	.serviceSceneSticky {
		display: flex;
		flex-direction: row;
		align-items: flex-start;
	}

	.serviceLeft {
		position: sticky;
		top: 0;
		width: 40%;
		height: 100vh;
		display: flex;
		align-items: center;
		justify-content: flex-start;
		flex-shrink: 0;
	}

	.serviceLeftInner {
	}

	.serviceDesc {
		font-size: 2.5rem;
		margin-bottom: 32px;
	}

	.serviceTvWrap {
		margin-bottom: 20px;
	}

	.serviceRight {
		flex: 1;
	}

	.serviceScrollBox {
		min-height: 120vh;
		margin-top: -10svh;
		padding: 80px 40px;
		justify-content: flex-start;
	}
}

/* チャットUI */
.serviceBoxTitle {
	display: block;
	font-size: 2.4rem;
	font-weight: 500;
	letter-spacing: 0.1em;
	color: var(--color-white);
	text-align: center;
	border-bottom: 2px solid var(--color-white);
	padding: 0 4px 8px;
	margin: 0 auto 40px;
	opacity: 0;
	transform: translateY(10px);
	transition: opacity 0.35s ease, transform 0.35s ease;
}
.serviceBoxTitle.isVisible {
	opacity: 1;
	transform: translateY(0);
}
@media (min-width: 1280px) {
	.serviceBoxTitle {
		font-size: 2.8rem;
		margin-bottom: 64px;
	}
}

.serviceChatList {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.serviceChatRow {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	opacity: 0;
	transform: translateY(10px);
	transition: opacity 0.35s ease, transform 0.35s ease;
}
.serviceChatRow.isVisible {
	opacity: 1;
	transform: translateY(0);
}

.serviceChatUser {
	flex-direction: row-reverse;
	align-items: flex-end;
}

.serviceChatAi {
	align-items: flex-end;
	padding-right: 10px;
}
@media (min-width: 1280px) {
	.serviceChatAi {
		padding-right: 40px;
	}
}

.serviceChatAvatar {
	width: 68px;
	height: 68px;
	border-radius: 50%;
	overflow: hidden;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.serviceUserAvatar {
}

.serviceAiAvatar {
}

.serviceAiAvatarText {
	font-family: var(--font-en);
	font-size: 1.1rem;
	font-weight: 700;
}


.serviceBubble {
	display: inline-block;
	padding: 14px 18px;
}

.serviceBubbleText {
	font-family: var(--font-main);
	font-size: 1.6rem;
	font-weight: 400;
	line-height: 1.8;
	letter-spacing: 0;
}

.serviceBubbleUser {
	padding: 20px;
	background: var(--color-black);
	color: var(--color-white);
	border-radius: 12px 12px 0 12px;
}

.serviceBubbleAi {
	display: block;
	width: 100%;
	padding: 20px;
	background: var(--color-white);
	color: var(--color-black);
	border: 1px solid var(--color-gray);
	border-radius: 12px 12px 12px 0;
}

.serviceTip {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 12px;
	font-size: 1.3rem;
	color: var(--color-blue);
	font-weight: 600;
}

.serviceTipIco {
	flex-shrink: 0;
	width: 32px;
	height: auto;
}

.serviceTipText {
	font-family: var(--font-main);
	font-size: 1.4rem;
	font-weight: 500;
	line-height: 1.6;
	letter-spacing: 0;
	color: var(--color-blue);
}

.serviceNote {
	display: flex;
	gap: 6px;
	font-family: var(--font-main);
	font-size: 1.2rem;
	opacity: 0;
	transform: translateY(10px);
	transition: opacity 0.35s ease, transform 0.35s ease;
	font-weight: 500;
	line-height: 1.6;
	letter-spacing: 0;
	color: #fff;
	margin: 40px auto 0;
}
.serviceNote.isVisible {
	opacity: 1;
	transform: translateY(0);
}

.serviceNoteBottom {
	margin-top: 40px;
	padding: 0 30px;
	color: #847F7B;
}

@media (min-width: 1280px) {
	.serviceNoteBottom {
		margin-top: 80px;
		padding: 0;
	}
}

@keyframes svcFadeUp {
	from { opacity: 0; transform: translateY(12px); }
	to   { opacity: 1; transform: translateY(0); }
}

@keyframes svcFadeIn {
	from { opacity: 0; }
	to   { opacity: 1; }
}

/* ==============================================
   SECTION 04: CHARACTER
   ============================================== */
.characterSec {
	padding: 100px 30px 60px;
}

.characterTitleImg {
	display: block;
	width: auto;
	height: 22px;
	margin-bottom: 8px;
}

.characterHeadingJa {
	font-family: var(--font-main);
	font-size: 2.0rem;
	font-weight: 500;
	letter-spacing: 0.15em;
	color: var(--color-black);
	line-height: 1.8;
	margin-bottom: 16px;
}

.characterLead {
	font-size: 1.4rem;
	font-weight: 400;
	line-height: 1.8;
	letter-spacing: 0.03em;
	color: var(--color-black);
	margin-bottom: 60px;
}

@media (min-width: 1280px) {
	.characterTitleImg {
		margin-bottom: 20px;
	}
	.characterHeadingJa {
		font-size: 2.8rem;
	}
}

.characterSec .secInner {
	padding: 0;
}

@media (min-width: 1280px) {
	.characterSec {
		padding: 100px 60px 100px;
		margin-top: 100px;
	}
}

.characterGrid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 40px;
}

@media (min-width: 1280px) {
	.characterGrid {
		grid-template-columns: 1fr 1fr;
		gap: 60px;
	}
}

.characterCard {
	display: flex;
	flex-direction: column;
}

.characterName {
	font-family: var(--font-main);
	font-size: 2.0rem;
	font-weight: 500;
	letter-spacing: 0.2em;
	line-height: 1;
	color: var(--color-black);
	text-align: center;
	margin-bottom: 20px;
}

@media (min-width: 1280px) {
	.characterName {
		font-size: 2.4rem;
	}
}

.characterCardInner {
	border: 1px solid var(--color-beige);
	border-radius: 4px;
	overflow: hidden;
}

.characterImgWrap {
	width: 100%;
}

.characterImg {
	width: 100%;
	height: auto;
	display: block;
}

.characterInfo {
	position: relative;
	background: var(--color-white-soft);
	padding: 24px;
	border: 1px solid #2A2A2A;
	border-radius: 4px;
	margin-top: -2px;
}

.characterInfo::before {
	content: '';
	position: absolute;
	top: -13px;
	left: 70px;
	width: 15px;
	height: 13px;
	background-image: url("data:image/svg+xml,%3Csvg width='16' height='14' viewBox='0 0 16 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.5142 1.61645L14.529 13.9107L0.499392 13.9107L7.5142 1.61645Z' fill='%23FDFCFC'/%3E%3Cpath d='M14.964 13.0557C15.1006 13.2955 15.0172 13.6005 14.7775 13.7373C14.5377 13.8741 14.2327 13.7905 14.0958 13.5508L7.51477 2.01758L0.934694 13.5508C0.797843 13.7906 0.491923 13.8742 0.252077 13.7373C0.0125266 13.6005 -0.0708877 13.2954 0.0655533 13.0557L7.51477 -1.31392e-06L14.964 13.0557Z' fill='%232A2A2A'/%3E%3C/svg%3E");
	background-size: contain;
	background-repeat: no-repeat;
	z-index: 1;
}

.characterDesc {
	font-family: var(--font-main);
	font-size: 1.5rem;
	font-weight: 400;
	line-height: 1.8;
	letter-spacing: 0;
	color: var(--color-black);
	text-align: left;
}

@media (min-width: 1280px) {
	.characterDesc {
		font-size: 1.6rem;
	}
}

/* ==============================================
   SECTION 05: DEVICE
   ============================================== */
.deviceSec {
	position: relative;
	overflow: hidden;
	padding: 140px 30px 80px;
}

.deviceBgSlider {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 168px;
	z-index: 0;
}

.deviceBgTrack {
	display: flex;
	width: max-content;
	height: 100%;
	animation: deviceBgScroll 60s linear infinite;
	will-change: transform;
}

.deviceBgImg {
	height: 100%;
	width: auto;
	max-width: none;
	flex-shrink: 0;
}

@keyframes deviceBgScroll {
	0%   { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}

.deviceSec .secInner {
	position: relative;
	z-index: 1;
	max-width: 880px;
	margin: 0 auto;
	padding: 30px 20px;
	border-radius: 8px;
	background-color: var(--color-white);
	border: 1px solid var(--color-gray);
}

@media (min-width: 1280px) {
	.deviceSec {
		padding: 100px 60px;
	}

	.deviceSec .secInner {
		padding: 60px 60px 40px;
	}

	.deviceBgSlider {
		height: 100%;
	}
}

.deviceBody {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 24px;
}

.deviceBodyLeft {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0;
}

.deviceBodyRight {
	width: 100%;
}

@media (max-width: 1279px) {
	.deviceBodyRight {
		max-width: 199px;
		margin: 0 auto;
	}
}

.deviceAquosLogo {
	height: auto;
	max-width: 220px;
	margin-bottom: 12px;
}

.deviceTitle {
	font-size: 2.0rem;
	font-weight: 500;
	letter-spacing: 0.2em;
	line-height: 1;
	color: var(--color-black);
	margin-bottom: 24px;
}

.deviceText {
	font-family: var(--font-main);
	font-size: 1.4rem;
	font-weight: 400;
	line-height: 1.8;
	letter-spacing: 0.05em;
	color: var(--color-black);
	text-align: center;
}

.deviceImg {
	width: 100%;
	height: auto;
}

@media (min-width: 1280px) {
	.deviceBody {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		gap: 56px;
		margin-bottom: 40px;
	}

	.deviceBodyLeft {
		flex: 392;
		align-items: flex-start;
	}

	.deviceBodyRight {
		flex: 280;
	}

	.deviceAquosLogo {
		max-width: 326px;
		margin-bottom: 20px;
	}

	.deviceTitle {
		font-size: 2.8rem;
		margin-bottom: 40px;
	}

	.deviceText {
		text-align: left;
	}
}

.deviceCtaBtn {
	display: flex;
	width: fit-content;
	align-items: center;
	gap: 10px;
	padding: 12px 20px;
	background-color: var(--color-blue);
	color: var(--color-white);
	border: 1px solid var(--color-blue);
	font-size: 1.4rem;
	font-weight: 500;
	line-height: 1.8;
	letter-spacing: 0.05em;
	text-decoration: none;
	border-radius: 4px;
	margin: 0 auto;
	max-width: 100%;
	transition: background-color 0.4s ease, color 0.4s ease;
}

.deviceCtaBtn:hover {
	background-color: #fff;
	color: var(--color-blue);
}

/* 外部リンクアイコン画像切り替え */
.ctaBtnIcon {
	position: relative;
	display: inline-flex;
	width: 15px;
	height: 18px;
	flex-shrink: 0;
}

.ctaBtnIconDefault {
	display: block;
	transition: opacity 0.4s ease;
}

.ctaBtnIconDefault img {
	display: block;
	width: 15px;
	height: 18px;
}

.ctaBtnIconHover {
	position: absolute;
	top: 0;
	left: 0;
	line-height: 0;
	opacity: 0;
	transition: opacity 0.4s ease;
}

.ctaBtnIconHover img {
	display: block;
	width: 15px;
	height: 18px;
}

.deviceCtaBtn:hover .ctaBtnIconDefault,
.planCtaBtn:hover .ctaBtnIconDefault,
.footerSupportLink:hover .ctaBtnIconDefault {
	opacity: 0;
}

.deviceCtaBtn:hover .ctaBtnIconHover,
.planCtaBtn:hover .ctaBtnIconHover,
.footerSupportLink:hover .ctaBtnIconHover {
	opacity: 1;
}

/* ==============================================
   SECTION 06: PLAN (月額サービス)
   ============================================== */
.planSec {
	padding: 80px 30px 60px;
	background-color: var(--color-beige);
}

.planInner {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 60px;
}

@media (min-width: 1280px) {
	.planSec {
		padding: 100px 60px;
	}
}

/* 見出し */
.planTitleImg {
	display: block;
	width: auto;
	height: 30px;
	margin-bottom: 10px;
}

.planHeadingJa {
	font-size: 2.0rem;
	font-weight: 500;
	letter-spacing: 0.15em;
	color: var(--color-black);
	line-height: 1;
	margin-bottom: 16px;
}

@media (min-width: 1280px) {
	.planTitleImg {
		height: 32px;
		margin-bottom: 20px;
	}
	.planHeadingJa {
		font-size: 2.8rem;
	}
}

.planLead {
	font-size: 1.4rem;
	font-weight: 400;
	line-height: 1.8;
	letter-spacing: 0.03em;
	color: var(--color-black);
}


/* planBlockGroup */
.planBlockGroup {
	display: flex;
	flex-direction: column;
	gap: 40px;
}

@media (min-width: 1280px) {
	.planBlockGroup {
		gap: 24px;
	}
}

/* planBlock */
.planBlock {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.planBlockHead {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	column-gap: 16px;
	row-gap: 8px;
}

.planBlockTitleGroup {
	display: flex;
	align-items: center;
	gap: 0;
}

.planBlockIcon {
	width: 40px;
	height: auto;
	flex-shrink: 0;
}

.planBlockName {
	font-family: var(--font-main);
	font-size: 2.4rem;
	font-weight: 700;
	line-height: 1.6;
	letter-spacing: 0;
	color: var(--color-black);
}

.planBlockDesc {
	font-size: 1.4rem;
	font-weight: 400;
	line-height: 1.8;
	letter-spacing: 0.03em;
	color: var(--color-black);
	width: 100%;
}

@media (min-width: 1280px) {
	.planBlockHead {
		column-gap: 16px;
		row-gap: 0;
	}

	.planBlockName {
		font-size: 2.4rem;
	}

	.planBlockDesc {
		width: auto;
		font-size: 1.4rem;
	}
}

/* SP: トークカード */
.planTalkCards {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.planTalkCard {
	padding: 20px 16px;
	border-radius: 8px;
}

.planTalkCardFree {
	background-color: #FDFCFC;
}

.planTalkCardPaid {
	background-color: #E8F5FF;
}

.planTalkCardTop {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	margin-bottom: 16px;
}

.planTalkCardFree .planTalkCardTop {
	padding-bottom: 16px;
	border-bottom: 1px solid #847F7B;
}

.planTalkCardTitles {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.planTalkCardEn {
	font-family: var(--font-sub);
	font-size: 1.0rem;
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: 0.05em;
	color: var(--color-blue);
	margin-bottom: 4px;
}

.planTalkCardJa {
	font-family: var(--font-main);
	font-size: 2.2rem;
	font-weight: 500;
	line-height: 1;
	letter-spacing: 0;
	color: var(--color-black);
}

.planTalkCardPrice {
	font-family: var(--font-main);
	font-size: 2.2rem;
	font-weight: 500;
	line-height: 1;
	letter-spacing: 0;
	color: var(--color-black);
	text-align: right;
}

.planTalkCardPrice strong {
	font-family: var(--font-sub);
	font-size: 2.5rem;
	font-weight: 500;
	line-height: 1;
	letter-spacing: 0;
	color: var(--color-black);
}

.planTalkCardUnit {
	display: inline-block;
	font-family: var(--font-main);
	font-size: 1.4rem;
	font-weight: 500;
	line-height: 1.6;
	letter-spacing: 0;
	color: #847F7B;
	transform: translateY(-2px);
	margin: 0 4px;
}

.planTalkCardSub {
	font-family: var(--font-main);
	font-size: 1.2rem;
	font-weight: 500;
	line-height: 1;
	letter-spacing: 0;
	color: var(--color-black);
	background-color: #A7D6F6;
	padding: 8px 4px;
	text-align: center;
	margin-top: 16px;
}

.planTalkCardCount {
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-top: 1px solid #847F7B;
	padding-top: 16px;
}

.planTalkCardFree .planTalkCardCount {
	border-top: none;
	padding-top: 0;
}

.planTalkCardCountLabel {
	font-family: var(--font-main);
	font-size: 1.4rem;
	font-weight: 500;
	line-height: normal;
	letter-spacing: 0;
	color: var(--color-black);
}

.planTalkCardCount strong {
	font-family: var(--font-sub);
	font-size: 2.2rem;
	font-weight: 500;
	line-height: 1;
	letter-spacing: 0;
	color: var(--color-black);
}

.planTalkCardCount sup {
	display: inline-block;
	font-family: var(--font-main);
	font-size: 1.0rem;
	font-weight: 500;
	line-height: 1.6;
	letter-spacing: 0;
	color: #847F7B;
	transform: translateY(-12px);
}

.planFreeBanner {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	background-color: var(--color-blue);
	color: var(--color-white);
	text-align: center;
	font-family: var(--font-main);
	font-size: 2.0rem;
	font-weight: 700;
	line-height: normal;
	letter-spacing: 0;
	padding: 4px 16px 4px 20px;
	border-radius: 40px;
	margin-top: 14px;
	margin-right: 18px;
	margin-bottom: 0;
	margin-left: 18px;
	position: relative;
	z-index: 1;
}

.planFreeBanner svg {
	overflow: visible;
}

.planFreeBanner svg:last-child {
	transform: translate3d(-4px, 0, 0);
}

.planFreeBannerText {
	display: inline-block;
	transform: translate3d(0, -1px, 0);
}

.planFreeBannerText sup {
	font-family: var(--font-main);
	font-size: 1.0rem;
	font-weight: 500;
	letter-spacing: 0;
	color: var(--color-white);
	vertical-align: top;
}

.planTalkCardNormal {
	margin-top: -10px;
}

/* PC: テーブル非表示 */
.planTalkTableWrap {
	display: none;
}

@media (min-width: 1280px) {
	/* SP cards 非表示 */
	.planTalkCards {
		display: none;
	}

	/* PC table 表示 */
	.planTalkTableWrap {
		display: block;
		position: relative;
		padding-top: 32px;
	}

	.planTalkTableInner {
		border-radius: 8px;
		overflow: hidden;
	}

	.planFreeBannerTable svg {
		overflow: visible;
	}

	.planFreeBannerTable svg:last-child {
		transform: translate3d(-4px, 0, 0);
	}


	.planFreeBannerTable {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 10px;
		position: absolute;
		top: 0;
		right: 80px;
		width: calc(55% - 160px);
		margin: 0;
		padding: 4px 16px;
		font-family: var(--font-main);
		font-size: 2.0rem;
		font-weight: 700;
		line-height: normal;
		letter-spacing: 0;
		color: var(--color-white);
	}

	.planTalkTable {
		width: 100%;
		table-layout: fixed;
		border-collapse: collapse;
	}

	.planTalkTable thead {
		border-bottom: 1px solid #EFEFE9;
	}

	.planTalkTable th,
	.planTalkTable td {
		padding: 20px 24px;
		text-align: center;
		vertical-align: middle;
		border: 1px solid #EFEFE9;
	}

	/* 外側のborderを消してinner onlyに */
	.planTalkTable tr:first-child th,
	.planTalkTable tr:first-child td {
		border-top: none;
	}
	.planTalkTable tr:last-child th,
	.planTalkTable tr:last-child td {
		border-bottom: none;
	}
	.planTalkTable th:first-child,
	.planTalkTable td:first-child {
		border-left: none;
	}
	.planTalkTable th:last-child,
	.planTalkTable td:last-child {
		border-right: none;
	}


	.planTableLabel {
		width: 222px;
		font-family: var(--font-main);
		font-size: 2.0rem;
		font-weight: 500;
		line-height: normal;
		letter-spacing: 0;
		color: var(--color-black);
		background-color: var(--color-white);
		text-align: left;
	}

	.planTableLabel sup {
		font-family: var(--font-main);
		font-size: 1.0rem;
		font-weight: 500;
		line-height: 1.6;
		letter-spacing: 0;
		color: #847F7B;
		vertical-align: top;
		margin-left: 4px;
	}

	.planTableFreeHead {
		width: 326px;
		background-color: var(--color-white);
	}

	.planTablePaidHead {
		background-color: var(--color-blue-light);
		color: var(--color-black);
		border-color: var(--color-blue-light);
	}

	.planTalkTable th.planTablePaidHead {
		padding: 24px 8px 8px;
	}

	.planTableEn {
		display: block;
		font-family: var(--font-sub);
		font-size: 1.0rem;
		font-weight: 500;
		line-height: 1;
		letter-spacing: 0.05em;
		margin-bottom: 4px;
		color: var(--color-blue);
	}

	.planTableJa {
		display: block;
		font-family: var(--font-main);
		font-size: 2.5rem;
		font-weight: 500;
		line-height: 1;
		letter-spacing: 0;
		margin-bottom: 0;
		color: var(--color-black);
	}

	.planTableSub {
		display: block;
		font-family: var(--font-main);
		font-size: 1.2rem;
		font-weight: 500;
		line-height: 1;
		letter-spacing: 0;
		color: var(--color-black);
		padding: 8px 4px;
		background-color: #ECF7FF;
		margin-top: 8px;
	}

	.planTableFreeCell {
		background-color: var(--color-white);
		font-family: var(--font-main);
		font-size: 2.5rem;
		font-weight: 500;
		line-height: 1;
		letter-spacing: 0;
		color: var(--color-black);
	}

	.planTablePaidCell {
		background-color: #E8F5FF;
		color: var(--color-black);
		border-color: #E8F5FF;
		font-family: var(--font-main);
		font-size: 2.5rem;
		font-weight: 500;
		line-height: 1;
		letter-spacing: 0;
	}

	.planTableFreeCell strong,
	.planTablePaidCell strong {
		font-family: var(--font-sub);
		font-size: 2.5rem;
		font-weight: 500;
		line-height: 1;
		letter-spacing: 0;
		color: var(--color-black);
	}

	.planTableFreeCell sup,
	.planTablePaidCell sup {
		display: inline-block;
		font-family: var(--font-main);
		font-size: 1.0rem;
		font-weight: 500;
		line-height: 1.6;
		letter-spacing: 0;
		color: #847F7B;
		transform: translateY(-12px);
	}

	.planTableUnit {
		display: inline-block;
		font-family: var(--font-main);
		font-size: 1.4rem;
		font-weight: 500;
		line-height: 1.2;
		letter-spacing: 0;
		color: #847F7B;
		margin: 0 4px;
		transform: translateY(-2px);
	}

}

/* 機能行 */
.planFeatureRow {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 16px;
	border-radius: 8px;
	background-color: #FDFCFC;
	border: 1px solid #EFEFE9;
}

@media (min-width: 1280px) {
	.planFeatureRow {
		height: 90px;
		padding: 0 60px;
	}
	.planFeatureValue {
		font-size: 2.4rem;
	}
}

.planFeatureLabel {
	font-family: var(--font-main);
	font-size: 2.0rem;
	font-weight: 500;
	letter-spacing: 0;
	color: var(--color-black);
}

.planFeatureValue {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	font-family: var(--font-main);
	font-size: 2.2rem;
	font-weight: 500;
	line-height: 1;
	letter-spacing: 0;
	color: var(--color-black);
}

.planFeatureValue sup {
	font-family: var(--font-sub);
	font-size: 1.0rem;
	font-weight: 500;
	line-height: 1.25;
	letter-spacing: 0;
	color: #847F7B;
}

/* 注釈 */
.planNoteList {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.planNoteItem {
	display: flex;
	gap: 6px;
	font-family: var(--font-main);
	font-size: 1.2rem;
	font-weight: 500;
	line-height: 1.6;
	letter-spacing: 0;
	color: #847F7B;
}

.planNoteNum {
	flex-shrink: 0;
	width: 18px;
}

@media (min-width: 1280px) {
	.planNoteList {
		gap: 8px;
	}
}

/* CTAボタン */
.planCtaBtn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 12px 20px;
	background-color: #2A2A2A;
	color: #FFFFFF;
	border: 1px solid #2A2A2A;
	font-size: 1.4rem;
	font-weight: 500;
	line-height: 1.8;
	letter-spacing: 0.05em;
	text-decoration: none;
	border-radius: 4px;
	align-self: center;
	transition: background-color 0.4s ease, color 0.4s ease;
}

.planCtaBtn:hover {
	background-color: #fff;
	color: #2A2A2A;
}

/* アコーディオン */
.accordionWrap {
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	overflow: hidden;
}

.accordionBtn {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 20px;
	background-color: #F5F5F5;
	color: var(--color-black);
	font-size: 1.4rem;
	font-weight: 500;
	text-align: left;
	transition: background-color 0.4s ease;
}



.accordionIcon {
	flex-shrink: 0;
	width: 20px;
	height: 20px;
	position: relative;
}

.accordionIcon::before,
.accordionIcon::after {
	content: "";
	position: absolute;
	background-color: var(--color-blue);
	border-radius: 2px;
	transition: transform 0.3s ease;
}

.accordionIcon::before {
	top: 50%;
	left: 0;
	width: 100%;
	height: 2px;
	transform: translateY(-50%);
}

.accordionIcon::after {
	top: 0;
	left: 50%;
	width: 2px;
	height: 100%;
	transform: translateX(-50%);
}

.accordionBtn[aria-expanded="true"] .accordionIcon::after {
	transform: translateX(-50%) rotate(90deg);
	opacity: 0;
}

.accordionBody {
	padding: 0;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s ease, padding 0.3s ease;
}

.accordionBody.isOpen {
	max-height: 1000px;
	padding: 20px;
}

.planCaution {
	border: 1px solid #847F7B;
	border-radius: 0;
	padding: 20px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

@media (min-width: 1280px) {
	.planCaution {
		padding: 30px;
	}
}

.planCautionTitle {
	font-family: var(--font-main);
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 1.4;
	letter-spacing: 0.008em;
	color: var(--color-black);
}

.planCautionList {
	list-style: none;
	padding-left: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.planCautionList li {
	display: flex;
	align-items: flex-start;
	gap: 4px;
	font-size: 1.4rem;
	font-weight: 400;
	line-height: 1.6;
	letter-spacing: 0;
	color: var(--color-black);
}

.planCautionList li::before {
	content: '';
	display: block;
	width: 3px;
	height: 3px;
	border-radius: 50%;
	background-color: var(--color-black);
	flex-shrink: 0;
	transform: translateY(10px);
}

.cautionText {
	font-size: 1.3rem;
	color: #666666;
	line-height: 1.8;
}

/* ==============================================
   SECTION 07: NEWS
   ============================================== */
.newsSec {
	padding: 80px 30px 60px;
}

.newsInner {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 60px;
	width: 100%;
}

@media (min-width: 1280px) {
	.newsSec {
		padding: 100px 60px;
	}

	.newsInner {
		display: grid;
		grid-template-columns: 280px 1fr;
		gap: 40px;
		align-items: start;
	}

	.newsList {
		margin-top: 50px;
	}
}

.newsHeading {
}

.newsTitleImg {
	display: block;
	width: auto;
	height: 20px;
	margin-bottom: 10px;
}

.newsHeadingJa {
	font-size: 2.0rem;
	font-weight: 500;
	letter-spacing: 0.15em;
	color: var(--color-black);
	line-height: 1;
}

@media (min-width: 1280px) {
	.newsTitleImg {
		height: 22px;
		margin-bottom: 20px;
	}
	.newsHeadingJa {
		font-size: 2.8rem;
	}
}

.newsList {
	border-top: 1px solid #2A2A2A;
}

.newsItem {
	border-bottom: 1px solid #2A2A2A;
}

/* SP/tab/PC: 2カラム flex（body + icon） */
.newsLink {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 20px 0;
	text-decoration: none;
	color: #1A1A1A;
	transition: background-color 0.4s ease;
}

.newsLink:hover {
	background-color: #EFEFE9;
}

.newsLinkBody {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 16px;
	min-width: 0;
}

.newsLinkMeta {
	display: flex;
	align-items: center;
	gap: 10px;
}

.newsDate {
	font-family: var(--font-en);
	font-size: 1.4rem;
	font-weight: 500;
	line-height: 1.4;
	letter-spacing: 0;
	color: var(--color-black);
	white-space: nowrap;
}

.newsCat {
	display: inline-flex;
	align-items: center;
	padding: 4px 14px;
	background-color: #847F7B;
	color: #EFEFE9;
	font-family: var(--font-ja);
	font-size: 1.3rem;
	font-weight: 500;
	line-height: 1.4;
	letter-spacing: 0;
	border-radius: 4px;
	white-space: nowrap;
}

@media (min-width: 1280px) {
	.newsCat {
		font-size: 1.4rem;
	}
}

.newsTitle {
	font-family: var(--font-ja);
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 1.4;
	letter-spacing: 0;
	color: var(--color-black);
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
	min-width: 0;
}

.newsLinkIcon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	color: #1A1A1A;
	flex-shrink: 0;
}

.newsLinkIcon picture {
	display: flex;
	align-items: center;
	justify-content: center;
}

/* tab/SP */
/* tab/PC: bodyを横並びに */
@media (min-width: 768px) {
	.newsLink {
		gap: 20px;
		padding: 20px 0;
	}

	.newsLinkBody {
		flex-direction: row;
		align-items: center;
	}

	.newsLinkMeta {
		width: 260px;
		flex-shrink: 0;
	}

	.newsTitle {
		flex: 1;
	}
}

@media (min-width: 1280px) {
	.newsLink {
		padding: 20px;
	}
}


/* ==============================================
   FOOTER
   ============================================== */
.siteFooter {
	background-color: #EFEFE9;
	padding: 80px 30px 20px;
}

@media (min-width: 1280px) {
	.siteFooter {
		padding: 80px 60px 20px;
	}
}

/* SP: flex column */
.footerInner {
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 40px;
}

/* サポートリンク（SP: 1番上 / PC: nav行の右） */
.footerSupportLink {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 12px 20px;
	background-color: #2A2A2A;
	color: #FFFFFF;
	border: 1px solid #2A2A2A;
	font-size: 1.4rem;
	font-weight: 500;
	line-height: 1.8;
	letter-spacing: 0.05em;
	text-decoration: none;
	border-radius: 4px;
	align-self: center;
	order: 1;
	transition: background-color 0.4s ease, color 0.4s ease;
}

.footerSupportLink:hover {
	background-color: #fff;
	color: #2A2A2A;
}

/* ロゴ */
.footerLogo {
	order: 2;
	text-align: center;
}

.footerLogo img {
	width: 180px;
	height: auto;
	display: inline-block;
}

/* ナビ（SP: 2カラムグリッド） */
.footerNav {
	order: 3;
}

.footerNavList {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px 35px;
}

@media (min-width: 768px) and (max-width: 1279px) {
	.footerNavList {
		grid-template-columns: 1fr 1fr 1fr 1fr;
	}
}

.footerNavItem a {
	color: #1A1A1A;
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 1.4;
	letter-spacing: 0;
	text-decoration: none;
	transition: color 0.4s ease;
}

.footerNavItem a:hover {
	color: var(--color-blue);
}

/* SP: よくあるご質問を表示 */
.footerNavItemFaq {
	display: list-item;
}

/* コピーライト */
.copyright {
	order: 4;
	font-family: var(--font-en);
	font-size: 1.2rem;
	font-weight: 400;
	line-height: 1.7;
	letter-spacing: 0;
	color: #847F7B;
	text-align: center;
	padding-top: 20px;
}

/* PC */
@media (min-width: 1280px) {
	.footerInner {
		display: grid;
		grid-template-columns: 1fr auto;
		grid-template-rows: auto auto auto;
		grid-template-areas:
			"logo logo"
			"nav supportlink"
			"copyright copyright";
		gap: 32px 24px;
	}

	.footerSupportLink {
		grid-area: supportlink;
		align-self: center;
		order: unset;
	}

	.footerLogo {
		grid-area: logo;
		text-align: left;
		order: unset;
	}

	.footerLogo img {
		width: 240px;
	}

	.footerNav {
		grid-area: nav;
		order: unset;
		align-self: center;
	}

	.footerNavList {
		display: flex;
		flex-direction: row;
		gap: 20px;
		flex-wrap: wrap;
	}

	/* PC: よくあるご質問は非表示 */
	.footerNavItemFaq {
		display: none;
	}

	.copyright {
		grid-area: copyright;
		order: unset;
	}
}

/* ==============================================
   FLOAT CTA
   ============================================== */

.floatCta {
	position: fixed;
	bottom: 24px;
	right: 20px;
	z-index: 200;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.4s ease;
}

.floatCta.isVisible {
	opacity: 1;
	pointer-events: auto;
}

.floatCtaLink {
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--color-white);
	border-radius: 4px;
	border: 1px solid #847F7B;
	width: 220px;
	height: 90px;
	text-decoration: none;
	transition: opacity 0.4s ease;
}

.floatCtaInner {
	display: flex;
	flex-direction: column;
	gap: 2px;
	max-width: 184px;
	transform: translateY(3px);
}

.floatCtaLogo {
	height: auto;
	width: 100%;
	display: block;
	transform: translateX(-2px);
}

.floatCtaText {
	font-family: var(--font-main);
	font-size: 1.4rem;
	font-weight: 500;
	line-height: 1.8;
	letter-spacing: 0;
	color: var(--color-black);
}

.floatCtaClose {
	position: absolute;
	top: -10px;
	right: -10px;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: var(--color-gray);
	color: var(--color-white);
	border: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
}

@media (max-width: 767px) {
	.floatCta {
		bottom: 0;
		right: 0;
		width: 100%;
	}
	.floatCtaLink {
		width: 100%;
		height: 68px;
		border-radius: 4px 4px 0 0;
	}
	.floatCtaInner {
		flex-direction: row;
		gap: 12px;
		max-width: initial;
	}
	.floatCtaClose {
		right: 6px;
	}
	.floatCtaLogo {
		flex: 1;
		max-width: 143px;
	}
	.floatCtaText {
		flex: 1;
	}
}

/* ==============================================
   INTRO ANIMATION
   ============================================== */

/* 初期状態: isIntroHidden 付きの要素を非表示 */
.siteHeader.isIntroHidden {
	opacity: 0;
	transform: translateY(-100%);
	transition: none;
}

.heroImgWrap.isIntroHidden,
.heroTitleImgWrap.isIntroHidden,
.heroCatch.isIntroHidden,
.heroCarouselControls.isIntroHidden,
.fixedCircleCta.isIntroHidden {
	opacity: 0;
	transition: none;
}

/* heroImgWrap ブラー */
.heroImgWrap.hasIntroBlur {
	filter: blur(16px);
	transition: filter 1.3s ease;
}

/* ロゴwrapper: grid で2枚を同セルに重ねる */
.heroTitleLogoWrap {
	display: grid;
	width: 100%;
}

.heroTitleLogoColor,
.heroTitleLogoWrap > picture {
	grid-area: 1 / 1;
	width: 100%;
}

.heroTitleLogoColor {
	display: block;
	height: auto;
	transition: opacity 0.4s ease;
}

.heroTitleLogoColor.hide {
	opacity: 0;
}

.heroTitleLogoWhite {
	display: block;
	width: 100%;
	height: auto;
	opacity: 0;
	transition: opacity 0.5s ease;
}

.heroTitleLogoWhite.visible {
	opacity: 1;
}

/* タイピングカーソル */
.introCaret {
	display: inline-block;
	width: 2px;
	height: 0.9em;
	background: currentColor;
	vertical-align: text-bottom;
	margin-left: 2px;
	animation: introBlink 0.85s steps(2, start) infinite;
}

@keyframes introBlink {
	to { visibility: hidden; }
}

/* ==============================================
   セクション見出し フェードイン
   ============================================== */
.serviceHeadArea,
.characterHeading,
.planHeading,
.newsHeading,
.conceptTextInner {
	opacity: 0;
	transform: translateY(16px);
	transition: opacity 1s ease, transform 1s ease;
}
.serviceHeadArea.isVisible,
.characterHeading.isVisible,
.planHeading.isVisible,
.newsHeading.isVisible,
.conceptTextInner.isVisible {
	opacity: 1;
	transform: translateY(0);
}

/* ==============================================
   RESPONSIVE ADJUSTMENTS
   ============================================== */

/* PC (1280px～) */
@media (min-width: 1280px) {
	.secTitle {
		font-size: 3.6rem;
	}
}
