:root {
	/* Colors (extracted from PSD) */
	--c-primary: #004098;
	/* deep brand blue      */
	--c-primary-dark: #003E9C;
	--c-primary-deep: #1550A2;
	--c-accent: #2F7FEC;
	/* bright blue          */
	--c-l-blue: #9abeef;
	/* bright blue          */
	--c-white: #ffffff;
	--c-off-white: #FBFDFE;
	--c-light: #EDF1F8;
	--c-ink: #000000;
	--c-gray: #444444;
	--c-gray-2: #666666;
	--c-section-tint: #ebf2fc;
	/* pale blue section bg */
	--c-green: #29a03a;
	/* check marks          */

	/* Typography */
	--ff-base: "Noto Sans JP", "Hiragino Kaku Gothic ProN",
		"Yu Gothic", Meiryo, sans-serif;

	--fs-hero: 45px;
	--fs-h2: 28px;
	--fs-h2-sm: 26px;
	--fs-lead: 23px;
	--fs-xl: 20px;
	--fs-2xl: 22px;
	/* tel-number portion of "tel." links (PSD) */
	--fs-btn-lg: 24px;
	/* hero CTA button label (PSD) */
	--fs-lg: 18px;
	--fs-md: 16px;
	--fs-base: 15px;
	--fs-sm: 14px;
	--fs-xs: 13px;
	--fs-xxs: 12px;

	--fw-regular: 400;
	--fw-medium: 500;
	--fw-bold: 700;
	--fw-black: 900;

	/* Spacing scale */
	--sp-1: 4px;
	--sp-2: 8px;
	--sp-3: 12px;
	--sp-4: 16px;
	--sp-5: 20px;
	--sp-6: 26px;
	--sp-8: 32px;
	--sp-10: 40px;
	--sp-12: 48px;
	--sp-16: 64px;
	--sp-20: 80px;
	--sp-24: 96px;

	/* Layout */
	--container: 1230px;
	--container-narrow: 860px;
	--radius-sm: 6px;
	--radius: 10px;
	--radius-lg: 16px;
	--radius-pill: 999px;

	--shadow-card: 0 4px 20px rgba(0, 64, 152, .08);
	--shadow-soft: 0 2px 12px rgba(0, 0, 0, .06);

	--header-h: 72px;
	--header-h-total: 128px;
	/* header's own top+bottom padding included */

	/* Side nav (追随メニュー) reserved space, desktop only */
	--side-nav-w: 283px;
	--side-nav-left: 40px;
	--side-nav-gap: 40px;
	--side-nav-overlap: 40px;
	/* how far it pokes up into the hero before sticking */
	--main-inset: calc(var(--side-nav-left) + var(--side-nav-w) + var(--side-nav-gap));
	/* Literal (non-calc) px so js/main.js can read it via getComputedStyle */
	--side-nav-stuck-top: 152px;
	/* = --header-h-total (128px) + --sp-6 (24px) */
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: var(--ff-base);
	font-size: var(--fs-md);
	font-weight: var(--fw-regular);
	line-height: 1.8;
	color: var(--c-ink);
	background: var(--c-white);
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

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

a {
	color: inherit;
	text-decoration: none;
}

button {
	font-family: inherit;
	cursor: pointer;
}

ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

h1,
h2,
h3,
h4,
p {
	margin: 0;
}

:focus-visible {
	outline: 3px solid var(--c-accent);
	outline-offset: 2px;
	border-radius: 4px;
}

/* Visually hidden but accessible (used for the icon sprite sheet) */
.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* ---------- Layout helpers ---------- */
.container {
	width: 100%;
	max-width: var(--container);
	margin-inline: auto;
	padding-left: 20px;
	padding-right: 20px;
}

.section {
	padding-block: var(--sp-20);
}

.section--tint {
	background: var(--c-section-tint);
}

/* ---------- Section heading ---------- */
.heading {
	text-align: center;
	margin-bottom: var(--sp-12);
}

.heading__title {
	font-size: var(--fs-h2);
	font-weight: 900;
	color: var(--c-primary);
	letter-spacing: .1em;
	line-height: 1.5;
}

.heading__lead {
	margin-top: var(--sp-6);
	font-size: var(--fs-h2);
	font-weight: var(--fw-black);
	color: var(--c-primary);
	letter-spacing: .04em;
	line-height: 1.5;
}

/* =========================================================
   Buttons (reusable component)
   ========================================================= */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: var(--sp-2);
	font-weight: var(--fw-bold);
	letter-spacing: .06em;
	border: none;
	border-radius: var(--radius-pill);
	transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease;
}

.btn:hover {
	transform: translateY(-2px);
}

.btn:active {
	transform: translateY(0);
}

.btn--primary {
	background: var(--c-primary);
	color: var(--c-white);
	padding: var(--sp-4) var(--sp-10);
	font-size: var(--fs-lg);
	box-shadow: var(--shadow-card);
}

.btn--primary:hover {
	background: #00347e;
	box-shadow: 0 8px 24px rgba(0, 64, 152, .25);
}

.btn--accent {
	background: var(--c-accent);
	color: var(--c-white);
	padding: var(--sp-4) var(--sp-10);
	font-size: var(--fs-lg);
}

.btn--accent:hover {
	background: #1f6fd9;
}

.btn--ghost {
	background: var(--c-white);
	color: var(--c-primary);
	border: 2px solid var(--c-primary);
	padding: var(--sp-2) var(--sp-5);
	font-size: var(--fs-sm);
}

.btn--ghost:hover {
	background: var(--c-primary);
	color: var(--c-white);
}

.btn--outline-accent {
	background: var(--c-white);
	color: var(--c-primary);
	border: 1.5px solid var(--c-primary);
	padding: var(--sp-2) var(--sp-4);
	font-size: var(--fs-sm);
	border-radius: var(--radius-pill);
}

.btn--outline-accent:hover {
	background: var(--c-primary);
	color: var(--c-white);
}

.btn__icon {
	width: 20px;
	height: 20px;
	flex: none;
}
.fs-bold{
	font-weight: 700;
}
.cl-primary{
	color: var(--c-primary);
}
.cl-initial{
	color: initial;
}
/* =========================================================
   Tel link (reusable component)
   ========================================================= */
.tel-link {
	display: inline-flex;
	align-items: baseline;
	gap: 2px;
	font-weight: var(--fw-bold);
	letter-spacing: .06em;
	white-space: nowrap;
}

.tel-link__label {
	font-size: var(--fs-xl);
	font-weight: 900;
}

.tel-link__number {
	font-size: var(--fs-h2);
	font-weight: 900;
}

/* =========================================================
   Header
   ========================================================= */
.header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: #fff;
	border-bottom: 1px solid var(--c-light);
	padding: 28px 0;
}

.header__inner {
	display: flex;
	align-items: center;
	height: var(--header-h);
	margin-inline: auto;
	padding: 0 44px;
	position: relative;
}

.header__logo {
	display: flex;
	align-items: center;
	flex: none;
}

.header__logo-img {
	display: block;
	width: 149px;
	height: 50px;
}

/* Nav = [ menu links ]*/
.header__nav {
	margin-left: auto;
	display: flex;
	align-items: center;
	gap: 20px;
	transition: 0.5s;
}

.header__menu {
	display: flex;
	align-items: center;
	gap: var(--sp-6);
	flex-wrap: nowrap;
}

.header__link {
	display: inline-flex;
	align-items: center;
	font-size: var(--fs-md);
	font-weight: 500;
	color: var(--c-ink);
	letter-spacing: .06em;
	white-space: nowrap;
}

.header__link:hover {
	color: var(--c-accent);
}

/* Dropdown caret — reusable across any nav link that opens a submenu */
.header__link--caret {
	gap: 5px;
}

.header__link-caret {
	width: 9px;
	height: 6px;
	color: currentColor;
	flex: none;
}

/* Contact cluster: tel + CTA sit close together, apart from the nav links */
.header__contact {
	display: flex;
	align-items: center;
	gap: var(--sp-6);
	flex: none;
	position: relative;
	bottom: 3px;
}

.header__tel {
	color: var(--c-primary);
	flex: none;
}

.header__cta {
	background: var(--c-primary);
	color: var(--c-white);
	padding: 10px var(--sp-5);
	border-radius: var(--radius-pill);
	font-size: var(--fs-sm);
	line-height: var(--fs-sm);
	font-weight: var(--fw-medium);
	letter-spacing: .06em;
	white-space: nowrap;
	flex: none;
}

.header__cta:hover {
	background: #00347e;
}

.lb-pc{
    display: block;
}
.lb-sp {
    display: none;
}
@media(max-width: 767px) {
	.lb-sp{
        display: block;
    }
    .lb-pc{
        display: none;
    }
	.header {
		padding: 10px 15px;
		height: 60px;
	}

	.header__inner {
		height: 100%;
		padding: 0 15px !important;
		gap: 0;
	}

	.header__logo-img {
		width: 106px;
		height: 35px;
	}
}
/*
==============================================================
======================= hamburger menu =======================
==============================================================
*/
.hamburger-menu {
    position: absolute;
    right: 15px;
    top: 50%;
    width: 35px;
    height: 18px;
    margin-top: -9px;
    cursor: pointer;
    z-index: 1000001;
    display: none;
}
.hamburger-menu .bar,
.hamburger-menu .bar:after,
.hamburger-menu .bar:before {
    width: 35px;
    height: 2px;
    top: 50%;
    margin-top: -1px;
}
.hamburger-menu span {
    transition: .3s;
}
.hamburger-menu .bar {
    position: relative;
    transform: translateY(-5px);
    background:#003f97;
    transition: all 0ms 300ms;
    display: block;
}
.hamburger-menu .bar.active {
    background: none; 
}
.hamburger-menu .bar:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0px;
    background: #003f97;
    transition: bottom 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
}
.hamburger-menu .bar:after {
    content: "";
    position: absolute;
    left: 0;
    top: -8px;
    background:#003f97;
    transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
}
.hamburger-menu.active {
    color: #003f97;
}
.hamburger-menu.active .bar{
    background: none !important;
}
.hamburger-menu.active .bar::before,
.hamburger-menu.active .bar::after{
    top: -4px;
    bottom: 0;
    background: #003f97;
}
.hamburger-menu.active .bar:before {
    transform: rotate(-45deg);
    transition: bottom 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);;
}
.hamburger-menu.active .bar:after {
    transform: rotate(45deg);
    transition: top 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);;
}
.hd-pc{
	display: none;
}
@media(max-width: 1060px){
    .hamburger-menu {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
	.hd-pc{
		display: inline-block;
	}
}
/* =========================================================
   Hero
   ========================================================= */
.movie {
	position: relative;
	overflow: hidden;
	width: 100%;
}
.movie .container{
	padding-left: 40px;
}
.hero__bg {
	display: flex;
	position: relative;
	inset: 0;
	width: 100%;
	z-index: 2;
}
.movie picture,
.movie picture img{
	position: relative;
	z-index: 1;
	width: 100%;
	display: flex;
}
.movie__content {
	position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-wrap: wrap;
    color: var(--c-white);
    padding-block: 0 var(--sp-20);
    justify-content: flex-start;
	align-items: flex-end;
    z-index: 3;
}

.movie__eyebrow {
	font-size: var(--fs-h2);
	font-weight: var(--fw-bold);
	letter-spacing: .08em;
	margin-bottom: var(--sp-3);
}

.movie__title {
	font-size: var(--fs-hero);
	font-weight: var(--fw-bold);
	line-height: 1.44;
	letter-spacing: .06em;
	margin-bottom: var(--sp-6);
}

.movie__actions {
	display: inline-block;
}
.movie__actions .movie__actions_inner{
	text-align: center;
}
.movie__cta {
	background: var(--c-white);
	color: var(--c-accent);
	padding: var(--sp-6) var(--sp-20);
	border-radius: var(--radius-lg);
	font-size: var(--fs-btn-lg);
	line-height: var(--fs-btn-lg);
	font-weight: var(--fw-bold);
	letter-spacing: .06em;
	display: inline-flex;
	align-items: center;
	transition: transform .15s ease, box-shadow .15s ease;
	box-shadow: 0 6px 20px rgba(0, 0, 0, .2);
	display: block;
	position: relative;
}

.movie__cta:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 28px rgba(0, 0, 0, .28);
}
.movie__cta span{
	position: relative;
	padding-left: 34px;
}
.movie__cta span::before{
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	margin-top: -4px;
	width: 0px;
    height: 0px;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 14px solid var(--c-accent);
}
.movie__tel {
	color: var(--c-white);
}
.fm1  .movie__eyebrow{
	color: var(--c-primary-dark);
}
.fm1 .movie__title{
	color: var(--c-primary-dark);
}
.fm1 .movie__tel{
	color: var(--c-primary-dark);
}
.movie ul li{
	display: none;
	position: relative;
}
.movie ul li:first-child{
	display: block;
}
@media(min-width: 768px) {
	.fm1 .container{
		text-align: center;
	}
	.fm1 .movie__content{
		top: 0;
		justify-content: center;
		align-items: center;
		padding-bottom: 0;
	}
	.fm1 .movie__cta{
		background: var(--c-primary-dark);
		color: #fff;
	}
	.fm1 .movie__cta span::before{
		border-left-color: #fff;
	}
}
@media(max-width: 767px) {
	.movie .container {
		padding-left: 20px;
		padding-right: 20px;
	}

	.movie__eyebrow {
		font-size: 17px;
	}

	.movie__title {
		font-size: 24px;
		line-height: 1.875;
	}

	.movie__cta {
		font-size: 20px;
		padding: 18px 44px;
	}

	.tel-link__number {
		font-size: 22px;
	}
}

/* =========================================================
   Side nav 
   ========================================================= */
.side-nav-anchor {
	display: none;
	height: 0;
	position: relative;
}

.side-nav-sentinel {
	height: 0;
}

.side-nav {
	position: relative;
	top: calc(-1 * var(--side-nav-overlap));
	/* overlaps the bottom of the hero photo */
	margin-left: var(--side-nav-left);
	z-index: 10;
	width: var(--side-nav-w);
	background: var(--c-primary-dark);
	border-radius: var(--radius);
	padding: var(--sp-8) var(--sp-6) var(--sp-12);
	box-shadow: var(--shadow-card);
}

.side-nav--fixed {
	position: fixed;
	top: var(--side-nav-stuck-top);
	left: var(--side-nav-left);
	margin-left: 0;
}

.side-nav--stopped {
	position: absolute;
	left: var(--side-nav-left);
	margin-left: 0;
}

.side-nav__logo {
	display: block;
	margin-bottom: 15px;
}

.side-nav__logo img {
	display: block;
	width: 110px;
	height: auto;
	filter: brightness(0) invert(1);
}

.side-nav__list {
	display: flex;
	flex-direction: column;
}

.side-nav__link {
	display: flex;
	align-items: center;
	gap: var(--sp-2);
	padding-block: var(--sp-4);
	font-size: var(--fs-sm);
	font-weight: var(--fw-bold);
	color: var(--c-light);
	line-height: 1.3;
}

.side-nav__link:hover {
	color: var(--c-white);
}

.side-nav__bullet {
	display: inline-block;
	position: relative;
	padding-left: 20px;
}
.side-nav__bullet::before,
.side-nav__bullet::after{
	content: '';
    position: absolute;
	top: 50%;
	left: 0;
}
.side-nav__bullet::before {
	z-index: 2;
	left: 3px;
    margin-top: -3px;
    width: 0px;
    height: 0px;
    border-top: 3px solid transparent;
    border-bottom: 3px solid transparent;
    border-left: 8px solid #004098;
}
.side-nav__bullet::after{
	width: 12px;
	height: 12px;
	background: #fff;
    margin-top: -6px;
	z-index: 1;
	border-radius: 50vh;
}
/* =========================================================
   Concerns (お悩み)
   ========================================================= */
.concerns {
	background: var(--c-white);
}

.concerns .heading {
	margin-bottom: 32px;
}

.concerns__bubbles {
	display: flex;
	padding-bottom: 26px;
	width: 100%;
}

.concerns__bubbles picture,
.concerns__bubbles img {
	width: 100%;
}

@media(max-width: 767px) {
	.concerns .container {
		padding-left: 8px;
		padding-right: 8px;
	}
}

/* =========================================================
   CTA band (reused)
   ========================================================= */
.cta-band {
	border: 2px solid var(--c-l-blue);
	border-radius: 8px;
	padding: 50px 60px 52px 60px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	color: var(--c-accent);
	width: 100%;
	margin-inline: auto;
	position: relative;
	background: #fff;
}
.cta-band.no__border{
	border: none;
}
.cta-band .cta__icon {
	position: absolute;
	top: -20px;
	left: 50%;
	margin-left: -42px;
	width: 84px;
	height: 38px;
}

.cta-band .cta__icon img {
	width: 100%;
	height: 100%;
}

.cta-band__title {
	font-size: var(--fs-2xl);
	font-weight: 900;
	line-height: 1.4;
	letter-spacing: .04em;
	margin-bottom: 8px;
}

.cta-band__points {
	display: flex;
	flex-direction: column;
	gap: var(--sp-2);
}

.cta-band__point {
	display: flex;
	align-items: center;
	gap: var(--sp-2);
	font-size: var(--fs-md);
	font-weight: var(--fw-bold);
	letter-spacing: .01em;
	line-height: 1.2;
}

.cta-band__point-icon {
	font-size: 16px;
	color: var(--c-accent);
	flex: none;
}

.cta-band__actions {
	display: flex;
	flex-direction: column;
	gap: 2px;
	align-items: stretch;
	padding-top: 20px;
}

.cta-band__web {
	display: inline-block;
	transition: transform .15s ease;
}

.cta-band__web-icon {
	font-size: 17px;
	flex: none;
}

.cta-band__web:hover {
	transform: translateY(-2px);
}

.cta-band__tel {
	justify-content: center;
	color: var(--c-accent);
	letter-spacing: .03em;
	font-weight: 900;
}

.cta-band__tel .tel-link__label {
	font-size: 19px;
}

.cta-band__tel .tel-link__number {
	font-size: var(--fs-h2-sm);
}
.cta__media{
	border-radius: 6px;
	overflow: hidden;
	padding: 0 10px;
}
/* =========================================================
   Cases (ご相談例)
   ========================================================= */
.cases {
	overflow: hidden;
}

.cases .container {
	max-width: 1266px;
}

.cases .heading {
	margin-bottom: 40px;
}
.cases .heading__lead .sm{
	display: block;
	font-size: 22px;;
}
.cases__viewport {
	margin-right: calc(50% - 50vw);
	padding-right: 0;
	overflow: hidden;
}

.cases__grid {
	display: grid;
	grid-template-columns: repeat(3, 378px);
	justify-content: flex-start;
	gap: 14px;
}

.cases__grid.slick-initialized {
	display: block;
}

.cases__grid.slick-initialized .slick-list {
	overflow: visible;
}

.cases__grid.slick-initialized .slick-track {
	display: flex;
}

.cases__grid.slick-initialized .slick-slide {
	height: auto;
	margin-right: 15px;
}
.cases .cta-band{
	margin-top: 45px;
}
.case-card {
	width: 100%;
	background: var(--c-white);
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow-card);
	display: flex;
	flex-direction: column;
}

.case-card__media {
	aspect-ratio: 384 / 257;
	overflow: hidden;
}

.case-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.case-card__body {
	padding: 18px 10px 24px 10px;
	display: flex;
	flex-direction: column;
	gap: 8px;
	flex: 1;
}

.case-card__client {
	font-size: 18px;
	font-weight: var(--fw-bold);
	color: var(--c-ink);
	line-height: 1.4;
}

.case-card__row {
	display: flex;
	align-items: flex-start;
	gap: 8px;
}

.case-card__tag {
	flex: none;
	font-size: 14px;
	font-weight: var(--fw-bold);
	color: var(--c-white);
	padding: 3px 5px 4px 5px;
	border-radius: 4px;
	line-height: 1;
	width: 64px;
	text-align: center;
}

.case-card__tag--before {
	background: var(--c-primary);
}

.case-card__tag--after {
	background: var(--c-primary);
}

.case-card__row-text {
	font-size: 15px;
	font-weight: var(--fw-bold);
	line-height: 1.45;
}

.case-card__panel {
	display: none;
}

.case-card__panel[hidden] {
	display: none !important;
}

.case-card.is-open .case-card__panel {
	display: block;
}

.case-card__desc {
	font-size: 13px;
	font-weight: var(--fw-medium);
	color: var(--c-ink);
	line-height: 1.75;
	margin-top: 6px;
	color: var(--c-primary);
}
.case-card__desc h4{
	font-weight: 900;
	margin-top: 10px;
}
.case-card__desc h4:first-child{
	margin-top: 0;
}
.btn__link {
	margin-top: auto;
	align-self: flex-start;
	display: inline-flex;
	align-items: center;
	gap: var(--sp-2);
	border: 2px solid #004098;
	border-radius: 50vh;
	padding: 1px 12px;
	font-size: 14px;
	font-weight: var(--fw-bold);
	color: var(--c-primary);
	transition: background-color .15s, color .15s;
	background: transparent;
	margin-top: 10px;
}
.btn__link span{
	position: relative;
	padding-left: 14px;
}
.btn__link span::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	margin-top: -3px;
	width: 0px;
	height: 0px;
	border-top: 3px solid transparent;
	border-bottom: 3px solid transparent;
	border-left: 8px solid #004098;
	transition: transform .2s ease, border-color .2s ease;
}

.case-card.is-open .btn__link span::before {
	transform: rotate(90deg);
}

.btn__link:hover {
	background: var(--c-primary);
	color: var(--c-white);
}

.btn__link:hover span::before {
	border-left-color: var(--c-white);
}
.btn__link:hover span::before{
	border-left-color: #fff;
}
.cases__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	margin-top: 28px;
	padding-right: 56px;
	width: 88%;
}

.cases__controls {
	display: inline-flex;
	align-items: center;
	gap: 24px;
}

.cases__control {
	width: 10px;
	height: 10px;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--c-accent);
	font-size: 0;
	cursor: pointer;
}

.cases__control::before {
	content: "";
	display: block;
	width: 8px;
	height: 8px;
	margin: 0 auto;
	border-top: 2px solid currentColor;
	border-right: 2px solid currentColor;
}

.cases__control--prev::before {
	transform: rotate(-135deg);
}

.cases__control--next::before {
	transform: rotate(45deg);
}

.cases__control.slick-disabled {
	opacity: .35;
	pointer-events: none;
}

.cases__counter {
	min-width: 60px;
	font-size: 12px;
	font-weight: var(--fw-medium);
	color: var(--c-accent);
	letter-spacing: .1em;
	text-align: center;
}

.cases__more {
	text-align: right;
	margin-top: 0;
}

.view_more__link {
	font-size: var(--fs-xs);
	font-weight: var(--fw-bold);
	color: var(--c-primary);
	letter-spacing: .08em;
}

.view_more__link span{
	position: relative;
	padding-left: 14px;
}
.view_more__link span::before {
	content: '';
    position: absolute;
	top: 50%;
	left: 0;
    margin-top: -2px;
    width: 0px;
    height: 0px;
    border-top: 3px solid transparent;
    border-bottom: 3px solid transparent;
    border-left: 8px solid #004098;
}
.cases-cta {
	max-width: 864px;
	margin: 15px auto 0;
}

.cases-cta__arrow {
	display: flex;
	justify-content: center;
	margin-bottom: -4px;
}

.cases-cta__arrow img {
	width: 82px;
	height: auto;
}

.cases-cta__panel {
	background: var(--c-white);
	border-radius: 4px;
	padding: 56px 60px 44px;
	display: grid;
	grid-template-columns: 1fr 244px 256px;
	align-items: center;
	column-gap: 22px;
}

.cases-cta__title {
	font-size: 18px;
	line-height: 1.45;
	font-weight: var(--fw-bold);
	color: var(--c-accent);
	margin-bottom: 12px;
}

.cases-cta__points {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.cases-cta__point {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	font-weight: var(--fw-bold);
	color: var(--c-accent);
}

.cases-cta__point-icon {
	color: var(--c-accent);
	font-size: 18px;
	flex: none;
}

.cases-cta__media img {
	width: 244px;
	height: 152px;
	object-fit: cover;
	border-radius: 4px;
}

.cases-cta__actions {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 12px;
}

.cases-cta__web {
	background: var(--c-accent);
	color: var(--c-white);
	min-height: 56px;
	border-radius: var(--radius-pill);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-size: 16px;
	font-weight: var(--fw-bold);
	letter-spacing: .02em;
}

.cases-cta__web-icon {
	font-size: 18px;
}

.cases-cta__tel {
	justify-content: center;
	color: var(--c-accent);
}

.cases-cta__tel .tel-link__label {
	font-size: 19px;
}

.cases-cta__tel .tel-link__number {
	font-size: 21px;
}

/* =========================================================
   Profiles (社労士プロフィール)
   ========================================================= */
.profiles {}

.profiles .heading {
	margin-bottom: 43px;
}

.profiles__grid {
	display: grid;
	grid-template-columns: repeat(2, 248px);
	justify-content: center;
	gap: 40px 26px;
	max-width: 520px;
	margin-inline: auto;
	align-items: start;
}

.profile {
	display: block;
	width: 248px;
}

.profile__photo {
	width: 245px;
	height: 255px;
	border-radius: 0;
	object-fit: cover;
	object-position: center top;
	border: 0;
	margin-bottom: 17px;
}

.profile__name {
	font-size: 16px;
	font-weight: var(--fw-bold);
	color: var(--c-ink);
	letter-spacing: 0;
	line-height: 1.4;
	margin-bottom: 5px;
}

.profile__meta {
	font-size: 14px;
	color: var(--c-ink);
	line-height: 1.9;
}

.profile__bio {
	font-size: 12px;
	line-height: 1.9;
	margin-top: 8px;
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
	overflow: hidden;
	font-weight: 400;
}

.profile.is-open .profile__bio {
	-webkit-line-clamp: unset;
	overflow: visible;
}

.profile__more {
	display: inline-block;
	width: 100%;
	margin-top: 5px;
	text-align: right;
	padding: 0;
	border: 0;
	background: transparent;
}
.profile__more span{
	display: inline-block;
	font-size: 14px;
	font-weight: var(--fw-bold);
	color: var(--c-primary);
	position: relative;
	padding-left: 14px;
}
.profile__more span::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	margin-top: -2px;
	width: 0px;
	height: 0px;
	border-top: 3px solid transparent;
	border-bottom: 3px solid transparent;
	border-left: 8px solid #004098;
	transition: transform .2s ease;
}
.profile.is-open .profile__more span::before {
	transform: rotate(90deg);
}

.profile__more:hover {
	text-decoration: underline;
}

.profiles__grid.slick-initialized {
	display: block;
	max-width: 100%;
}

.profiles__grid.slick-initialized .profile {
	display: grid;
}

.profiles__grid.slick-initialized .slick-slide {
	height: auto;
}

.profiles__grid.slick-initialized .slick-slide>div {
	height: 100%;
}

/* =========================================================
   Strengths (強み)
   ========================================================= */

.strengths .heading {
	margin-bottom: 35px;
}

.strengths__rows {
	display: inline-block;
	width: 100%;
}

.strengths__rows .strength-row {
	display: flex;
	background: #fff;
	margin-bottom: 10px;
	border-radius: 6px;
}
.strengths__rows .strength-row:last-child{
	margin-bottom: 0;
}

.strength-row .strength-row__text{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	flex: 1;
}
.strength-row .strength-row__text_box{
	display: flex;
	flex: 1;
}
.strength-row .strength-row__point{
	width: 70px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 10px;
}
.strength-row .strength-row__text_inner{
	background: #fbfcfe;
	padding: 0 25px;
	height: 100%;
	flex: 1;
	color: #004098;
	font-size: 16px;
	font-weight: 900;
	line-height: 1.65;
	letter-spacing: 0.1em;
	display: flex;
	align-items: center;
}
.strength-row .strength-row__image{
	width: 34%;
	border-radius: 0 8px 8px 0;
	overflow: hidden;
}
.strength-row .strength-row__image img{
	width: 100%;
}
.strength-row__point{
	color: #2f7fec;
	font-weight: 700;
	line-height: 1;
}
.strength-row__point .strength-row__point-label{
	display: block;
	font-size: 14px;
}
.strength-row__point .strength-row__point-num{
	font-size: 33px;
}
.strength-row__text .lg{
	color: #2f7fec;
	font-size: 20px;
	display: inline;
    background: linear-gradient(rgba(0, 0, 0, 0) 80%, #fdf388 0%);
}
.strengths__note{
	display: inline-block;
	width: 100%;
	color: var(--c-primary);
	margin-top: 35px;
}
.strengths__note-title{
	font-size: 17px;
	font-weight: 900;
	line-height: 1.52;
	letter-spacing: 0.04em;
}
.strengths__note-list{
	display: flex;
	flex-wrap: wrap;
	width: 76%;
	font-size: 16px;
	font-weight: 900;
	margin-top: 10px;
	margin-bottom: 12px;
}
.strengths__note-list li{
	list-style: none;
	line-height: 2;
	letter-spacing: 0.04em;
	padding-left: 24px;
	position: relative;
	width: 33.33%;
}
.strengths__note-list li::before,
.strengths__note-list li::after{
	content: '';
	position: absolute;
	left: 0;
	top: 18px;
	margin-top: -9px;
}
.strengths__note-list li::before{
	width: 15px;
	height: 14px;
	background: url('../image/ic_check_green.png') no-repeat;
	background-size: 100%;
	z-index: 2;
	left: 2px;
}
.strengths__note-list li::after{
	width: 18px;
	height: 18px;
	border-radius: 3px;
	background: #fff;
	z-index: 1;
}
.strengths__note-list li.ft::after{
	border: 2px solid var(--c-primary);
}
.strengths__note-body{
	font-size: 15px;
	font-weight: 700;
	line-height: 1.6;
	letter-spacing: 0.02em;
	margin-bottom: 8px;
}
.strengths__note-emphasis{
	font-size: 18px;
	font-weight: 900;
	line-height: 1.6;
	letter-spacing: 0.02em;
}
/* =========================================================
   Flow (ご相談の流れ)
   ========================================================= */
.flow {
	background: #f4f7fd;
}

.flow .heading {
	margin-bottom: 37px;
}

.flow__steps {
	display: inline-block;
	width: 100%;
}
.flow__steps li{
	display: flex;
	flex-wrap: wrap;
	position: relative;
	background: #fff;
	border-radius: 6px;
	margin-bottom: 20px;
	align-items: center;
	padding: 20px;
	color: var(--c-primary);
}
.flow__steps li:last-child{
	margin-bottom: 0;
}
.flow__steps li .step__badge{
	width: 70px;
}
.flow__steps li .step__badge_inner{
	width: 62px;
	height: 62px;
	border-radius: 50vh;
	background: #003f97;
	color: #fff;
	font-weight: 900;
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	text-align: center;
}
.step__badge-label{
	font-size: 15px;
	display: block;
}
.step__badge-num{
	font-size: 22px;
}
.flow__steps li .step__text{
	flex: 1;
	padding-left: 7px;
	display: flex;
	align-items: center;
}
.flow__steps li:not(:last-child)::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: -17px;
	transform: translateX(-50%);
	width: 0;
	height: 0;
	border-left: 15px solid transparent;
	border-right: 15px solid transparent;
	border-top: 14px solid #003f97;
}

.flow__steps li .step__text .step__title{
	font-size: 18px;
	color: #004098;	
	line-height: 1.2;
	font-weight: 900;
	width: 155px;
}
.flow__steps li .step__text .step__desc{
	flex: 1;
	line-height: 1.42;
	font-size: 14px;
	font-weight: 600;
}
.flow__steps li .step__text .step__desc a{
	text-decoration: underline;
}
/* =========================================================
   FAQ (よくある質問)
   ========================================================= */
.faq {}
.faq .heading{
	margin-bottom: 35px;
}
.faq__list {
	max-width: 860px;
	margin-inline: auto;
	display: flex;
	flex-direction: column;
	gap: var(--sp-2);
}

.faq__item {
	background: var(--c-primary);
	border-radius: var(--radius-sm);
	overflow: hidden;
}

.faq__item[open] {
	background: var(--c-primary-deep);
}

.faq__q {
	display: flex;
	align-items: center;
	gap: var(--sp-3);
	padding: 18px;
	color: var(--c-off-white);
	font-size: var(--fs-md);
	font-weight: var(--fw-bold);
	letter-spacing: .04em;
	cursor: pointer;
	list-style: none;
}

.faq__q::-webkit-details-marker {
	display: none;
}

.faq__q-mark {
	flex: none;
	font-size: 17px;
	font-weight: 900;
	color: var(--c-off-white);
	width: 28px;
	height: 28px;
	background: #fff;
	border-radius: 50vh;
	color: #004098;
	display: flex;
	align-items: center;
	justify-content: center;
}

.faq__q-text {
	flex: 1;
	line-height: 1.4;
}

.faq__q-toggle {
	flex: none;
	font-size: 24px;
	font-weight: var(--fw-medium);
	transition: transform .2s ease;
}

.faq__item[open] .faq__q-toggle {
	transform: rotate(45deg);
}

.faq__a {
	color: var(--c-primary);
	font-size: var(--fs-base);
	line-height: 1.73;
	font-weight: 500;
	display: flex;
	background: #fff;
	border: 2px solid #7f9dcc;
	border-top: none;
	padding: 18px;
	gap: var(--sp-3);
}

.faq__a-icon {
	font-size: 17px;
	font-weight: 900;
	width: 28px;
	height: 28px;
	background: #004098;
	border-radius: 50vh;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
}

.faq__a ul {
	margin: var(--sp-2) 0;
	padding-left: var(--sp-5);
	list-style: disc;
}
.flow .cta-band{
	margin-top: 65px;
	padding-left: 50px;
	padding-right: 50px;
}
.faq__a_text{
	flex: 1;
}
/* =========================================================
   Seminar (セミナー案内)
   ========================================================= */
.seminar {}

.seminar .heading {
	margin-bottom: 40px;
}

.seminar__features {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin: 0 auto 14px;
}

.seminar__feature {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 94px;
	background: var(--c-white);
	border-radius: 4px;
	padding: 16px 18px;
	font-size: 16px;
	font-weight: var(--fw-bold);
	color: var(--c-primary);
}
.seminar__feature span{
	position: relative;
	padding-left: 22px;
}
.seminar__feature span::before {
	content: '';
	position: absolute;
	width: 15px;
	height: 14px;
	left: 0;
	top: 50%;
	margin-top: -7px;
	background: url('../image/ic_check_green.png');
	background-size: 100%;
}

.seminar__themes {
	margin: 0 auto 45px;
	font-size: 16px;
	color: var(--c-primary);
	line-height: 1.9;
	text-align: center;
}

.seminar__themes-label {
	font-size: 15px;
	font-weight: var(--fw-medium);
	line-height: 1.46;
}

.seminar__themes-list {
	font-weight: var(--fw-bold);
	letter-spacing: .02em;
	line-height: 1.375;
	font-size: 16px;
}

.seminar__pickup-title {
	text-align: left;
	font-size: 15px;
	font-weight: var(--fw-bold);
	color: var(--c-primary);
	margin: 0 auto 10px;
}

.seminar__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px;
	margin-inline: auto;
}

.seminar-card {
	background: var(--c-white);
	border-radius: 4px;
	overflow: hidden;
	box-shadow: 0 3px 12px rgba(35, 76, 148, 0.08);
	display: flex;
	flex-direction: column;
}

.seminar-card__media {
	position: relative;
	aspect-ratio: 430 / 185;
	overflow: hidden;
}

.seminar-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.seminar-card__ribbon {
	position: absolute;
	top: 10px;
	left: 10px;
	background: #2f7feb;
	color: #fff;
	font-size: 12px;
	font-weight: var(--fw-bold);
	letter-spacing: .02em;
	padding: 7px 12px;
}

.seminar-card__body {
	padding: 30px 27px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	flex: 1;
}

.seminar-card__title {
	font-size: 16px;
	font-weight: var(--fw-bold);
	color: #004098;
	line-height: 1.375;
}

.seminar-card__body ul {
	font-size: 15px;
	font-weight: 500;
	color: #004098;
	line-height: 1.9;
}
.seminar-card__body ul li{
	display: flex;
}
.seminar-card__actions {
	margin-top: 8px;
	display: flex;
	gap: 12px;
	justify-content: flex-end;
}
.seminar__all {
	text-align: right;
	margin: 20px auto 0;
}

/* =========================================================
   Final CTA (最終CTA)
   ========================================================= */
.final-cta {
	background: #3b80e2;
	color: var(--c-white);
	padding: 78px 0 58px;
}

.final-cta__inner {
	display: grid;
	grid-template-columns: 508px 1fr;
	gap: 40px;
	align-items: start;
}

.final-cta__photo {
	width: 508px;
	border-radius: 0;
	overflow: hidden;
}

.final-cta__photo img {
	display: flex;
	width: 100%;
}

.final-cta__text {
	padding-top: 2px;
}

.final-cta__title {
	font-size: 24px;
	font-weight: 900;
	letter-spacing: .004em;
	line-height: 1.16;
	margin-bottom: 25px;
}

.final-cta__points {
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin: 0;
}

.final-cta__point {
	display: flex;
	align-items: center;
	font-size: 17px;
	line-height: 1.64;
	letter-spacing: 0.04em;
	font-weight: 700;
	position: relative;
	padding-left: 26px;
}
.final-cta__point::before,
.final-cta__point::after{
	content: '';
	position: absolute;
	left: 0;
	top: 5px;
}
.final-cta__point::before {
	width: 12px;
	height: 11px;
	background: url('../image/ic_check_blue.png') no-repeat;
	background-size: 100%;
	z-index: 2;
	left: 4px;
    top: 9px;
}
.final-cta__point::after {
	width: 20px;
	height: 20px;
	background: #fff;
	border-radius: 50%;
	z-index: 1;
}

.final-cta__note {
	text-align: center;
	font-size: 20px;
	line-height: 1.15;
	font-weight: var(--fw-bold);
	margin: 30px 0 15px;
}

.final-cta__actions {
	display: flex;
	justify-content: center;
	gap: 14px;
	flex-wrap: wrap;
}

.final-cta__web {
	background: var(--c-white);
	color: #2f78e7;
	width: 362px;
	min-height: 74px;
	padding: 0 28px;
	border-radius: 37px;
	font-size: 26px;
	font-weight: var(--fw-bold);
	letter-spacing: .008em;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	transition: transform .15s ease;
}
.final-cta__web span{
	padding-left: 46px;
	background: url('../image/ic_email_blue.png') no-repeat;
	background-position: center left;
}
.final-cta__web .btn__icon {
	width: 34px;
	height: 34px;
}

.final-cta__web:hover {
	transform: translateY(-2px);
}

.final-cta__tel-btn {
	background: transparent;
	color: var(--c-white);
	width: 365px;
	min-height: 74px;
	padding: 0 28px;
	border-radius: 37px;
	border: 3px solid var(--c-white);
	font-size: 33px;
	font-weight: 900;
	letter-spacing: .006em;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
}

.final-cta__tel-label {
	font-size: 25px;
	line-height: 1;
}

.final-cta__tel-number {
	line-height: 1;
}

/* =========================================================
   Footer
   ========================================================= */
.footer {
	background: var(--c-white);
	border-top: 1px solid #dfe7f4;
}

.footer__inner {
	max-width: 1380px;
	margin-inline: auto;
	padding: 100px 20px 40px;
}

.footer__top {
	display: grid;
	grid-template-columns: 400px 1fr auto;
	align-items: flex-start;
	justify-content: space-between;
}

.footer__logo img {
	display: block;
	width: 155px;
	height: auto;
}

.footer__nav {
	display: flex;
	justify-content: flex-end;
	gap: 32px;
	padding-left: 20px;
	padding-right: 20px;
}

.footer__nav-link {
	position: relative;
	font-size: 16px;
	line-height: 1;
	font-weight: 500;
	color: #000000;
	letter-spacing: .006em;
}

.footer__top-contact {
	display: flex;
	align-items: center;
	gap: 20px;
}
.footer__top-tel {
	font-size: 22px;
	line-height: 1;
	font-weight: 900;
	color: var(--c-primary);
	letter-spacing: .006em;
	white-space: nowrap;
}
.footer__top-tel .sm{
	font-size: 16px;
}
.footer__contact-btn {
	min-width: 129px;
	min-height: 34px;
	padding: 8px 18px;
	border-radius: 50vh;
	background: var(--c-primary);
	color: var(--c-white);
	font-size: 15px;
	line-height: 1;
	font-weight: 700;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	letter-spacing: 0.06em;
}

.footer__contact-btn:hover {
	background: #00347e;
}

.footer__main {
	display: flex;
	flex-wrap: wrap;
	padding-top: 55px;
}

.footer__address {
	margin: 0;
	font-size: 13px;
	line-height: 1.7;
	font-weight: 500;
	color: #444444;
	font-style: normal;
	padding-right: 50px;
}
.footer__address h4{
	font-weight: 700;
	line-height: 2.15;
}
.footer__col-title {
	margin: 0 0 8px;
	font-size: 13px;
	line-height: 1.3;
	font-weight: 700;
	color: #444444;
}
.footer__top_nav{
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	justify-content: space-between;
}
.footer__col-list {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.footer__col-link {
	font-size: 13px;
	line-height: 1.35;
	color: #444444;
	font-weight: 500;
}

.footer__col-link:hover {
	color: var(--c-accent);
}

.footer__copyright {
	text-align: right;
	margin: 0;
	font-size: 10px;
	line-height: 2;
	color: #666;
	position: relative;
	bottom: 10px;
}
@media (min-width: 1300px) {
	.movie .container{
		padding-left: 20px;
	}
}
@media (min-width: 1200px) {
	.container {
		padding-left: 350px;
	}
	.side-nav-anchor {
		display: block;
	}
}
@media (max-width: 1199px){
	.container {
		max-width: 900px;
	}
	.concerns .container{
		padding-left: 40px;
		padding-right: 40px;
	}
	.cases__footer{
		width: 100%;
		padding-right: 20px;
	}
}
@media (max-width: 1060px) {
	.header{
		padding: 10px 0;
	}
	.header__inner{
		padding: 0 30px;
	}
	header .header__nav{
		display: none;
	}
	header.open-menu{
		background: #fafafa;
		border-bottom: none;
	}
	header.open-menu .header__logo{
		display: none;
	}
	header.open-menu .header__nav {
		display: block;
		position: fixed;
		left: 0;
		right: 0;
		top: 60px;
		bottom: 0;
		height: calc(100vh - 60px);
		background: #fafafa;
		z-index: 1000;
		padding: 0 22px;
	}
	header.open-menu .header__menu{
		flex-wrap: wrap;
		gap: 0;
		padding-top: 22px;
	}
	header.open-menu .header__menu li{
		width: 100%;
		display: inline-block;
		margin-bottom: 6px;
	}
	header.open-menu .header__menu li a{
		display: inline-block;
		width: 100%;
		border: 1px solid #eaeaea;
		padding: 12px 35px 12px 20px;
		border-radius: 8px;
		position: relative;
	}
	header.open-menu .header__menu li:last-child{
		margin-bottom: 0;
	}
	header.open-menu .header__menu li a::after{
		content: '';
        position: absolute;
        top: 50%;
        right: 20px;
        width: 10px;
        height: 10px;
        border-top: 2px solid #2f63ab;
        border-right: 2px solid #2f63ab;
        transform: rotate(135deg);
        margin-top: -8px;
		display: none !important;
	}
	header.open-menu .header__contact{
		flex-direction: column-reverse;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        width: 100%;
        margin-top: 55px;
		gap: 10px;
		bottom: 0;
	}
	header.open-menu .header__contact a {
        width: 235px;
        min-height: 54px;
        text-align: center;
    }
	header.open-menu .header__contact a.header__cta {
		padding: 8px 18px;
		border-radius: 50vh;
		background: var(--c-primary);
		color: var(--c-white);
		font-size: 18px;
		line-height: 1;
		font-weight: 700;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		letter-spacing: 0.06em;
	}
	header.open-menu .header__contact a.header__tel{
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.concerns__row {
		flex-wrap: wrap;
		gap: 12px;
	}

	.concerns__row--indent {
		gap: 12px;
		margin-top: 0;
		padding-left: 0;
	}
}

/* =========================================================
   Responsive — Mobile (matches SP artboard, breakpoint 767px)
   ========================================================= */
@media (max-width: 767px) {
	:root {
		--fs-hero: 26px;
		--fs-h2: 22px;
		--fs-h2-sm: 22px;
		--fs-lead: 18px;
		--fs-xl: 18px;
	}

	.section {
		padding-block: var(--sp-12);
	}

	.container {
		padding-left: 10px;
		padding-right: 10px;
	}

	/* Hero */
	.movie {
		/* min-height: 520px; */
		text-align: left;
	}
	.movie ul{
		position: relative;
		width: 100%;
		height: 100%;
	}
	.movie ul li{
		display: block;
		width: 100%;
		height: 100%;
		position: absolute;
		inset: 0;
		overflow: hidden;
		opacity: 0;
		pointer-events: none;
		transition: opacity .35s ease;
	}
	.movie ul li.is-mobile-current{
		opacity: 1;
		pointer-events: auto;
		z-index: 2 !important;
	}
	.movie ul li picture {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
    }
	.movie ul li picture img {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        max-width: unset;
        width: auto;
        height: 100%;
        object-fit: unset;
		transform: translateX(0);
		will-change: transform;
    }
	.movie ul li.is-mobile-bg-animate picture img {
		animation: movieMobilePan var(--movie-mobile-duration, 2600ms) linear forwards;
	}
	.movie__content {
		padding-block: 20px
	}
	.concerns .container {
        padding-left: 10px;
        padding-right: 10px;
    }
	/* Concerns */
	.concerns__bubbles {
		max-width: 100%;
		margin-bottom: 0;
		padding-left: 7px;
		padding-right: 7px;
		padding-bottom: 17px;
	}

	.concerns__row {
		gap: var(--sp-3);
	}

	.concerns__row--indent {
		gap: var(--sp-3);
		margin-top: 0;
		padding-left: 0;
	}

	@keyframes movieMobilePan {
		from {
			transform: translateX(0);
		}
		to {
			transform: translateX(calc(100vw - 100%));
		}
	}

	.bubble {
		width: min(100%, 180px);
		min-height: 78px;
		font-size: var(--fs-sm);
		padding: 18px 20px;
	}

	.bubble::before {
		left: 16px;
		top: 12px;
		font-size: 20px;
	}
	
	.bubble--tail-left::after {
		left: 34px;
	}

	.bubble--tail-right::after {
		right: 34px;
	}

	/* CTA band → stack */
	.cta-band {
		padding: 30px;
		justify-content: flex-start;
	}
	.cta-band__title {
		font-size: 18px;
	}

	.cta-band__points {
		align-items: flex-start;
		font-size: 15px;
	}

	.cta-band__point {
		justify-content: center;
	}

	.cta-band__actions {
		width: 100%;
		align-items: center;
	}
	.cta-band .cta-band__text{
		margin-bottom: 10px;
	}
	/* Cases */
	.cases {
		overflow: hidden;
		padding-top: 15px;
	}
	.cases .heading{
		margin-bottom: 30px;
	}
	.cases .heading__lead .sm{
		font-size: 14px;
	}
	.cases__viewport {
		margin-right: 0;
	}

	.cases__grid {
		display: block;
	}

	.case-card {
		margin-inline: 10px;
		width: auto;
	}

	.cases__footer {
		flex-direction: column;
		align-items: flex-start;
		gap: 14px;
		margin-top: 18px;
		padding-right: 0;
	}

	.cases__controls {
		order: 1;
		gap: 10px;
	}

	.cases__more {
		order: 2;
		align-self: flex-end;
	}

	.cases-cta {
		max-width: 350px;
		margin-top: 18px;
	}

	.cases-cta__arrow {
		margin-bottom: -2px;
	}

	.cases-cta__arrow img {
		width: 62px;
	}

	.cases-cta__panel {
		grid-template-columns: 1fr;
		row-gap: 18px;
		padding: 22px 18px 16px;
		text-align: center;
	}

	.cases-cta__title {
		font-size: 16px;
		margin-bottom: 10px;
	}

	.cases-cta__points {
		align-items: flex-start;
	}

	.cases-cta__point {
		font-size: 11px;
	}

	.cases-cta__media img {
		width: 100%;
		max-width: 244px;
		height: auto;
		margin: 0 auto;
	}

	.cases-cta__actions {
		width: 100%;
	}

	.cases-cta__web {
		min-height: 46px;
		font-size: 15px;
	}

	.cases-cta__tel .tel-link__label {
		font-size: 17px;
	}

	.cases-cta__tel .tel-link__number {
		font-size: 18px;
	}
	.heading__lead{
		font-size: 21px;
	}
	.cases__grid.slick-initialized .slick-slide{ 
		margin-right: 0;
	}
	.cases__footer{
        flex-direction: unset;
        align-items: center;
        justify-content: space-between;
	}
	
	/* Profiles → 1 col, stacked */
	.profiles {
		overflow: hidden;
	}

	.profiles .heading {
		margin-bottom: 28px;
	}

	.profiles__grid {
		display: block;
		max-width: 100%;
		margin-inline: 0;
	}

	.profile {
		display: block;
		width: 248px;
		padding: 0;
	}

	.profile__photo {
		width: 100%;
		height: auto;
		margin-inline: auto;
		margin-bottom: 17px;
	}

	.profile__info {
		text-align: left;
	}

	.profile__name {
		text-align: left;
		font-size: 16px;
		margin-bottom: 14px;
	}

	.profile__meta {
		font-size: 12px;
	}

	.profile__bio {
		font-size: 12px;
		-webkit-line-clamp: 4;
	}

	.profile__more {
		margin-top: 12px;
		font-size: 12px;
	}

	.profiles__grid.slick-slider {
		width: 100%;
		margin-left: 0;
	}

	.profiles__grid .slick-list {
		overflow: visible;
	}

	.profiles__grid .slick-slide {
		width: 248px;
		margin-inline: 14px;
	}

	.profiles__grid .slick-track {
		display: flex;
		align-items: flex-start;
	}

	.profiles__grid .slick-arrow {
		position: absolute;
		top: 160px;
		z-index: 2;
		width: 24px;
		height: 24px;
		padding: 0;
		border: 0;
		background: transparent;
		color: var(--c-primary);
		font-size: 0;
	}

	.profiles__grid .slick-arrow::before {
		content: "";
		display: block;
		width: 14px;
		height: 14px;
		margin: 0 auto;
		border-top: 3px solid currentColor;
		border-right: 3px solid currentColor;
	}

	.profiles__grid .slick-prev {
		left: 30px;
	}

	.profiles__grid .slick-prev::before {
		transform: rotate(-135deg);
	}

	.profiles__grid .slick-next {
		right: 30px;
	}

	.profiles__grid .slick-next::before {
		transform: rotate(45deg);
	}

	/* Strengths */
	.strengths .heading{
		margin-bottom: 18px;
	}
	.strength-row .strength-row__point{
		width: 100%;
		align-items: center;
		justify-content: flex-start;
		padding: 0;
	}
	.strength-row__point .strength-row__point-label{
		font-size: 10px;
		display: inline-block;
		line-height: 2.3;
		position: relative;
		bottom: 2px;
	}
	.strength-row__point .strength-row__point-num{
		font-size: 16px;
		line-height: 1.43;
	}
	.strength-row .strength-row__text{
		flex: 1;
		width: auto;
		background: #fbfcfe;
		padding: 0 10px 0 20px;
	}
	.strength-row .strength-row__text_box{
		flex-wrap: wrap;
		height: auto;
		padding-top: 10px;
		padding-bottom: 10px;
	}
	.strength-row .strength-row__text_inner{
		flex-wrap: wrap;
		flex: auto;
		letter-spacing: 0.04em;
		font-size: 14px;
		padding: 0;
		height: auto;
	}
	.strength-row__text .lg{
		font-size: 18px;
		line-height: 1.5;
	}
	.strength-row .strength-row__image{
		width: 130px;
	}
	.strength-row .strength-row__image img{
		height: 100%;
		object-fit: cover;
	}
	.strengths__note-title{
		font-size: 15px;
		line-height: 1.6;
		letter-spacing: 0;
	}
	.strengths__note-list{
		width: 100%;
		font-size: 15px;
		margin-left: -4px;
		margin-right: -4px;
	}
	.strengths__note-list li{
		width: 50%;
		letter-spacing: 0;
		padding-left: 28px;
		padding-right: 4px;
	}
	.strengths__note-list li::before,
	.strengths__note-list li::after{
		top: 16px;
	}
	.strengths__note-list li::before{
		left: 6px;
		top: 18px;
	}
	.strengths__note-list li::after{
		left: 5px;
	}
	.strengths__note-body{
		font-size: 14px;
		line-height: 1.5;
	}
	.strengths__note-emphasis{
		font-size: 16px;
		line-height: 1.5;
	}
	/* Flow */
	.flow .heading {
		margin-bottom: 20px;
	}
	.flow__steps li{
		padding: 28px 15px;
	}
	.flow__steps li .step__text{
		flex-wrap: wrap;
		padding-left: 0;
	}
	.flow__steps li .step__text .step__title{
		width: 100%;
	}
	.flow__steps li .step__badge{
		width: 60px;
	}
	.flow__steps li .step__badge_inner{
		width: 50px;
		height: 50px;
	}
	.step__badge-label{
		font-size: 12px;
	}
	.step__badge-num{
		font-size: 18px;
	}
	.flow__steps li .step__text .step__title{
		font-size: 17px;
	}
	.flow__steps li .step__text .step__desc{
		font-size: 13px;
	}
	/* faq */
	.faq .heading{
		margin-bottom: 18px;
	}
	.faq__q-mark{
		font-size: 17px;
	}
	.faq__q{
		font-size: 14px;
	}
	.faq__q-toggle{
		font-size: 20px;
	}
	/* Seminar*/
	.seminar .heading{
		margin-bottom: 18px;
	}
	.seminar__features{
		min-height: auto;
		grid-template-columns: repeat(1, 1fr);
		gap: 0px;
	}
	.seminar__features li{
		margin-bottom: 10px;
		min-height: auto;
		justify-content: flex-start;
	}
	.seminar__themes{
		text-align: left;
		margin-bottom: 5px;
	}
	.seminar__themes-label,
	.seminar__themes-list{
		font-size: 14px;
	}
	.seminar__themes-label{
		display: block;
	}
	.seminar__pickup-title{
		text-align: center;
	}
	.seminar__grid{
		grid-template-columns: repeat(1, 1fr);
    	gap: 0px;
	}
	.seminar-card__ribbon{
		font-size: 11px;
		padding: 3px 10px;
	}
	.seminar-card{
		margin-bottom: 12px;
	}
	.seminar-card__body{
		padding: 20px 15px;
	}
	.seminar-card__title{
		font-size: 15px;
	}
	.seminar-card__body ul{
		font-size: 14px;
	}
	.seminar-card__actions{
		justify-content: flex-start;
	}
	.seminar__all{
		margin-top: 0;
	}
	/* Final CTA → stack */
	.final-cta {
		padding: 55px 0 55px;
	}

	.final-cta__inner {
		grid-template-columns: 1fr;
		gap: 26px;
		padding:0;
	}

	.final-cta__photo {
		order: 1;
		width: 100%;
		max-width: 764px;
		margin-inline: auto;
		border-radius: 5px;
		overflow: hidden;
	}

	.final-cta__text {
		max-width: 764px;
		margin-inline: auto;
	}

	.final-cta__title {
		font-size: 21px;
		line-height: 1.33;
		text-align: center;
	}

	.final-cta__point {
		gap: 14px;
	}

	.final-cta__point::before {
		width: 14px;
		height: 14px;
	}

	.final-cta__note {
		font-size: 16px;
		margin: 24px 0 20px;
	}

	.final-cta__actions {
		flex-direction: column;
		align-items: center;
		gap: 14px;
		flex-direction: column-reverse;
	}

	.final-cta__web,
	.final-cta__tel-btn {
		width: min(100%, 364px);
		min-height: 64px;
		justify-content: center;
	}
	.final-cta__web{
		font-size: 24px;
	}
	.final-cta__tel-btn{
		font-size: 26px;
		border-width: 2px;
	}
	.final-cta__tel-label{
		font-size: 20px;
	}
	.final-cta__web .btn__icon {
		width: 28px;
		height: 28px;
	}
	/* Footer */
	.footer__inner {
		padding: 30px 0 12px;
	}
	.footer__logo img{
		width: 130px;
	}
	.footer__top {
		grid-template-columns: 1fr;
		row-gap: 20px;
		margin-bottom: 20px;
		text-align: left;
	}
	.footer__main{
		padding-top: 20px;
	}
	.footer__top_info{
		padding: 0 30px 0 30px;
	}
	.footer__nav{
		flex-wrap: wrap;
		gap: 0;
		justify-content: flex-start;
		padding: 0;
	}
	.footer__nav-link{
		width: 100%;
		line-height: 2;
		border-bottom: 1px solid #ebf2fc;
		padding: 13px 30px;
	}
	.footer__nav-link:first-child{
		border-top: 1px solid #ebf2fc;
	}
	.footer__top-contact{
		flex-direction: column-reverse;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        width: 100%;
		margin-top: 60px;
	}
	.footer__top-contact a{
		width: 235px;
		min-height: 54px;
		text-align: center;
	}
	.footer__copyright{
		text-align: center;
		bottom: 0;
	}
	/*cta ===========*/
	.cta-band.fm1{
		padding-left: 50px;
		padding-right: 50px;
	}
	.cta-band .cta-band__text{
		width: 100%;
	}
	.cta-band .cta-band__title{
		font-size: 19px;
		width: 100%;
	}
	.cta-band.fm1 .cta-band__title{
		text-align: center;
		margin-bottom: 15px;
	}
	.cta-band .cta__media{
		margin: 15px 0 10px;
		padding: 0;
		width: 100%;
	}
	.cta-band .cta__media img{
		width: 100%;
	}
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
	* {
		animation: none !important;
		transition: none !important;
		scroll-behavior: auto !important;
	}
}
/* ---------- contact ---------- */
input[type="text"],
input[type="tel"],
input[type="email"],
input[type="phone"],
textarea {
  border: 1px solid #c4c4c4;
  width: 100%;
  border-radius: 3px;
  padding: 11px 10px;
  outline: none;
  margin: 0;
  max-width: 100%;
  display: block;
  box-sizing: border-box;
  -webkit-appearance: none;
  vertical-align: middle;
}
input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    border: 1px solid #c4c4c4; /* Màu viền mặc định khi chưa chọn */
    border-radius: 3px;
    outline: none;
    cursor: pointer;
    background-color: #fff;
    display: inline-grid;
    place-content: center;
	position: relative;
}
input[type="checkbox"]:checked {
    border-color: #004098; 
    background-color: #004098;
	width: 16px;
    height: 16px;
}
input[type="checkbox"]:checked::before {
    content: "";
	position: absolute;
	left: 4px;
	top: 0px;
    width: 6px;
    height: 11px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.contact-page{
	color: #302C2C;
	font-size: 16px;
	font-weight: 500;
	padding: 90px 0;
}
.contact-page .container{
	padding: 0 20px;
	max-width: 1060px;
}
.contact-page .contact__info{
	text-align: center;
}
.contact-page.thank .contact__info{
	text-align: left;
}
.contact-page .contact__info .desc{
	line-height: 2.18;
	letter-spacing: 0.06em;
	padding-bottom: 50px;
}
.contact-page .contact__info .ct__tit{
	color: #004098;
	font-weight: 700;
	font-size: 30px;
	line-height: 1.66;
	letter-spacing: 0.06em;
}
.contact-page .contact__info .ct__tit span{
	padding-left: 40px;
	padding-bottom: 4px;
}
.contact-page .contact__info .ct__phone .ct__tit span{
	background: url('../image/ic_phone_blue.png') no-repeat;
	background-size: 28px 28px;
	background-position: left center;
}
.contact-page .contact__info .ct__email .ct__tit span{
	background: url('../image/ic_email_line.png') no-repeat;
	background-size: 29px 20px;
	background-position: left center;
}
.ct__separator{
	position: relative;
	padding: 45px 0;
}
.ct__separator::after{
	content: '';
	position: absolute;
	left: 50%;
	top: 50%;
	margin-left: -60px;
	width: 120px;
	height: 1px;
	background: #0072bb;
}
.contact-page .frm__contact{
	padding-top: 35px;
}
.contact-page .frm__contact ul{
	margin: 0;
	padding: 0;
}
.contact-page .frm__contact ul li{
	padding: 25px 0;
	border-top: 1px solid #c4c4c4;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
.contact-page .frm__contact ul li.label__top{
	align-items: flex-start;
}
.contact-page .frm__contact ul li:last-child{
	padding-bottom: 0;
}
.contact-page .frm__contact ul li .label{
	width: 230px;
}
.contact-page .frm__contact ul li .label .l_txt{
	position: relative;
}
.contact-page .frm__contact ul li .label .l_txt.required{
	padding-right: 45px;
}
.contact-page .frm__contact ul li .label .required::after{
	content: '必須';
	position: absolute;
	top: 3px;
	right: 0;
	background: #FF1D25;
	line-height: 1;
	color: #fff;
	padding: 1px 5px 3px 5px;
	border-radius: 3px;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 24px;
}
.contact-page .frm__contact ul li .control{
	flex: 1;
	padding-left: 25px;
}
.contact-page .frm__contact ul li .label .note{
	font-size: 13px;
}
.contact-page .frm__contact ul li .control .ct__checkbox{
	font-size: 14px;
}
.contact-page .frm__contact ul li .control .ct__checkbox label{
	display: flex;
	align-items: center;
	width: 100%;
	padding: 2px 0;
}
.contact-page .frm__contact ul li textarea{
	height: 210px;
	resize: none;
}
.contact-page .frm__contact ul li.btn_group{
	border-top: none;
	justify-content: center;
	gap: 15px;
}
.contact-page .frm__contact ul li.btn_group input[type="submit"]{
	border: medium none;
	font-size: 18px;
	letter-spacing: 0.06em;
	width: 300px;
	height: 80px;
	background: #004098;
	color: #fff;
	font-weight: 700;
	border-radius: 10px;
	box-shadow: 0 0 5px rgba(0, 0,0, 0.3);
	cursor: pointer;
	transition: 0.3s;
}
.contact-page .frm__contact ul li.btn_group input[type="submit"]:hover{
	opacity: 0.8;
}
.contact-page .frm__contact ul li.btn_group input[type="submit"][name="submitBack"]{
	background: #333;
}
.ct__checkbox .mwform-checkbox-field{
	display: flex;
	flex-wrap: wrap;
	margin-left: 0 !important;
}
@media(max-width: 767px){
	.contact-page{
		padding: 50px 0;
	}
	.contact-page .container{
		padding-left: 10px;
		padding-right: 10px;
	}
	.contact-page .contact__info .desc{
		padding-bottom: 30px;
	}
	.contact-page .contact__info .ct__tit{
		font-size: 20px;
	}
	.contact-page .contact__info .ct__tit span{
		padding-left: 30px;
	}
	.contact-page .contact__info .ct__phone .ct__tit span{
		background-size: 20px 20px;
	}
	.contact-page .contact__info .ct__email .ct__tit span{
		background-size: 25px 16px;
	}
	.ct__separator {
		padding: 25px 0;
	}
	.contact-page .frm__contact{
		padding-top: 25px;
	}
	.contact-page .frm__contact ul li{
		padding: 5px 0;
		border: none !important;
	}
	.contact-page .frm__contact ul li .label{
		width: 100%;
		margin-bottom: 3px;
	}
	.contact-page .frm__contact ul li .control{
		flex: auto;
		padding-left: 0;
	}
	.contact-page .frm__contact ul li .label .l_txt.required{
		display: inline-block;
		padding-right: 50px;
	}
	.contact-page .frm__contact ul li textarea{
		height: 150px;
	}
	.contact-page .frm__contact ul li.btn_group{
		margin-top: 20px;
	}
	.contact-page .frm__contact ul li.btn_group input[type="submit"]{
		width: 200px;
		height: 50px;
		font-size: 16px;
	}
}
