@charset "utf-8";

/* =========================================================
   介護と仕事の両立応援窓口 / SP用スタイル（max-width:767px）
   ※ style-pc.css は min-width:768px のため、
     ここは変数を含めて独立して定義しています
========================================================= */


/* ---------------------------------------------------------
   カスタムプロパティ
--------------------------------------------------------- */
:root {
	/* カラー（PC版と同じ値） */
	--c-navy:        #3d5e96;
	--c-rule:        #365e94;
	--c-blue:        #1d5099;
	--c-blue-light:  #3989ec;
	--c-orange:      #ff8941;
	--c-green:       #4ac774;
	--c-text:        #333333;
	--c-text-sub:    #666666;
	--c-line:        #cccccc;
	--c-bg-gray:     #f2f2f2;
	--c-white:       #ffffff;

	/* レイアウト */
	--pad-side: 25px;
	--h-header:      60px;

	/* フォント */
	--f-base: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
	--f-en:   "Lato", "Noto Sans JP", sans-serif;
}


/* ---------------------------------------------------------
   ベース
--------------------------------------------------------- */
html {
	scroll-behavior: smooth;
}

body {
	overflow-x: hidden;
}

body {
	font-family: var(--f-base);
	font-size: 14px;
	font-weight: 400;
	line-height: 1.8;
	color: var(--c-text);
	background-color: var(--c-white);
	background-image: url("../images/bg.png");
	background-repeat: no-repeat;
	background-position: top center;
	background-size: 100% auto;
	background-attachment: scroll;	/* iOS Safari対策で fixed は使わない */
	-webkit-font-smoothing: antialiased;
	-webkit-text-size-adjust: 100%;
	background-attachment: fixed;
}

a {
	transition: opacity .3s ease, color .3s ease;
}

a:focus-visible,
button:focus-visible {
	outline: 3px solid var(--c-orange);
	outline-offset: 2px;
}

/* 表示切替 */
.pc { display: none !important; }
.sp { display: block !important; }


/* ---------------------------------------------------------
   共通コンテナ
--------------------------------------------------------- */
.header__inner,
.kv__head,
.kv__inner,
.cta__inner,
.consultation-banner__inner,
.news__inner,
.related-sites__inner,
.footer__inner,
.footer__copy-inner {
	width: 100%;
	margin-inline: auto;
	padding-inline: var(--pad-side);
}


/* =========================================================
   ヘッダー
========================================================= */
.global-header {
	position: sticky;
	top: 0;
	z-index: 160;	/* ドロワーより上に出してロゴを見せる */
	width: 100%;
	background-color: var(--c-white);
	border-bottom: 1px solid #b2d0e5;
}

.header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	min-height: var(--h-header);
	padding-right: 70px;
}

.header__logo {
	flex: 1 1 auto;
	min-width: 0;
	line-height: 1;
}

.header__logo {
	flex: 1 1 auto;
	min-width: 0;
	line-height: 1;
}

.header__tokyo {
	flex: 0 0 auto;
	line-height: 1;
}

.header__tokyo img {
	width: 100px;
	height: auto;
}

@media screen and (max-width: 374px) {
	.header__logo img { max-width: 150px; }
	.header__tokyo img { width: 84px; }
}

.header__logo img {
	width: 100%;
	max-width: 210px;
}

/* PC用ナビは非表示 */
.global-nav {
	display: none;
}


/* =========================================================
   ハンバーガーボタン
========================================================= */
.hamburger {
	position: fixed;
	top: 6px;
	right: 12px;
	z-index: 200;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 6px;
	width: 48px;
	height: 48px;
	background-color: var(--c-navy);
	border: none;
	border-radius: 8px;
}

.hamburger span {
	display: block;
	width: 22px;
	height: 2px;
	background-color: var(--c-white);
	transition: transform .3s ease, opacity .3s ease;
}

/* 開いている時は × に変形 */
.menu-open .hamburger span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-open .hamburger span:nth-child(2) { opacity: 0; }
.menu-open .hamburger span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }


/* =========================================================
   ドロワーメニュー
========================================================= */
.drawer {
	position: fixed;
	inset: 0;
	z-index: 150;
	display: block;
	background-color: var(--c-white);
	opacity: 0;
	visibility: hidden;
	overflow-y: auto;
	overscroll-behavior: contain;
	-webkit-overflow-scrolling: touch;
	transition: opacity .3s ease, visibility .3s ease;
}

.menu-open .drawer {
	opacity: 1;
	visibility: visible;
}

/* 背面スクロールのロック */
body.menu-open {
	overflow: hidden;
}

.drawer__inner {
	padding-top: var(--h-header);
	padding-bottom: 50px;
}

/* --- メニュー項目（カラーバー） --- */
.drawer__list {
	padding-top: 10px;
}

.drawer__list li + li {
	margin-top: 3px;
}

.drawer__item {
	position: relative;
	display: block;
	padding: 18px 46px 18px 20px;
	margin-inline: 8px;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.4;
	letter-spacing: .04em;
	color: var(--c-white)!important;
	background-color: var(--c-navy);
}

/* 右向きの矢印 */
.drawer__item::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 22px;
	width: 9px;
	height: 9px;
	border-top: 2px solid var(--c-white);
	border-right: 2px solid var(--c-white);
	transform: translateY(-50%) rotate(45deg);
}

/* --- 下部エリア --- */
.drawer__foot {
	padding: 30px var(--pad-side) 0;
}

.drawer__sub {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px 20px;
	margin-bottom: 24px;
}

.drawer__sub a {
	font-size: 12px;
	color: var(--c-text);
	text-decoration: underline;
}

.drawer__cta {
	display: flex;
	flex-direction: column;
	gap: 20px;
	width: 90%;
	margin:0px auto;
}

.drawer__cta a {
	display: block;
	border-radius: 8px;
	overflow: hidden;
}

.drawer__cta img {
	width: 100%;
	display: block;
}


/* =========================================================
   KV（メインビジュアル）
========================================================= */
.kv {
	padding-block: 30px 40px;
}

/* 上部：キャッチ＋ロゴ */
.kv__head {
	text-align: center;
	margin-bottom: 28px;
}

.kv__head img {
	width: 85%;
	max-width: 420px;
}

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

/* --- キャッチ --- */
.kv__content {
	order: 1;
}

.kv__catch {
	width: 100%;
}

/* --- 循環図：キャッチの下に差し込む --- */
.kv__visual {
	order: 2;
	width: 100%;
	max-width: 340px;
	margin: 24px auto 0;
}

.kv__circle {
	width: 100%;
}

/* --- 本文 --- */
.kv__text {
	margin-top: 26px;
}

.kv__text p {
	font-size: 14px;
	line-height: 1.9;
	font-weight: 500;
}

/* SPでは改行を解除して自然に折り返す */
.spnone {
	display: none;
}

.kv__tagline {
	margin-top: 26px;
	text-align: center;
}

.kv__tagline-img {
	width: 100%;
	max-width: 400px;
}


/* =========================================================
   CTA（まずはお気軽にご相談ください）
========================================================= */
.cta {
	padding-block: 10px 40px;
	width: 90%;
	margin: 0 auto;
}

.cta__head {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	margin-bottom: 24px;
}

.cta__lead {
	padding: 5px 8px 7px;
	font-size: clamp(14px, 4.4vw, 20px);
	font-weight: 700;
	letter-spacing: .02em;
	white-space: nowrap;
	border-top: 3px solid var(--c-rule);
	border-bottom: 3px solid var(--c-rule);
}

.cta__free {
	flex-shrink: 0;
	width: 58px;
	height: auto;
}

/* ボタン2つ（2カラム） */
.cta__buttons {
	/* display: flex; */
	gap: 10px;
	width: 100%;
	margin:0px auto;
}

.cta__btn-wrap {
	flex: 1 1 0;
	min-width: 0;
	display: flex;
	flex-direction: column;
	margin-bottom: 20px;
}

.cta__btn {
	display: block;
	border-radius: 8px;
	overflow: hidden;
}

.cta__btn img {
	width: 100%;
	display: block;
}

.cta__note {
	margin-top: 8px;
	font-size: 10px;
	line-height: 1.6;
}

.cta__btn-wrap--tel .cta__note {
	text-align: center;
	font-size: 10px;
	font-weight: 500;
}

.cta__btn-wrap--web .cta__note {
	font-size: 10px;
	color: var(--c-text-sub);
	font-weight: 700;
	text-align: center;
}


/* =========================================================
   相談窓口についてはこちら バナー
========================================================= */
.consultation-banner {
	padding-block: 10px 45px;
	width: 90%;
	margin:0px auto;
}

.consultation-banner__link {
	display: block;
	width: 100%;
	border-radius: 10px;
	overflow: hidden;
}

.consultation-banner__link img {
	width: 100%;
	display: block;
}


/* =========================================================
   新着情報
========================================================= */
.news {
	padding-block: 10px 50px;
}

.news__inner {
	display: block;
}

/* --- 見出し --- */
.news__head {
	width: 150px;
	margin: 0 auto 24px;
}

.news__title {
	padding-block: 4px 7px;
	font-size: 22px;
	font-weight: 700;
	letter-spacing: .08em;
	text-align: center;
	border-top: 3px solid var(--c-rule);
	border-bottom: 3px solid var(--c-rule);
}

/* --- リスト --- */
.news__item a,
.news__item-plain {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 6px 12px;
	padding-block: 16px;
}

.news__item:first-child {
	border-top: 1px solid var(--c-line);
}

/* タグ＋日付を1行目、本文を2行目に */
.news__item a {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 6px 12px;
	padding-block: 16px;
}

.news__tag {
	flex: 0 0 auto;
	min-width: 110px;
	padding: 3px 10px;
	font-size: 10px;
	font-weight: 700;
	line-height: 1.6;
	color: var(--c-white);
	text-align: center;
	border-radius: 999px;
	background-color: var(--c-green);
}

.news__tag--column { background-color: var(--c-green); }
.news__tag--test   { background-color: var(--c-blue-light); }
.news__tag--info   { background-color: var(--c-orange); }

.news__date {
	font-family: var(--f-en);
	font-size: 12px;
	font-weight: 500;
	color: var(--c-text-sub);
	letter-spacing: .04em;
}

.news__text {
	width: 100%;
	font-size: 14px;
	line-height: 1.8;
}


/* =========================================================
   関連支援サイト
========================================================= */
.related-sites {
	padding-block: 30px;
	background-color: var(--c-bg-gray);
}

.related-sites__list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 16px 14px;
}

.related-sites__list li {
	flex: 0 0 auto;
}

.related-sites__list img {
	width: auto;
	height: 38px;
	display: block;
}


/* =========================================================
   フッター
========================================================= */
.global-footer {
	background-color: var(--c-white);
}

.footer__inner {
	padding-block: 35px 0;
}

.footer__top {
	display: flex;
	flex-direction: column;
	gap: 34px;
}

/* 並び順：メニュー → お問い合わせ先 */
.footer__top-right { order: 1; }
.footer__top-left  { order: 2; }

/* --- ロゴ・連絡先 --- */
.footer__logo {
	margin-bottom: 18px;
	line-height: 1;
}

.footer__logo img {
	width: 100%;
	max-width: 240px;
}

.footer__contact {
	font-size: 12px;
	line-height: 1.9;
}

.footer__contact-label {
	font-weight: 700;
	color: var(--c-green);
}

.footer__contact-mail {
	word-break: break-all;
}

.footer__tokyo {
	margin-top: 20px;
	line-height: 1;
}

.footer__tokyo img {
	width: 150px;
}

/* --- フッターナビ --- */
.footer__nav ul {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 20px;
	font-size: 14px;
	font-weight: 700;
}

.footer__nav-sub {
	margin-top: 14px;
	padding-top: 14px;
	border-top: 1px solid var(--c-line);
	font-size: 12px;
	font-weight: 500;
}

.footer__nav-sub a {
	color: var(--c-text-sub);
}

/* --- フッターCTA：SPではドロワー内にあるため非表示 --- */
.footer__cta {
	display: none;
}

/* --- コピーライト --- */
.footer__copy {
	padding-block: 24px 30px;
}

.footer__copy-inner {
	text-align: left;
}

.footer__copy p {
	font-size: 10px;
	line-height: 1.7;
	color: var(--c-text-sub);
}


/* =========================================================
   スクロールリビール
========================================================= */
.reveal {
	opacity: 0;
	transition: opacity .8s cubic-bezier(.22, 1, .36, 1),
	            transform .8s cubic-bezier(.22, 1, .36, 1);
	transition-delay: var(--rvd, 0s);
	will-change: opacity, transform;
}

.reveal.-up    { transform: translateY(24px); }
.reveal.-left  { transform: translateX(-24px); }
.reveal.-right { transform: translateX(24px); }
.reveal.-fade  { transform: none; }

.reveal.is-in {
	opacity: 1;
	transform: none;
}

/* モーション低減設定への配慮 */
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }

	.reveal,
	.reveal.is-in {
		opacity: 1;
		transform: none;
		transition: none;
	}
}


/* =========================================================
   小さめの端末（iPhone SE など）
========================================================= */
@media screen and (max-width: 374px) {
	:root {
		--pad-side: 14px;
	}

	.header__logo img { max-width: 180px; }
	.drawer__item     { font-size: 14px; padding: 16px 42px 16px 16px; }
	.news__tag        { min-width: 96px; }
	.cta__buttons     { gap: 7px; }
	.cta__free        { width: 48px; }
}


/* =========================================================
   ▼▼▼ 下層ページ共通 ▼▼▼
========================================================= */

/* ---------------------------------------------------------
   下層ページ用コンテナ
--------------------------------------------------------- */
.breadcrumb__inner,
.page-head__inner,
.intro__inner,
.target__inner,
.worry__inner,
.staff__inner,
.check__inner {
	width: 100%;
	margin-inline: auto;
	padding-inline: var(--pad-side);
}


/* ---------------------------------------------------------
   パンくず
--------------------------------------------------------- */
.breadcrumb {
	padding-top: 10px;
}

.breadcrumb__list {
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
	font-size: 12px;
	color: var(--c-text-sub);
}

.breadcrumb__list a {
	color: var(--c-green);
	font-weight: 700;
}

.breadcrumb__list li + li::before {
	content: "＞";
	margin-right: 4px;
}


/* ---------------------------------------------------------
   ページタイトル
--------------------------------------------------------- */
.page-head {
	padding-block: 20px 30px;
	text-align: center;
}

/* 画像は「高さ」で揃える */
.page-head__title img {
	width: auto;
	height: 28px;
	max-width: 100%;
	object-fit: contain;
}

.page-head__sub {
	display: block;
	margin-top: 7px;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: .1em;
	color: #999999;
}


/* ---------------------------------------------------------
   セクション共通
--------------------------------------------------------- */

/* 上部のグラデーションライン */
.sec-line {
	position: relative;
	padding-top: 40px;
}

.sec-line::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 3px;
	background: linear-gradient(90deg,
		#3989ec 0%,
		#4ac774 30%,
		#e8d94a 60%,
		#ff8941 100%);
}

/* セクション見出し */
.sec-title {
	margin-bottom: 16px;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: .02em;
	text-align: center;
	color: var(--c-rule);
}

/* セクションリード文 */
.sec-lead {
	margin-bottom: 26px;
	font-size: 14px;
	line-height: 1.9;
}

/* SPでは改行を解除 */
.sec-lead br {
	display: none;
}


/* =========================================================
   イントロ
========================================================= */
.intro {
	padding-bottom: 45px;
}

.intro__inner {
	margin-bottom: 30px;
}

.intro__visual {
	width: 80%;
	max-width: 300px;
	margin: 0 auto 20px;
}

.intro__visual img {
	width: 100%;
}

/* 見出しは画像（フォント指定のため） */
.intro__title {
	margin-bottom: 14px;
	text-align: center;
}

.intro__title img {
	width: 100%;
	max-width: 380px;
}

.intro__text {
	font-size: 14px;
	line-height: 1.9;
}


/* --- 対応内容ボックス --- */
.target {
	padding: 22px 20px;
	background-color: var(--c-bg-gray);
	border-radius: 10px;
}

.target__title {
	margin-bottom: 16px;
	font-size: 18px;
	font-weight: 700;
	text-align: center;
	line-height: 1.5;
}

.target__list li {
	position: relative;
	padding-left: 14px;
	margin-bottom: 8px;
	font-size: 14px;
	line-height: 1.7;
}

.target__list li::before {
	content: "・";
	position: absolute;
	left: 0;
}

.target__note {
	margin-top: 12px;
	font-size: 12px;
	line-height: 1.7;
	color: var(--c-text-sub);
}


/* =========================================================
   こんなお悩み、ありませんか？
========================================================= */
.worry {
	padding-bottom: 45px;
}

.worry__list {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.worry__item {
	padding: 20px;
	border: 1px solid var(--c-line);
	border-radius: 8px;
	background-color: rgba(255, 255, 255, .7);
}

.worry__img {
	width: 60%;
	max-width: 180px;
	margin: 0 auto 14px;
}

.worry__img img {
	width: 100%;
}

.worry__title {
	margin-bottom: 12px;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.6;
	text-align: center;
}

.worry__points li {
	position: relative;
	padding-left: 14px;
	margin-bottom: 6px;
	font-size: 14px;
	line-height: 1.8;
}

.worry__points li::before {
	content: "・";
	position: absolute;
	left: 0;
}

.worry__closing {
	margin-top: 24px;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.9;
}

.worry__closing br {
	display: none;
}


/* =========================================================
   安心して相談できる体制
========================================================= */
.staff {
	padding-bottom: 50px;
}

.staff__list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 26px 16px;
}

.staff__item {
	flex: 0 0 calc(50% - 8px);
	text-align: center;
}

.staff__img {
	width: 80%;
	max-width: 140px;
	margin: 0 auto 10px;
}

.staff__img img {
	width: 100%;
	border-radius: 50%;
}

.staff__name {
	font-size: 16px;
	font-weight: 700;
	line-height: 1.5;
	color: var(--c-green);
}

.staff__name-sub {
	display: block;
	font-size: 12px;
}

.staff__desc {
	margin-top: 4px;
	font-size: 14px;
	line-height: 1.6;
}


/* =========================================================
   チェックシート
========================================================= */
.check {
	padding-bottom: 45px;
}

/* 中見出し（左右に線） */
.check__label {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-block: 34px 24px;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.4;
	text-align: center;
}

.check__label::before,
.check__label::after {
	content: "";
	flex: 1 1 auto;
	height: 1px;
	background-color: var(--c-text-sub);
}

/* --- アコーディオン --- */
.check__list {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.check__item {
	border-radius: 4px;
	overflow: hidden;
}

/* 質問（ボタン） */
.check__q {
	position: relative;
	display: flex;
	align-items: flex-start;
	gap: 10px;
	width: 100%;
	padding: 14px 44px 14px 14px;
	font-family: inherit;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.5;
	text-align: left;
	color: var(--c-white);
	background-color: var(--c-blue-light);
	border: none;
}

.check__q-num {
	flex: 0 0 auto;
	font-family: var(--f-en);
	font-size: 16px;
	font-weight: 700;
}

/* ＋ / − アイコン */
.check__q::before,
.check__q::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 16px;
	width: 14px;
	height: 2px;
	background-color: var(--c-white);
	transition: transform .3s ease;
}

.check__q::after {
	transform: translateY(-50%) rotate(90deg);
}

.check__q::before {
	transform: translateY(-50%);
}

/* 開いている時は − になる */
.check__item.is-open .check__q::after {
	transform: translateY(-50%) rotate(0deg);
}

/* 回答エリア */
.check__a {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows .35s ease;
	background-color: var(--c-white);
}

.check__item.is-open .check__a {
	grid-template-rows: 1fr;
}

.check__a-inner {
	overflow: hidden;
}

.check__points {
	padding: 16px 14px 18px;
}

.check__points li {
	position: relative;
	padding-left: 14px;
	margin-bottom: 6px;
	font-size: 14px;
	line-height: 1.8;
}

.check__points li::before {
	content: "・";
	position: absolute;
	left: 0;
}

/* --- ポータルサイトバナー --- */
.check__portal-lead {
	font-size: 14px;
	line-height: 1.8;
}

.check__portal {
	margin-top: 18px;
	text-align: center;
}

.check__portal a {
	display: inline-block;
	width: 90%;
	max-width: 320px;
	border: 1px solid var(--c-line);
	border-radius: 6px;
	overflow: hidden;
}

.check__portal img {
	width: 100%;
	display: block;
}

.check__closing {
	margin-top: 30px;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.9;
	text-align: center;
}

.check__closing br {
	display: none;
}


/* =========================================================
   ▼▼▼ 下層ページ（FAQ／事例／コラム／関連サイト）▼▼▼
========================================================= */

/* ---------------------------------------------------------
   コンテナ
--------------------------------------------------------- */
.faq__inner,
.posts__inner,
.links__inner,
.article__inner,
.intro__lead-wrap {
	width: 100%;
	margin-inline: auto;
	padding-inline: var(--pad-side);
}


/* ---------------------------------------------------------
   強調リード文
--------------------------------------------------------- */
.lead-strong {
	font-size: 16px;
	font-weight: 700;
	line-height: 1.9;
	text-align: center;
}

.lead-strong br {
	display: none;
}


/* =========================================================
   FAQ
========================================================= */
.faq {
	padding-block: 10px 45px;
}

.faq .check__label:first-child {
	margin-top: 0;
}

/* 回答が文章のとき */
.check__answer {
	padding: 16px 14px 18px;
}

.check__answer p {
	font-size: 14px;
	line-height: 1.8;
}

.check__answer p + p {
	margin-top: 6px;
}


/* =========================================================
   記事一覧（事例・コラム）
========================================================= */
.posts {
	padding-block: 10px 45px;
}

.posts .check__label:first-child {
	margin-top: 0;
}

.post-list {
	display: grid;
	grid-template-columns: 1fr;
	gap: 32px;
	margin-bottom: 40px;
}

.post-item--card .post-item__thumb {
	margin-bottom: 12px;
	overflow: hidden;
	border-radius: 4px;
}

.post-item--card .post-item__thumb img {
	width: 100%;
	height: auto;
	display: block;
}

.post-item--card .post-item__title {
	margin-bottom: 6px;
	font-size: 17px;
	font-weight: 700;
	line-height: 1.6;
}

.post-item--card .post-item__excerpt {
	font-size: 13px;
	line-height: 1.8;
	color: var(--c-text-sub);
}

/* =========================================================
   関連支援サイト一覧
========================================================= */
.links {
	padding-block: 10px 45px;
}

.links .check__label:first-child {
	margin-top: 0;
}

.links-item + .links-item {
	margin-top: 22px;
}

.links-item__link {
	position: relative;
	display: inline-flex;
	align-items: flex-start;
	gap: 6px;
	padding-left: 16px;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.6;
	color: var(--c-green);
	text-decoration: underline;
	text-underline-offset: 4px;
	color: #35a75c!important;
}

.links-item__link::before {
	content: "";
	position: absolute;
	top: .6em;
	left: 0;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background-color: var(--c-green);
}

.icon-blank {
	flex: 0 0 auto;
	width: 14px;
	height: 14px;
	margin-top: .25em;
	fill: currentColor;
}

.links-item__desc {
	margin-top: 6px;
	padding-left: 16px;
	font-size: 14px;
	line-height: 1.8;
}

.links-item__desc a {
	color: var(--c-green);
	text-decoration: underline;
}


/* =========================================================
   記事詳細（コラム）
========================================================= */
.article {
	padding-block: 6px 45px;
}

.article__head {
	padding-bottom: 14px;
	margin-bottom: 24px;
	border-bottom: 2px solid var(--c-text);
}

.article__date {
	display: block;
	margin-bottom: 8px;
	font-family: var(--f-en);
	font-size: 14px;
	font-weight: 500;
	letter-spacing: .04em;
	color: var(--c-text-sub);
}

.article__title {
	font-size: 22px;
	font-weight: 700;
	line-height: 1.5;
}

/* --- 本文 --- */
.article__body p {
	font-size: 14px;
	line-height: 2;
	letter-spacing: .03em;
}

.article__body h2:not(.toc__title) {
	display: flex;
	align-items: baseline;
	gap: 8px;
	margin-top: 56px;
	margin-bottom: 18px;
	padding-left: 12px;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.6;
	letter-spacing: .03em;
	color: var(--c-rule);
	border-left: 5px solid var(--c-rule);
}

.article__body h2:not(.toc__title):first-child {
	margin-top: 0;
}

.article__body h2 .ch-num {
	flex: 0 0 auto;
	font-family: var(--f-en);
	font-size: 28px;
	line-height: 1.2;
}

.article__body h3 {
	margin-top: 34px;
	margin-bottom: 8px;
	padding-left: 12px;
	font-size: 17px;
	font-weight: 700;
	line-height: 1.6;
	border-left: 4px solid var(--c-green);
}

.article__body a {
	color: var(--c-green);
	text-decoration: underline;
}


/* --- 執筆者 --- */
.author {
	margin-top: 40px;
	padding: 24px 20px;
	border: 2px solid var(--c-line);
	border-radius: 6px;
	background-color: rgba(255, 255, 255, .7);
	text-align: center;
}

.author__img {
	width: 110px;
	margin: 0 auto 14px;
}

.author__img img {
	width: 100%;
	border-radius: 50%;
}

.author__name {
	font-size: 16px;
	font-weight: 700;
	line-height: 1.6;
}

.author__role {
	margin-top: 2px;
	font-size: 12px;
	color: var(--c-text-sub);
}

.author__text {
	margin-top: 14px;
	font-size: 14px;
	line-height: 1.8;
	text-align: left;
}


.article__meta {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 16px;
}

.article__meta .article__date {
	margin: 0;
	line-height: 1;
}

.article__meta .news__tag {
	margin: 0;
	line-height: 1;
	padding:7px 10px;
}

/* グローバルナビ：準備中 */
.global-nav .nav-prep {
	position: relative;
	display: block;
	padding: 5px 25px;
	font-size: 14px;
	font-weight: 700;
	color: #999999;
	white-space: nowrap;
	cursor: default;
}


/* グローバルナビ：準備中 */
.global-nav .nav-prep {
	position: relative;
	display: block;
	padding: 5px 25px;
	font-size: 14px;
	font-weight: 700;
	color: var(--c-text);
	white-space: nowrap;
	cursor: default;
	opacity: .45;
}

.global-nav .nav-prep__label {
	position: absolute;
	top: -10px;
	left: 50%;
	transform: translateX(-50%);
	font-size: 11px;
	font-weight: 500;
	white-space: nowrap;
}

/* ドロワー：準備中 */
.drawer__item--prep {
	opacity: .45;
	cursor: default;
}

.drawer__item--prep::after {
	display: none;
}

/* フッターナビ：準備中 */
.footer__nav-prep {
	cursor: default;
	opacity: .45;
}






/* --- 目次 --- */
.toc {
	margin-bottom: 36px;
	padding: 20px 18px;
	border-radius: 8px;
	background-color: var(--c-bg-gray);
}

.toc p {
	line-height: 1.8;
	letter-spacing: normal;
}

.toc .ch-num {
	font-size: inherit;
	font-family: inherit;
}

.toc__title {
	margin-bottom: 14px;
	padding-bottom: 10px;
	font-size: 17px;
	font-weight: 700;
	text-align: center;
	border-bottom: 1px solid var(--c-line);
}

.toc__item {
	position: relative;
	padding-left: 20px;
	margin-bottom: 10px;
	font-size: 15px;
	line-height: 1.7;
}

.toc__item:last-child {
	margin-bottom: 0;
}

.toc__item::before {
	content: "";
	position: absolute;
	top: .6em;
	left: 4px;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background-color: var(--c-green);
}

.toc__item--h3 {
	padding-left: 36px;
	font-size: 14px;
}

.toc__item--h3::before {
	left: 20px;
	width: 5px;
	height: 5px;
	background-color: var(--c-line);
}

.toc__item a {
	color: var(--c-text);
	text-decoration: none;
}


.article__body .toc__title {
	margin-top: 0;
	margin-bottom: 14px;
	padding-bottom: 10px;
	font-size: 17px;
	font-weight: 700;
	text-align: left;
	border-bottom: 1px solid var(--c-line);
}

/* =========================================================
   記事本文：下線・出典表記
========================================================= */
.mark-line {
	text-decoration: underline;
	text-decoration-color: var(--c-green);
	text-decoration-thickness: 2px;
	text-underline-offset: 4px;
}

.article__source {
	margin-top: 10px;
	font-size: 12px !important;
	line-height: 1.8 !important;
	color: var(--c-text-sub);
	text-align: left;
}

.article__source a {
	color: var(--c-green);
	text-decoration: underline;
}


/* =========================================================
   記事本文：資料テーブル
========================================================= */
.doc-table {
	margin-block: 30px;
	padding: 18px 16px 16px;
	border: 2px solid #b2d0e5;
	border-radius: 8px;
	background-color: rgba(255, 255, 255, .7);
}

.doc-table__head {
	margin-bottom: 12px;
	padding-bottom: 10px;
	font-size: 16px !important;
	font-weight: 700;
	line-height: 1.5 !important;
	color: var(--c-rule);
	border-bottom: 2px solid var(--c-rule);
}

.doc-table__badge {
	display: inline-block;
	margin-left: 8px;
	padding: 2px 12px;
	font-size: 12px;
	font-weight: 700;
	color: var(--c-white);
	border-radius: 999px;
	background-color: #e05a5a;
	vertical-align: middle;
}

.doc-table__lead {
	margin-bottom: 14px;
	font-size: 14px !important;
	line-height: 1.8 !important;
}

/* --- テーブルは縦積みに --- */
.doc-table table,
.doc-table tbody,
.doc-table tr,
.doc-table th,
.doc-table td {
	display: block;
	width: 100%;
}

.doc-table tr {
	margin-bottom: 12px;
}

.doc-table tr:last-child {
	margin-bottom: 0;
}

.doc-table th {
	padding: 10px 14px;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.5;
	color: var(--c-white);
	text-align: center;
	background-color: var(--c-rule);
	border-radius: 4px 4px 0 0;
}

.doc-table th br {
	display: none;
}

.doc-table td {
	padding: 14px;
	font-size: 14px;
	line-height: 1.8;
	background-color: #eef4fa;
	border-radius: 0 0 4px 4px;
}

.doc-table__list li {
	position: relative;
	padding-left: 24px;
	margin-bottom: 6px;
}

.doc-table__list li:last-child {
	margin-bottom: 0;
}

.doc-table__num {
	position: absolute;
	left: 0;
	font-weight: 700;
}

.doc-table__inline {
	font-size: 14px !important;
	line-height: 1.8 !important;
}

.doc-table__caution {
	margin-top: 6px;
	font-size: 12px !important;
	line-height: 1.7 !important;
	color: var(--c-text-sub);
}

.doc-table__box {
	padding: 16px 16px;
	border-radius: 6px;
	background-color: #eef4fa;
}

.doc-table__box li {
	position: relative;
	padding-left: 24px;
	margin-bottom: 10px;
	font-size: 14px;
	line-height: 1.8;
}

.doc-table__box li:last-child {
	margin-bottom: 0;
}

.doc-table__box strong {
	font-weight: 700;
	color: var(--c-rule);
}

.doc-table__source {
	margin-top: 12px;
	font-size: 12px !important;
	line-height: 1.7 !important;
	color: var(--c-text-sub);
	text-align: left;
}

.doc-table__source a {
	color: var(--c-green);
	text-decoration: underline;
}


/* =========================================================
   記事本文：番号付き箇条書き
========================================================= */
.step-list {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-block: 24px;
}

.step-list__item {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 14px 16px;
	border-left: 4px solid var(--c-green);
	border-radius: 4px;
	background-color: var(--c-bg-gray);
}

.step-list__num {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	font-family: var(--f-en);
	font-size: 15px;
	font-weight: 700;
	color: var(--c-white);
	border-radius: 50%;
	background-color: var(--c-green);
}

.step-list__text {
	flex: 1 1 auto;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.7;
}



/* =========================================================
   フローティングCTA
========================================================= */
.floating-cta {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 90;
	display: flex;
	box-shadow: 0 -2px 12px rgba(0, 0, 0, .18);
	transform: translateY(0);
	transition: transform .4s ease;
}

.floating-cta.is-visible {
	transform: translateY(0);
}

.floating-cta__btn {
	flex: 1 1 0;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 14px 8px;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.3;
	color: var(--c-white);
}

.floating-cta__btn--tel {
	background-color: var(--c-navy);
}

.floating-cta__btn--web {
	background-color: var(--c-orange);
}

.floating-cta__icon {
	flex: 0 0 auto;
	width: 18px;
	height: auto;
}

/* ドロワーが開いている時は隠す */
.menu-open .floating-cta {
	transform: translateY(100%);
}

/* フッターに重ならないよう余白を確保 */
body {
	padding-bottom: 52px;
}

/* 小さめ端末 */
@media screen and (max-width: 374px) {
	.floating-cta__btn {
		font-size: 12px;
		padding: 12px 6px;
	}

	.floating-cta__icon {
		width: 16px;
	}
}





/* =========================================================
   サイトマップ／ポリシー系ページ
========================================================= */
.sitemap__inner,
.policy__inner {
	width: 100%;
	margin-inline: auto;
	padding-inline: var(--pad-side);
}

.sitemap,
.policy {
	padding-block: 10px 45px;
}

.sitemap .check__label:first-child,
.policy .check__label:first-child {
	margin-top: 0;
}

.sitemap-list li {
	position: relative;
	padding-left: 18px;
	margin-bottom: 12px;
	font-size: 15px;
	line-height: 1.7;
}

.sitemap-list li::before {
	content: "";
	position: absolute;
	top: .6em;
	left: 0;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background-color: var(--c-green);
}

.sitemap-list a {
	font-weight: 700;
	color: var(--c-text);
	text-decoration: underline;
	text-underline-offset: 4px;
}

.sitemap-list__prep {
	font-weight: 700;
	opacity: .45;
}

.policy__title {
	margin-top: 26px;
	margin-bottom: 8px;
	padding-left: 12px;
	font-size: 17px;
	font-weight: 700;
	line-height: 1.6;
	border-left: 4px solid var(--c-green);
}

.policy__text {
	font-size: 14px;
	line-height: 1.9;
}

.policy__list {
	margin-top: 8px;
	margin-bottom: 14px;
}

.policy__list li {
	position: relative;
	padding-left: 14px;
	margin-bottom: 6px;
	font-size: 14px;
	line-height: 1.8;
}

.policy__list li::before {
	content: "・";
	position: absolute;
	left: 0;
}

.policy__list--url li {
	font-size: 13px;
	word-break: break-all;
}

.policy__legend {
	margin-top: 16px;
	padding: 14px 16px;
	border-radius: 6px;
	background-color: var(--c-bg-gray);
}

.policy__legend p {
	font-size: 13px;
	line-height: 1.8;
}

.policy__scroll-note {
	margin-top: 16px;
	margin-bottom: 6px;
	font-size: 12px;
	color: var(--c-text-sub);
}

.policy__table-scroll {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.policy-table {
	min-width: 720px;
	border-collapse: collapse;
}

.policy-table th,
.policy-table td {
	padding: 8px 10px;
	border: 1px solid var(--c-line);
	font-size: 12px;
	line-height: 1.6;
	text-align: left;
}

.policy-table thead th {
	font-weight: 700;
	color: var(--c-white);
	text-align: center;
	background-color: var(--c-rule);
	border-color: var(--c-white);
}

.policy-table tbody tr:nth-child(even) td {
	background-color: #f7fafd;
}

.policy-table td:nth-child(3),
.policy-table td:nth-child(4),
.policy-table td:nth-child(5) {
	text-align: center;
	white-space: nowrap;
}

.policy__date {
	margin-top: 14px;
	font-size: 12px;
	color: var(--c-text-sub);
	text-align: right;
}





.policy__lead {
	margin-bottom: 8px;
	font-size: 14px;
	line-height: 1.9;
}

.policy__text + .policy__text {
	margin-top: 14px;
}

.policy__note {
	margin-top: 8px;
	font-size: 12px;
	line-height: 1.8;
	color: var(--c-text-sub);
}








.policy__subtitle {
	margin-top: 20px;
	margin-bottom: 6px;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.6;
	color: var(--c-rule);
}













.posts__back {
	margin-top: 30px;
	text-align: center;
}

.posts__back a {
	display: inline-block;
	padding: 12px 32px;
	font-size: 14px;
	font-weight: 700;
	color: var(--c-white);
	border-radius: 999px;
	background-color: var(--c-navy);
}

.userreview-area {
	text-align: center;
	margin: 30px auto;
}
.footer_userreview-image {
	max-width: 445px;
	width: 100%;
	height: auto;
}







/* =========================================================
   PR文言バンド
========================================================= */
.pr-band {
	padding-block: 10px 0;
	margin-top: 10px;
	margin-bottom: 40px;
}

.pr-band__inner {
	width: 100%;
	padding-inline: var(--pad-side);
}

.pr-band__text {
	padding: 15px 15px;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.8;
	color: var(--c-white);
	text-align: center;
	border-radius: 4px;
	background-color: #56b770;
	/* letter-spacing: 0.02em; */
}

.pr-band__em {
	padding: 1px 8px 4px;
	margin-inline: 3px;
	font-size: 18px;
	color: #ee772c;
	background-color: var(--c-white);
}

.floating-cta a{color:#fff!important;}



.article__author {
	margin-top: 30px;
	text-align: right;
	font-size: 15px;
	line-height: 1.9;
}



.column-nav__inner {
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding-inline: var(--pad-side);
	margin-bottom: 40px;
}

.column-nav__btn {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 60px;
	padding: 12px 16px;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.5;
	text-align: center;
	color: var(--c-white);
	border-radius: 6px;
}

.column-nav__btn--employee { background-color: #f0a044; }
.column-nav__btn--employer { background-color: #56b770; }

.column-nav__btn:hover {
	opacity: .8;
	color: var(--c-white);
}

.article__thumb {
	margin-bottom: 24px;
}

.article__thumb img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 4px;
}


/* =========================================================
   チラシダウンロード
========================================================= */
.flyer-download {
	padding-block: 0 40px;
}


.flyer-download__inner {
	width: 100%;
	margin-inline: auto;
	padding-inline: var(--pad-side);
	text-align: center;
}

.flyer-download__label {
	font-size: 18px;
	font-weight: 700;
	line-height: 1.6;
	color: var(--c-navy);
}

.flyer-download__link {
	font-size: 18px;
	font-weight: 700;
	line-height: 1.7;
}

.flyer-download__link a {
	color: var(--c-navy);
	background: linear-gradient(transparent 65%, #fff35c 65%);
	padding-inline: 2px;
}