/* =========================
   Suifeel FAQ (PC)
   scope: .FaqMain / .FaqContainer
   ========================= */

:root{
	--faq-bg:#ffffff;
	--faq-text:#0b2235;
	--faq-sub:#4b6274;
	--faq-line:rgba(11,34,53,.12);
	--faq-accent:#2f98c8;
	--faq-accent2:#7fcbea;
	--faq-card:#ffffff;
	--faq-shadow:0 10px 30px rgba(11,34,53,.08);
	--faq-radius:14px;
}

.FaqTitleBack{
	height: 550px;
	background: url(../commonImages/h1_img_case.png) center/cover no-repeat;
	width: 100%;
	padding: 200px 0 0;
	box-sizing: border-box;
	position: relative;
	text-align: center;
	margin: 0 auto 90px;
}

.FaqTitleOverlay{
	position:absolute; 
	inset:0;
}

.FaqPageTitle{
	width: min(720px, 92vw);
	margin: 0 auto;
	background: rgba(47,152,200,.35);
	padding: 18px 18px 16px;
	border-radius: 14px;
	position: relative;
	backdrop-filter: blur(2px);
	box-sizing: border-box;
}

.FaqPageTitle_be{
	font-size: 34px;
	font-weight: 800;
	color: #fff;
	letter-spacing: .10em;
	font-family: 'Lato', sans-serif;
}

.FaqPageTitle_mj{
	font-size: 16px;
	color:#fff;
	margin: 8px auto 6px;
	font-weight: 700;
}

.FaqPageTitle_sub{
	color:#fff;
	margin:0 auto;
	opacity:.95;
}

.FaqMain{
	width: 100%;
	margin: 0 auto 120px;
}

.FaqContainer{
	width: 1080px;
	margin: 0 auto;
	display:grid;
	grid-template-columns: 280px 1fr;
	gap: 28px;
	align-items:start;
}

/* Search */
.FaqSearchArea{
	grid-column: 1 / -1;
	background:#2F4565;
	border: 1px solid var(--faq-line);
	border-radius: var(--faq-radius);
	box-shadow: var(--faq-shadow);
	padding: 18px 18px 14px;
}

.FaqSearchInner{
  display:flex;
  gap:12px;
  align-items:center;
}

.FaqSearchLabel{
	font-weight: 800;
	color: #fff;
	white-space: nowrap;
}

.FaqSearchInput{
  flex:1;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--faq-line);
  padding: 0 14px;
  outline:none;
  box-sizing: border-box;
}

.FaqSearchInput:focus{
  border-color: rgba(47,152,200,.55);
  box-shadow: 0 0 0 4px rgba(47,152,200,.12);
}

.FaqSearchClear{
	height: 44px;
	padding: 0 14px;
	border-radius: 12px;
	border: 1px solid var(--faq-line);
	background:#fff;
	cursor:pointer;
	color: #2F4565;
}

.FaqSearchClear:hover{ border-color: rgba(47,152,200,.45); }
.FaqSearchHint{
	margin: 10px 2px 0;
	color: #7fcbea;
	font-size: 13px;
}

/* Left menu */
.FaqMenuArea{
	position: sticky;
	top: 120px;
	background: var(--faq-card);
	padding: 15px 0;
}

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

.FaqMenuArea_li{
	margin: 2% auto;
	width: 100%;

}
.FaqMenuArea_li a{
	display: block;
	padding: 10px 10px;
	color: #2F4565;
	text-decoration: none;
	line-height: 1.5;
	border-left: 3px solid #7fcbea;
		border-left-color: rgb(127, 203, 234);
	font-size: 13px;
}
.FaqMenuArea_li a:hover{
  background: rgba(127,203,234,.20);
  border-color: rgba(47,152,200,.25);
}

/* Right content */
.FaqDetailArea{
  width: 100%;
}

.anchor{ display:block; position:relative; top:-110px; visibility:hidden; }

.FaqSectionHead{
  margin: 18px 0 14px;
}

.FaqSectionHead h2{
	font-size: 24px;
	font-weight: bold;
	color: #2F4565;
	border-left: solid 3px #7fcbea;
	padding: 0.25em 0.5em;
	line-height: 1.5;
}

.FaqSectionSub{
	color: var(--faq-sub);
	margin: 12px auto;
}

.FaqCard{
	background: var(--faq-card);
	border: 1px solid #7fcbea;
	border-radius: var(--faq-radius);
	box-shadow: var(--faq-shadow);
	padding: 6px 0;
	margin: 0 0 26px;
}

/* Accordion */
.FaqAcc{ border-top: 1px solid var(--faq-line); }
.FaqAcc:first-child{ border-top: none; }

.FaqQ{
	width:100%;
	display:flex;
	align-items:center;
	justify-content:space-between;
	gap: 12px;
	text-align:left;
	padding: 16px 18px;
	background: transparent;
	border:none;
	cursor:pointer;
	font-weight:600;
	color: #2F4565;
	line-height:1.45;
	font-size: 16px;
}

.FaqQ:hover{ background: rgba(127,203,234,.12); }

.FaqIcon{
	width: 18px;
	height: 18px;
	position: relative;
	flex: 0 0 18px;
}

.FaqIcon::before,
.FaqIcon::after{
	content:"";
	position:absolute;
	left: 0; right: 0; top: 50%;
	height: 2px;
	background: #7fcbea;
	transform: translateY(-50%);
	border-radius: 2px;
}

.FaqIcon::after{
	transform: translateY(-50%) rotate(90deg);
	transition: transform .18s ease;
}

.FaqQ[aria-expanded="true"] .FaqIcon::after{
	transform: translateY(-50%) rotate(0deg);
}

.FaqA{
	padding: 2.5%;
	box-sizing: border-box;
	background: #fafafa;
}

.FaqA p{
	margin: 0;
	color: #2F4565;
	font-size: 14px;
	line-height: 1.7;
}

.FaqA strong{
	color: #FF4F50;
	font-size: 15px;
}

.FaqA a{
	color: var(--faq-accent);
	text-decoration: underline;
}

/* CTA */
.FaqCtaArea{
  margin-top: 10px;
}
.FaqCtaCard{
  background: linear-gradient(135deg, rgba(47,152,200,.18), rgba(127,203,234,.18));
  border: 1px solid rgba(47,152,200,.22);
  border-radius: var(--faq-radius);
  box-shadow: var(--faq-shadow);
  padding: 22px 20px;
}
.FaqCtaCard h3{
  margin:0 0 8px;
  font-size: 18px;
  font-weight: 900;
  color: var(--faq-text);
}
.FaqCtaCard p{
  margin:0 0 14px;
  color: var(--faq-sub);
  line-height:1.8;
}
.FaqCtaBtns{
  display:flex;
  gap: 10px;
  flex-wrap:wrap;
}
.FaqCtaBtn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height: 44px;
  padding: 0 16px;
  border-radius: 12px;
  font-weight: 900;
  text-decoration:none;
  border: 1px solid transparent;
}
.FaqCtaBtn.primary{
  background: var(--faq-accent);
  color:#fff;
}
.FaqCtaBtn.primary:hover{ filter: brightness(0.97); }
.FaqCtaBtn.ghost{
  background:#fff;
  color: var(--faq-accent);
  border-color: rgba(47,152,200,.35);
}
.FaqCtaBtn.ghost:hover{ background: rgba(127,203,234,.14); }
