@charset "utf-8";
/**
 *
 * CSS information
 * file name	: base.css
 * Break point : 767px 
 *
 */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600;700&display=swap");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.3.0/css/all.min.css");

:root {
	--color-black: #1f1e1b;
	--color-white: #ffffff;
	--color-blue-50: #f2f9fd;
	--color-blue-100: #e4f1fa;
	--color-blue-200: #c3e3f4;
	--color-blue-300: #7dc4e7; /*基準*/
	--color-blue-400: #53b2dd;
	--color-blue-500: #2d98ca;
	--color-blue-600: #1d7aac;
	--color-blue-700: #19628b;
	/* main sub accent light --*/
	--color-main: var(--color-blue-600);
	--color-sub: var(--color-blue-500);
	--color-acc: var(--color-blue-400);
	--color-light: #686e78;
	--color-blue: #3a97cb; /*初期のmain*/
	/* 背景 ボーダー --*/
	--color-bg: var(--color-blue-50);
	--color-bg-deep: var(--color-blue-100);
	--color-border: #dde5f4;
	--color-blue: #3a97cb; /*初期のmain*/
	/* セクション余白 --*/
	--space-sec-head: 9rem 0 8rem; /*コンテンツ上部*/
	--space-sec-body: 8rem 0 8rem; /*コンテンツ標準*/
	--space-sec-foot: 8rem 0 9rem; /*コンテンツ下部*/
	--space-sec-only: 9rem 0 9rem; /*コンテンツ上下広い*/
	/* 角丸 --*/
	--radius-1: 100vw;
	--radius-2: 50rem;
	--radius-3: 0.8rem;
	--radius-4: 0.4rem;
}

html {
	font-size: 62.5%;
}

html {
	scroll-padding-top: 80px;
}

/**
 * ブレークポイントは767pxのみのため
 * 768px～1365px間は縮小表示させる
 * 文字が小さくなりすぎないように下で
 * @media (min-width: 768px) and (max-width: 1365px) {
 * body {
 *		font-size: 1.7rem;
 *	}
 *}
 * を追加すると
 * 1280pxでもfont-size標準（1.6rem）となる
 * ※max-width:1440pxでfont-size:0.6944444444444444vwだと
 * ※1280pxでfont-size:1.5rem
 */
@media (min-width: 768px) and (max-width: 1365px) {
	html {
		font-size: 0.7326007326007326vw;
	}
}

html,
body {
	height: 100%;
}

body {
	position: relative;
	font-family: "Open Sans", "Noto Sans JP", sans-serif;
	font-size: 1.6rem;
	font-weight: 400;
	letter-spacing: 0.04em;
	color: var(--color-black);
	width: 100%;
	height: 100%;
	line-height: 1.8;
	/* font-feature-settings: "palt"; */
	-webkit-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	text-size-adjust: 100%;
	word-break: break-all;
	/* -webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale; */
	background-color: var(--color-white);
}

@media (min-width: 768px) and (max-width: 1365px) {
	body {
		font-size: 1.7rem;
	}
}

/* 選択した時の色 */
/* ::selection {
	color: var(--color-white);
	background-color: var(--color-sub);
} */

/* reCAPTCHAバッジ非表示 */
.grecaptcha-badge {
	visibility: hidden;
}

/* blockquote */
blockquote {
	border: 1px solid #e7e7e7;
	padding: 20px;
	margin: 20px 0;
	box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.15);
}

/* フッターを最下部に固定
 * フッターへの記述は不要 */
.l-wrapper {
	display: grid;
	grid-template-rows: auto 1fr auto;
	grid-template-columns: 100%;
	min-height: 100vh;
}

/* PCでtelリンク無効 */
@media (min-width: 769px) {
	a[href*="tel:"] {
		pointer-events: none;
		cursor: default;
		text-decoration: none;
	}
}

/*/////////////////////////////////////////////////////////////////////////////////


// ローディングアニメーション //
	  

/////////////////////////////////////////////////////////////////////////////////*/

body::after {
	content: "";
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--color-bg);
	z-index: 9999; /* 一番手前に */
	pointer-events: none; /* 他の要素にアクセス可能にするためにポインターイベントは無効に */
	opacity: 0; /* 初期値では非表示 */
	-webkit-transition: opacity 0.8s ease; /* アニメーション時間は 0.8秒 */
	transition: opacity 0.8s ease;
}

/*body要素に.fadeoutセレクタがある場合には、レイヤーが表示されるようにopacityを１に設定します。*/
body.is-opening-fade::after {
	opacity: 1;
}

.loading {
	background-color: var(--color-bg);
	overflow: hidden;
	position: fixed;
	z-index: 1000;
	width: 100%;
	height: 100%;
	transform: translateY(0);
}

body.is-opening-down .loading {
	pointer-events: none;
	transform: translateY(100%);
	transition: all 0.75s cubic-bezier(0.7, 0, 0.3, 1) 0.8s;
}

/*/////////////////////////////////////////////////////////////////////////////////


// 再利用する要素 //
	  

/////////////////////////////////////////////////////////////////////////////////*/

/* ---------------------------------- 要素隠す */

/* spで隠す */
@media (max-width: 767px) {
	.is-pc {
		display: none;
	}
}

/* PCで隠す */
@media (min-width: 768px) {
	.is-sp {
		display: none;
	}
}

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

section {
	position: relative;
}

/* 余白 */
.sec_head {
	padding: var(--space-sec-head);
}
.sec_body {
	padding: var(--space-sec-body);
}
.sec_foot {
	padding: var(--space-sec-foot);
}
.sec_only {
	padding: var(--space-sec-only);
}

/* 罫線 */
.line_top {
	border-top: 1px solid var(--color-border);
	border-bottom: 1px solid transparent;
}
.line_btm {
	border-top: 1px solid transparent;
	border-bottom: 1px solid var(--color-border);
}

/* 背景 */
.bg_blue {
	background-color: var(--color-bg);
}

.bg_blue_deep {
	background-color: var(--color-bg-deep);
}

/* ---------------------------------- インナー */

.inner {
	margin: 0 auto;
	max-width: 141.6rem;
	position: relative;
	padding: 0 5vw;
	width: 100%;
}

.inner.-lg {
	max-width: 160rem;
}

/* ---------------------------------- ページのリード文 */

.head_lead {
	font-size: 2.5rem;
	font-weight: 600;
	margin-bottom: 3rem;
}

.head_note {
	font-weight: 500;
	line-height: 2;
}

/* ---------------------------------- 見出し */

/* h2 */
.ttl_sec {
	display: flex;
	justify-content: center;
	text-align: center;
	position: relative;
	font-size: 3.6rem;
	font-weight: 600;
	line-height: 1.5;
	padding-top: 2rem;
}
.ttl_sec::before {
	content: "";
	position: absolute;
	background: linear-gradient(
		90deg,
		var(--color-main) 50%,
		var(--color-acc) 50%
	);
	top: 0;
	display: block;
	width: 3rem;
	height: 0.4rem;
	border-radius: var(--radius-4);
}

/* --右寄せ */
.ttl_sec.-left {
	justify-content: flex-start;
}
.ttl_sec.-left::before {
	left: 0;
}

/* h3 */
.ttl_inside {
	display: flex;
	align-items: center;
	position: relative;
	font-size: 2.4rem;
	font-weight: 500;
	line-height: 1.5;
	padding-left: 2rem;
	margin-top: 6rem;
}

.ttl_inside::before {
	content: "";
	position: absolute;
	left: 0;
	display: block;
	background: var(--color-main);
	width: 0.9rem;
	height: 0.9rem;
	border-radius: var(--radius-1);
}

/* --罫線あり（上） */
.ttl_inside.-lineTop {
	border-top: 1px solid var(--color-border);
	padding-top: 2rem;
}

/* h3 or p */
.ttl_blue {
	font-size: 2rem;
	font-weight: 600;
	color: var(--color-main);
	text-align: center;
}

.ttl_blue.-lg {
	font-size: 2.4rem;
}

.ttl_blue.-space {
	margin-top: 1rem;
}

/* タイトル下の説明文 */
.ttl_note {
	margin-top: 3rem;
	text-align: center;
}

/* ---------------------------------- タイトル */
/* 主にh2 */
.c-heading {
	text-align: center;
	font-size: var(--fs-h3);
	font-weight: 600;
	letter-spacing: 0.05em;
	line-height: 1.5;
}

/* 主にh3 */
.c-heading.-sm {
	font-size: var(--fs-h4);
	letter-spacing: 0.04em;
	line-height: 1.6;
}

/* 青色 */
.c-heading.-blue {
	color: var(--color-main);
}

/* 左寄せ */
.c-heading.-left {
	text-align: left;
}

/* 主にh3で上に罫線あり */
.c-line-heading {
	position: relative;
	margin: 8rem 0 0 0;
	padding: 3rem 0 0;
	border-top: 1px solid var(--color-border);
	font-size: 2.4rem;
	font-weight: 500;
	line-height: 1.6;
}

.c-line-heading::before {
	content: "";
	display: block;
	position: absolute;
	top: -1px;
	left: 0;
	width: 6rem;
	height: 0.3rem;
	background: var(--color-main);
}

.c-line-heading.-sm {
	margin: 6rem 0 0 0;
}

/*/////////////////////////////////////////////////////////////////////////////////


// ヘッダー //
	  

/////////////////////////////////////////////////////////////////////////////////*/

.l-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 11rem;
	padding: 0 2.43vw 0 3vw;
	transition: all 0.5s cubic-bezier(0.79, 0.17, 0.15, 0.96);
	z-index: 999;
}

body.is-small-header .l-header {
	height: 7rem;
	padding: 0 2.43vw 0;
	background-color: var(--color-white);
}

@media (max-width: 767px) {
	.l-header {
		height: 7rem;
		background-color: var(--color-white);
	}
}

/* =========================================== ロゴ */
.l-header .logo a {
	display: block;
	width: 17rem;
	height: auto;
	transition: 0.3s ease;
	/* transition: all 0.3s cubic-bezier(0.79, 0.17, 0.15, 0.96); */
}

.l-header .logo a:hover {
	opacity: 0.7;
}

@media (max-width: 767px) {
	.l-header .logo a {
		width: 13rem;
	}
}

@media (min-width: 768px) {
	body.is-small-header .l-header .logo a {
		width: 13rem;
	}
}

/* =========================================== トグルボタン（SP） */
.toggle-btn {
	position: absolute;
	top: 1.3rem;
	right: 2.43vw;
	min-width: 11.8rem;
	width: 11.8rem;
	height: 4.2rem;
	cursor: pointer;
	background-color: var(--color-main);
	border-radius: var(--radius-3);
	transition: background-color 0.3s cubic-bezier(0.79, 0.17, 0.15, 0.96);
	z-index: 999;
}

@media (min-width: 768px) {
	.toggle-btn {
		display: none;
	}
}

.toggle-btn .inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1.2rem 1.7rem;
}

/* ---------------------------------- text */
.toggle-btn .text {
	position: relative;
}

.toggle-btn .text p {
	position: relative;
	color: var(--color-white);
	font-size: 1.1rem;
	font-weight: 700;
	white-space: nowrap;
	transition: opacity 0.3s cubic-bezier(0.79, 0.17, 0.15, 0.96);
}

.toggle-btn ._close {
	display: none;
	opacity: 0;
}

body.is-open .toggle-btn ._open {
	display: none;
	opacity: 0;
}

body.is-open .toggle-btn ._close {
	display: block;
	opacity: 1;
}

/* ---------------------------------- line */
.toggle-btn .line {
	width: 2.2rem;
	aspect-ratio: 40 / 30;
	position: relative;
}

.toggle-btn .line span {
	transform-origin: center;
	background-color: var(--color-white);
	position: absolute;
	width: 100%;
	height: 2px;
}

.toggle-btn .line span {
	transition: all 0.3s cubic-bezier(0.79, 0.17, 0.15, 0.96);
}

.toggle-btn .line span:nth-of-type(1) {
	top: 0;
}

.toggle-btn .line span:nth-of-type(2) {
	top: 50%;
	transform: translateY(-50%);
}

.toggle-btn .line span:nth-of-type(3) {
	top: calc(100% - 2px);
}

body.is-open .toggle-btn .line span:nth-of-type(1) {
	top: 50%;
	transform: translateY(-50%) rotate(40deg);
}

body.is-open .toggle-btn .line span:nth-of-type(2) {
	opacity: 0;
}

body.is-open .toggle-btn .line span:nth-of-type(3) {
	top: 50%;
	transform: translateY(-50%) rotate(-40deg);
}

/*/////////////////////////////////////////////////////////////////////////////////


// グローバルナビゲーション //
	  

/////////////////////////////////////////////////////////////////////////////////*/

/* =========================================== PC */

.gnav {
	display: flex;
	align-items: center;
	position: relative;
	height: 4.5rem;
	line-height: 4.5rem;
}

.gnav_inner {
	display: flex;
	align-items: center;
}

.gnav_list {
	display: flex;
	gap: 3rem;
}

.gnav_item svg {
	display: none;
}

.gnav_item > a {
	position: relative;
	display: flex;
	align-items: center;
	font-size: 1.5rem;
	font-weight: 700;
	transition: color 0.3s;
}

.gnav_item > a:hover,
.gnav_item.is-current > a {
	color: var(--color-sub);
}

/* ---------------------------------- 子メニューあり */

.gnav_item.has-child {
	margin: 0 1.6rem 0 0;
}

/* 矢印 */
.gnav_item.has-child > a::before,
.gnav_item.has-child > a::after {
	content: "";
	position: absolute;
	width: 0.15rem;
	height: 0.8rem;
	background-color: var(--color-main);
	transition: 0.5s;
}

.gnav_item.has-child > a::before {
	transform: rotate(-136deg);
	right: -1.4rem;
}

.gnav_item.has-child > a::after {
	transform: rotate(136deg);
	right: -0.9rem;
}
.is-child-open .gnav_item.has-child > a::before {
	transform: rotate(-45deg);
}

.is-child-open .gnav_item.has-child > a::after {
	transform: rotate(45deg);
}

/* ドロップダウン */
@media (min-width: 768px) {
	.nav_child {
		opacity: 0;
		visibility: hidden;
		transition: all 0.3s;
		width: 100%;
		position: absolute;
		top: 5.5rem;
		left: 0;
		padding: 2.5rem 2.5rem 2rem;
		background-color: var(--color-white);
		/* border: 1px solid var(--color-border); */
		border-radius: var(--radius-4);
		/* box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
		box-shadow: 0 0 10px #0000001a; */
		box-shadow: 0 5px 30px #0000000d;
	}

	.is-child-open .nav_child {
		opacity: 1;
		visibility: visible;
	}
}

.child_list {
	display: flex;
	justify-content: space-between;
	gap: 2.3rem;
}

.child_item {
	position: relative;
}

.child_thumb {
	border-radius: var(--radius-4);
	overflow: hidden;
}

.child_thumb img {
	transition: transform 0.6s ease;
}

.child_item:hover .child_thumb img {
	transform: scale(1.1);
}

.child_text {
	padding: 0 0.5rem;
	text-align: center;
	line-height: 1.5;
}

.child_place {
	display: inline-block;
	font-size: 1.2rem;
	font-weight: 500;
	color: var(--color-main);
	margin-top: 1rem;
}

.child_name {
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	transition: color 0.3s;
}

.child_name span {
	display: inline-block;
	padding-right: 0.5rem;
	font-size: 1.2rem;
}

.child_item:hover .child_name {
	color: var(--color-main);
}

/* ---------------------------------- ボタンナビ */

.nav_btn {
	display: flex;
	margin-left: 3.7rem;
}

.btn_link {
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-white);
	width: 12rem;
	height: 4.5rem;
	font-size: 1.4rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	transition: background-color 0.3s cubic-bezier(0.79, 0.17, 0.15, 0.96);
}

.btn_link._recruit {
	background-color: var(--color-main);
	border-radius: 0.4rem 0 0 0.4rem;
}

.btn_link._contact {
	background-color: var(--color-sub);
	border-radius: 0 0.4rem 0.4rem 0;
}

.btn_link._recruit:hover {
	background-color: var(--color-blue-400);
}

.btn_link._contact:hover {
	background-color: var(--color-blue-400);
}

/* =========================================== SP */

@media (max-width: 767px) {
	.gnav {
		display: block;
		width: 100%;
		height: calc(100dvh - 7rem);
		position: absolute;
		top: 7rem;
		left: 0;
		padding: 0 2rem;
		background-color: var(--color-white);
		overflow-y: auto;
		opacity: 0;
		visibility: hidden;
		transition: opacity 0.3s cubic-bezier(0.79, 0.17, 0.15, 0.96);
		z-index: 2;
	}

	body.is-open .gnav {
		opacity: 1;
		visibility: visible;
	}

	.gnav_inner {
		flex-direction: column;
		width: 100%;
		padding-bottom: 5rem;
	}

	.gnav_list {
		width: 100%;
		flex-direction: column;
		justify-content: center;
		gap: 0;
		padding-top: 2rem;
	}

	.gnav_item {
		position: relative;
	}

	.gnav_item svg {
		display: block;
		width: 1.4rem;
		height: 1.5rem;
		position: absolute;
		right: 0;
		top: 50%;
		transform: translateY(-50%);
		fill: var(--color-main);
	}

	.gnav_item > a {
		padding: 1rem 0;
		border-bottom: 1px solid var(--color-border);
	}

	/* ---------------------------------- 子メニュー */

	.gnav_item.has-child {
		margin: 0;
	}

	/* PC用親メニューの設定消す */
	.gnav_item.has-child > a {
		padding: 0;
		border-bottom: none;
	}

	/* PC用メニュー名「グループホーム」消す */
	.has-child > a span {
		display: none;
	}

	/* PC用の矢印消す */
	.gnav_item.has-child > a::before,
	.gnav_item.has-child > a::after {
		display: none;
	}

	/* PCの要素消す */
	.child_thumb,
	.child_place {
		display: none;
	}

	.child_list {
		flex-direction: column;
		align-items: flex-start;
		justify-content: flex-start;
		gap: 0;
	}

	.child_item {
		width: 100%;
	}

	.child_item > a {
		padding: 1rem 0;
		border-bottom: 1px solid var(--color-border);
		position: relative;
		display: flex;
		align-items: center;
		font-size: 1.5rem;
		font-weight: 700;
		transition: color 0.3s;
	}

	.child_text {
		padding: 0;
		text-align: left;
		line-height: inherit;
	}

	.child_name span {
		padding-right: 0;
		font-size: 1.5rem;
	}

	/* ---------------------------------- ボタンナビ */

	.nav_btn {
		width: 100%;
		margin: 3rem 0 0;
	}

	.btn_link {
		width: 50%;
		padding: 2.5rem 1rem;
	}

	.btn_link._recruit {
		border-radius: var(--radius-3) 0 0 var(--radius-3);
	}

	.btn_link._contact {
		border-radius: 0 var(--radius-3) var(--radius-3) 0;
	}
}

/*/////////////////////////////////////////////////////////////////////////////////


// ページヘッド //
	  

/////////////////////////////////////////////////////////////////////////////////*/

.page-head {
	border-bottom: 1px solid var(--color-border);
	overflow: hidden;
	position: relative;
	line-height: 1;
	padding: 16rem 0 7rem;
}

.page-head__inner {
	margin: 0 auto;
	max-width: 160rem;
	min-width: 102.4rem;
	padding: 0 5vw;
	width: 100%;
}

/* =========================================== ページタイトル */
.page-head__inner .title {
	display: grid;
	row-gap: 2.5rem;
	font-weight: 600;
}

.page-head__inner .title ._en {
	color: var(--color-sub);
	font-size: 2rem;
	letter-spacing: 0em;
	margin: 0 0 0 0.5rem;
}

.page-head__inner .title ._jp {
	font-size: 4.6rem;
	letter-spacing: 0.05em;
}

/* =========================================== パンくずリスト */
.breadcrumb {
	width: 100%;
	margin: 5rem 0 0 0.5rem;
}

.breadcrumb-list {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.breadcrumb-list li {
	display: flex;
	align-items: center;
	position: relative;
	font-size: 1.2rem;
	font-weight: 500;
	color: var(--color-main);
}

.breadcrumb-list li:not(:first-child) {
	padding-left: 1.8rem;
}

.breadcrumb-list li:not(:first-child)::before {
	content: "";
	position: absolute;
	top: 50%;
	translate: 0 -50%;
	left: 1px;
	width: 1rem;
	height: 0.01em;
	background: var(--color-main);
}

.breadcrumb-list li:not(:last-of-type) a {
	color: var(--color-black);
	transition: color 0.3s ease;
}

.breadcrumb-list li:not(:first-child) a:before {
	background-color: var(--color-black);
}

.breadcrumb-list li a:hover {
	color: var(--color-main);
}

/*/////////////////////////////////////////////////////////////////////////////////


// トップページ //
	  

/////////////////////////////////////////////////////////////////////////////////*/

/* =========================================== メインビジュアル */

.p-mv {
	position: relative;
	margin-top: 12rem;
}

.p-mv .swiper-wrapper {
	transition-timing-function: linear;
}

.p-mv .swiper-container {
	height: 300px;
}

/* .p-mv .swiper-slide {
	padding: 0 2rem;
} */

.p-mv .swiper-slide img {
	border-radius: var(--radius-3);
	overflow: hidden;
}

.p-mv__copy {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 1rem;
	width: 85%;
	margin-inline: auto;
	padding: 6rem 0;
}

.p-mv__copy p {
	font-size: 4rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	line-height: 1.5;
}

.p-mv__copy .blue {
	color: var(--color-main);
}

/* =========================================== クラスタについて */

.top_sec_head {
	padding: 15rem 0 12rem;
}

.top_about {
	display: flex;
	justify-content: space-between;
	gap: 6rem;
}

.top_about_box {
	width: 55%;
}

.top_about_box:nth-of-type(2) {
	width: 45%;
}

.top_about_catch {
	font-size: 4.2rem;
	font-weight: 700;
	font-feature-settings: "palt";
}

.top_about_lead {
	font-size: 2.4rem;
	font-weight: 700;
	color: var(--color-main);
	margin-top: 1rem;
}

.top_about_note {
	font-weight: 500;
	line-height: 2;
	margin: 2.5rem 0 3rem;
}

/* ---------------------------------- （再利用）ボタン */

.link_button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 2rem;
	background-color: var(--color-main);
	border: 2px solid transparent;
	border-radius: var(--radius-3);
	min-width: 23rem;
	min-height: 6rem;
	transition: all 0.3s cubic-bezier(0.79, 0.17, 0.15, 0.96);
}

.link_button_name {
	font-weight: 500;
	color: var(--color-white);
}

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

.link_button_icon svg {
	width: 1rem;
	height: 1lh;
	fill: var(--color-white);
	transition: fill 0.3s cubic-bezier(0.79, 0.17, 0.15, 0.96);
}

.link_button:hover {
	background-color: var(--color-white);
	border-color: var(--color-border);
	box-shadow: 0 0 10px #0000001a;
}
.link_button:hover .link_button_name {
	color: var(--color-main);
}
.link_button:hover .link_button_icon svg {
	fill: var(--color-main);
}

.top_sec_body {
	padding: 12rem 0;
}

/*（再利用）見出し */
.top_ttl_head {
	font-size: 2.4rem;
	font-weight: 700;
	line-height: 1.25;
	color: var(--color-main);
}

.top_ttl {
	position: relative;
	font-size: 4rem;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0;
	padding-bottom: 4rem;
	margin: 1rem 0 4rem;
}

.top_ttl::after {
	content: "";
	background: linear-gradient(
		90deg,
		var(--color-main) 0 50%,
		var(--color-acc) 50% 100%
	);
	width: 6rem;
	height: 4px;
	position: absolute;
	bottom: 0;
	left: 0;
	border-radius: var(--radius-4);
}

.top_ttl_lead {
	font-weight: 500;
	margin-bottom: 4rem;
}

/* =========================================== クラスタのサービス */

.ttl_h3 {
	position: relative;
	font-size: 2.4rem;
	font-weight: 700;
	color: var(--color-main);
	line-height: 1.5;
	border-bottom: 1px solid var(--color-border);
	margin-bottom: 4rem;
	padding-bottom: 2.5rem;
}

.ttl_h3::before {
	content: "";
	background: linear-gradient(
		90deg,
		var(--color-main) 0 50%,
		var(--color-acc) 50% 100%
	);
	width: 4rem;
	height: 0.2rem;
	position: absolute;
	bottom: -1px;
	left: 0;
	border-radius: var(--radius-4);
}

.ttl_h3_lead {
	margin-bottom: 4rem;
}

.ttl_h4 {
	letter-spacing: 0;
	margin: 0 0 32px;
	font-size: 20px;
	font-weight: 700;
	line-height: 150%;
	color: var(--color-main);
}

.Section01_agencySection01__h4__xgxz6 {
	color: #0058a2;
}

/* ---------------------------------- グループホーム */

.top_gh_list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2.5rem;
	margin-bottom: 6.5rem;
}

.top_gh_link {
	background-color: #fff;
	border-radius: var(--radius-3);
	display: flex;
	flex-direction: column;
	position: relative;
	overflow: hidden;
	box-shadow: 0 5px 30px #0000000d;
}
.top_gh_image {
	position: relative;
	aspect-ratio: 16 / 11;
	max-width: 600px;
	overflow: hidden;
}

.top_gh_image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.3s cubic-bezier(0.29, 0.65, 0.62, 1);
}

.top_gh_link:hover img {
	transform: scale(1.1);
}

.top_gh_text {
	padding: 3rem 3rem 4rem;
}

.top_gh_name {
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
	font-size: 2.4rem;
	font-weight: 700;
	color: var(--color-main);
}

.top_gh_name span {
	font-size: 1.8rem;
	font-weight: 500;
	letter-spacing: 0;
	padding-right: 1rem;
	color: var(--color-black);
}

.top_gh_note {
	font-size: 1.5rem;
	margin-top: 2rem;
}

.top_link_icon {
	display: flex;
	justify-content: center;
	margin-top: 3rem;
}

.top_link_icon .icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 3rem;
	height: 3rem;
	background-color: var(--color-main);
	border: 2px solid transparent;
	border-radius: var(--radius-1);
	transition: all 0.3s cubic-bezier(0.79, 0.17, 0.15, 0.96);
}

.top_link_icon .icon svg {
	width: 1rem;
	height: 1lh;
	fill: var(--color-white);
}

/* ホバー */
.top_gh_link:hover .top_link_icon .icon {
	background-color: var(--color-white);
	border-color: var(--color-border);
	box-shadow: 0 0 10px #0000001a;
}

.top_gh_link:hover .top_link_icon .icon svg {
	fill: var(--color-main);
}

/* ---------------------------------- 居宅介護支援
 *（carecenter 略→ cc）
 */

.top_cc_list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2.5rem;
	margin-top: 4rem;
}

.top_cc_item {
	background-color: #fff;
	border-radius: var(--radius-3);
	display: flex;
	flex-direction: column;
	gap: 2.2rem;
	position: relative;
	padding: 3.5rem 4rem;
	box-shadow: 0 5px 30px #0000000d;
	/* box-shadow: 0 5px 30px #00000012; */
}

.top_cc_head {
	display: flex;
	align-items: center;
	gap: 3rem;
}

.top_cc_name {
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
	font-size: 2.2rem;
	font-weight: 700;
	color: var(--color-main);
}

.top_cc_name span {
	font-size: 1.6rem;
	font-weight: 500;
	letter-spacing: 0;
	padding-right: 0.8rem;
	margin-top: 0.3rem;
	color: var(--color-black);
}

.top_cc_note {
	font-size: 1.5rem;
}

.top_cc_link {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1.5rem;
	margin-top: 3.5rem;
}

.top_cc_link .name {
	font-weight: 600;
	color: var(--color-main);
	border-bottom: 1px solid transparent;
	transition: border-color 0.3s;
}

.top_cc_link .icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 3rem;
	height: 3rem;
	background-color: var(--color-main);
	border: 2px solid transparent;
	border-radius: var(--radius-1);
	transition: all 0.3s cubic-bezier(0.79, 0.17, 0.15, 0.96);
}

.top_cc_link .icon svg {
	width: 1rem;
	height: 1lh;
	fill: var(--color-white);
}

/* ホバー */
.top_cc_link:hover .name {
	border-color: var(--color-main);
}

.top_cc_link:hover .icon {
	background-color: var(--color-white);
	border-color: var(--color-border);
	box-shadow: 0 0 10px #0000001a;
}

.top_cc_link:hover .icon svg {
	fill: var(--color-main);
}

/* =========================================== 採用情報 */

.sec_inner_bg {
	padding: 12rem 1.5vw;
}

.inner_bg {
	background-color: var(--color-bg-deep);
	border-radius: var(--radius-3);
	margin: 0 auto;
	max-width: 141.6rem;
	position: relative;
	padding: 12rem 5vw;
	width: 100%;
}
@media (max-width: 1440px) {
	.inner_bg {
		padding: 12rem 3.5vw;
	}
}

.flex_box {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}

/* ---------------------------------- 先輩の声 */

/* 見出し */
.top_voice_ttl {
	font-size: 2rem;
	font-weight: 700;
	color: var(--color-main);
	text-align: center;
	padding-top: 4rem;
	margin-bottom: 3rem;
	border-top: 1px solid var(--color-white);
}

/* スライダー 本体 */
.top_voice_wrap {
	position: relative;
}

.top_voice {
	overflow: hidden;
}

.top_voice .swiper-slide {
	display: flex;
	gap: 2rem;
}

.top_voice .swiper-slide div {
	background-color: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-3);
	position: relative;
	padding: 2.5rem 4rem;
	width: 33.33333%;
	height: 20.5rem;
	box-shadow: 0 5px 30px #0000000d;
}

.top_voice_name {
	display: flex;
	justify-content: center;
	font-weight: 700;
	color: var(--color-main);
	margin-bottom: 1rem;
}

/* スライダー ナビボタン */
.top_voice_wrap .swiper-button-next,
.top_voice_wrap .swiper-button-prev {
	position: absolute;
	top: 50%;
	background-color: var(--color-main);
	width: 3rem;
	height: 3rem;
	border-radius: var(--radius-1);
}

.top_voice_wrap .swiper-button-next {
	right: -1.5rem; /* ボタンを右端にくっつける */
}

.top_voice_wrap .swiper-button-prev {
	left: -1.5rem; /* ボタンを左端にくっつける */
}

.top_voice_wrap .swiper-button-next::after {
	content: "→"; /* ボタンの矢印変更 */
	color: var(--color-white);
	font-size: 1rem;
}

.top_voice_wrap .swiper-button-prev::after {
	content: "←"; /* ボタンの矢印変更 */
	color: var(--color-white);
	font-size: 1rem;
}

/* =========================================== お知らせ */

.top_sec_foot {
	padding: 12rem 0 15rem;
}

.top_news {
	display: flex;
}

.top_news_head {
	width: 35%;
	padding-right: 2.15517%;
}

.top_news_body {
	width: 65%;
	margin-top: 3rem;
}

/*/////////////////////////////////////////////////////////////////////////////////


// 会社概要 //
	  

/////////////////////////////////////////////////////////////////////////////////*/

/* =========================================== サービス */

.service {
	position: relative;
	margin-top: 6rem;
}

.service_list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 4rem;
}

.service_item {
	border: 1px solid var(--color-border);
	border-radius: var(--radius-4);
	background-color: var(--color-white);
	padding: 4rem;
}

.service_ttl {
	display: flex;
	align-items: center;
	gap: 2rem;
}

.service_ttl .name {
	font-size: 2rem;
	font-weight: 500;
}

.service_ttl .icon {
	display: flex;
	flex: 0 0 auto;
	align-items: center;
	justify-content: center;
	width: 6rem;
	aspect-ratio: 1 / 1;
	background-color: var(--color-bg);
	border: 1px solid transparent;
	border-radius: var(--radius-1);
}

.service_ttl .img {
	width: 3rem;
}

.service_note {
	margin: 2rem 0 4rem;
}

.service_nav {
	position: relative;
	margin: 0 1rem;
}

.service_nav .list {
	display: grid;
	grid-template-columns: 1fr;
	grid-template-rows: repeat(3, 1fr);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-4);
}

.service_nav .item:not(:first-of-type) {
	border-top: 1px solid var(--color-border);
}

/* 再利用リンク */
a.link {
	display: flex;
	align-items: center;
}
a.link .name {
	color: var(--color-main);
	border-bottom: 1px solid transparent;
	transition: border-color 0.3s;
}
a.link:hover .name {
	border-bottom: 1px solid var(--color-main);
}
a.link .icon {
	display: flex;
	justify-content: center;
	align-items: center;
}

a.link .icon svg {
	width: 1rem;
	height: 1rem;
	fill: var(--color-main);
	transition: fill 0.3s cubic-bezier(0.79, 0.17, 0.15, 0.96);
	z-index: 2;
}

a.link[target="_blank"] svg {
	transform: rotate(-45deg);
	height: 1lh;
	margin: -0.2rem 0 0 1rem;
}

.service_nav .link {
	justify-content: space-between;
	padding: 2rem 2.5rem;
	font-size: 1.5rem;
	font-weight: 600;
	line-height: 1.4;
}

/* =========================================== 会社概要 */

.outline {
	position: relative;
	margin-top: 6rem;
}

.outline dl {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
}

.outline dt {
	width: 20%;
	font-weight: normal;
}

.outline dd {
	width: 80%;
}

.outline :is(dt, dd) {
	padding: 2.5rem 0;
	border-bottom: 1px solid var(--color-border);
}

.outline :is(dt:first-of-type, dd:first-of-type) {
	padding-top: 0;
}

.outline .list {
	display: grid;
	gap: 2rem;
}

.outline .list span {
	display: block;
	color: var(--color-main);
	font-weight: 500;
}

/*/////////////////////////////////////////////////////////////////////////////////


// グループホーム //
	  

/////////////////////////////////////////////////////////////////////////////////*/

/* =========================================== 施設の概要 */

.ghData {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 7rem;
	margin-top: 4rem;
}

.ghData_box {
	width: 50%;
}

.ghData_box.-left {
	order: 1;
}

.ghData_box.-right {
	order: 2;
	border-radius: var(--radius-3);
	overflow: hidden;
}

.ghData_box dl {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
}

.ghData_box dt {
	width: 22%;
	font-weight: normal;
}

.ghData_box dd {
	width: 78%;
	font-weight: 500;
}

.ghData_box :is(dt, dd) {
	padding: 1.5rem 0;
	border-bottom: 1px solid var(--color-border);
}

.ghData_box :is(dt:first-of-type, dd:first-of-type) {
	padding-top: 0;
}

.ghData_box .icon_insta img {
	width: 11rem;
}

/* ---------------------------------- 利用条件 */

.ghUse {
	margin-top: 8rem;
}

.ghUse_list {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
	margin-top: 5rem;
}

.ghUse_item {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1.2rem;
	position: relative;
	border: 1px solid var(--color-border);
	border-radius: 0.3125rem;
	font-size: 1.5rem;
	font-weight: 500;
	padding: 3rem 3rem 2rem;
	background-color: var(--color-bg);
}

.ghUse_item span {
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: -1.6rem;
	background-color: var(--color-blue-400);
	width: 3rem;
	height: 3rem;
	color: var(--color-white);
	border-radius: 100vw;
	font-weight: 600;
}

/* =========================================== 利用料金 */

.title_h3 {
	position: relative;
	font-size: 2.4rem;
	font-weight: 700;
	color: var(--color-main);
	line-height: 1.5;
	border-bottom: 1px solid var(--color-border);
	padding-bottom: 2rem;
	margin: 6rem 0 4rem;
}

.title_h3::before {
	content: "";
	background: linear-gradient(
		90deg,
		var(--color-main) 0 50%,
		var(--color-acc) 50% 100%
	);
	width: 4rem;
	height: 0.2rem;
	position: absolute;
	bottom: -1px;
	left: 0;
	border-radius: var(--radius-4);
}

.title_h4 {
	font-size: 2rem;
	font-weight: 600;
	color: var(--color-main);
	text-align: center;
}

.title_h4.-lg {
	font-size: 2.4rem;
	font-feature-settings: "palt";
}

/* ---------------------------------- 初期・保険対象外月額 */

.fee_list {
	display: grid;
	gap: 2rem;
	margin-top: 3.5rem;
}

.fee_list.-column {
	grid-template-columns: repeat(4, 1fr);
}

.fee_item {
	position: relative;
	border: 2px solid var(--color-border);
	border-radius: var(--radius-4);
}

/* ＋=アイコン */
.fee_item.-col::before {
	content: "+";
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: -3.3rem;
	background-color: var(--color-white);
	border: 2px solid var(--color-border);
	width: 4.3rem;
	height: 4.2rem;
	font-weight: 600;
	font-size: 2.8rem;
	color: var(--color-main);
	border-radius: var(--radius-1);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1;
}

.fee_item.-col:nth-of-type(3)::before {
	content: "=";
}

.fee_item.-col:nth-of-type(4)::before {
	display: none;
}

.fee_item_head {
	background-color: var(--color-bg-deep);
}

.fee_item_head .name {
	padding: 1.5rem;
	font-weight: 500;
	text-align: center;
}

.fee_item_body {
	padding: 3rem 2rem;
}

.fee_item_body .num {
	font-weight: 500;
	text-align: center;
	font-size: 1.4rem;
	color: var(--color-main);
}

.fee_item_body .num span {
	font-size: 4rem;
	line-height: 1;
	margin-right: 0.5rem;
}

.fee_item_body .note {
	font-size: 1.4rem;
	text-align: center;
	color: var(--color-light);
	line-height: 1.6;
	font-feature-settings: "palt";
	margin-top: 1.5rem;
}

/* 脚注 */
.foot_note {
	font-size: 1.5rem;
	font-feature-settings: "palt";
	line-height: 1.6;
	margin: 2.5rem 0 0 0.5rem;
}

.foot_note.-n2 {
	margin: 0.2rem 0 0 0.5rem;
}

/* 脚注（囲みあり）*/
.foot_note_box {
	border: 1px solid var(--color-border);
	border-radius: var(--radius-4);
	padding: 2rem;
	margin-top: 3rem;
}

.foot_note_box p {
	font-size: 1.5rem;
	font-feature-settings: "palt";
	line-height: 1.6;
	margin-bottom: 0.5rem;
}

.foot_note_box p:last-child {
	margin-bottom: 0;
}

/* ---------------------------------- 介護度別合計 */

/* ラッパー */
.total {
	background-color: var(--color-white);
	padding: 3.9rem;
	border: 1px solid transparent;
	border-radius: var(--radius-4);
	margin-top: 4rem;
}

/* カラム */
.total_column {
	display: flex;
}

.total_head {
	display: flex;
	align-items: center;
	margin-right: 4rem;
	width: 25%;
}

.total_head.-bg {
	background-color: var(--color-bg-deep);
	border: 1px solid transparent;
	border-radius: var(--radius-4);
}

.total_head_inner {
	width: 100%;
	text-align: center;
	line-height: 1.5;
}

/* セレクト要素 */
.total_head_inner label {
	font-weight: 500;
}

.total .form_select {
	position: relative;
	width: calc(100% - 25%);
	border: 2px solid var(--color-border);
	border-radius: var(--radius-4);
}

.total select {
	background: var(--color-white);
}

/* 合計額の要素 */
.total_name {
	display: flex;
	align-items: center;
	font-weight: 500;
	line-height: 1.4;
	margin-bottom: 4rem;
	position: relative;
}

.total_name .level {
	color: var(--color-white);
	font-size: 1.5rem;
	padding: 0.4rem 1.8rem;
	margin-right: 0.8rem;
	background-color: var(--color-main);
	border: 1px solid transparent;
	border-radius: var(--radius-2);
}

.total_name .date {
	position: absolute;
	top: 0.5rem;
	right: 0;
	font-size: 1.4rem;
	font-weight: 400;
	color: var(--color-light);
}

.total_head_inner .note {
	font-size: 1.5rem;
	font-weight: 500;
}

.total_head_inner .num {
	font-size: 2.4rem;
	font-weight: 700;
	color: var(--color-main);
	padding-top: 2rem;
}

.total_head_inner .num span {
	font-size: 1.5rem;
	font-weight: 500;
	padding-left: 0.5rem;
}

.total_table-wrapper {
	width: calc(100% - 25%);
}

.total_table {
	width: 100%;
}

.total_table :is(th, td) {
	position: relative;
	text-align: center;
	vertical-align: middle;
}

.total_table th {
	font-size: 1.5rem;
	font-weight: 500;
	padding-bottom: 1rem;
	font-feature-settings: "palt";
}

.total_table thead th:first-child,
.total_table tbody th {
	padding-right: 1rem;
}

.total_table td {
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--color-main);
	padding-bottom: 1rem;
}

.total_table :is(th.-last, td.-last) {
	padding-bottom: 0;
}

.total_table .box {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 5rem;
	padding: 1rem;
	background-color: var(--color-bg-deep);
	border: 1px solid transparent;
}

.total_table .box.cell_1 {
	border-radius: var(--radius-4);
}

.total_table .box.cell_2 {
	border-radius: var(--radius-4) 0 0 var(--radius-4);
}

.total_table .box.cell_3 {
	border-radius: 0 var(--radius-4) var(--radius-4) 0;
}

.total_table .box.cell_3 span {
	background-color: var(--color-white);
	border-radius: var(--radius-4);
	width: 100%;
}

/* =========================================== アクセスマップ */

.gMap {
	position: relative;
	width: 100%;
	padding-top: 42.85%;
	height: 0;
	filter: grayscale(0.5);
	margin-top: 6rem;
}

.gMap iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: var(--radius-3);
}

/* =========================================== 関連書類 */

.doc_list {
	display: grid;
	gap: 2.5rem;
}

.doc_list._col4 {
	grid-template-columns: repeat(4, 1fr);
}

.doc_list._col3 {
	grid-template-columns: repeat(3, 1fr);
}

.doc_list._col2 {
	grid-template-columns: repeat(2, 1fr);
}

.doc_list._col1 {
	grid-template-columns: 1fr;
	gap: 0;
}

/* 再利用ボタンリンク */
a.btn {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 2rem;
	border: 2px solid var(--color-border);
	border-radius: var(--radius-3);
	margin: 5rem auto 0;
	transition: 0.3s;
}
a.btn .name {
	color: var(--color-main);
	font-size: 1.7rem;
	font-weight: 500;
	border-bottom: 1px solid transparent;
	transition: 0.3s;
}

a.btn .icon {
	display: flex;
	justify-content: center;
	align-items: center;
}

a.btn .icon svg {
	transform: rotate(-45deg);
	width: 1.2rem;
	height: 1lh;
	fill: var(--color-main);
	margin: -0.2rem 0 0 1rem;
	transition: 0.3s;
}

a.btn:hover {
	background-color: var(--color-main);
	border: 2px solid var(--color-main);
}

a.btn:hover .name {
	color: var(--color-white);
}

a.btn:hover .icon svg {
	fill: var(--color-white);
}


/*/////////////////////////////////////////////////////////////////////////////////


// 居宅介護支援 //
	  

/////////////////////////////////////////////////////////////////////////////////*/

/* carecenter なので cc
/* =========================================== イントロ */

.ccIntro {
	position: relative;
}

.ccIntro::after {
	content: "";
	display: block;
	background: linear-gradient(0deg, var(--color-sub), var(--color-blue-200));
	height: calc(tan(60deg) * 7rem / 2);
	clip-path: polygon(0 0, 100% 0, 50% 100%);
	width: 14rem;
	margin: 6rem auto 0;
}

/* ----------------------------------  見出し */

.ccIntro_ttl {
	text-align: center;
}

.ccIntro_ttl .sm {
	font-size: 2rem;
	font-weight: 500;
	color: var(--color-main);
	line-height: 1.6;
	letter-spacing: 0.04rem;
}

.ccIntro_ttl .lg {
	display: block;
	font-size: 3.6rem;
	font-weight: 600;
	line-height: 1.5;
	letter-spacing: 0.05rem;
	margin: 2rem 0 0 0;
}

/* ----------------------------------  リスト */

.ccIntro_list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 3rem;
	margin: 8rem 0 0 0;
}

.ccIntro_item {
	display: flex;
	gap: 20px;
	align-items: center;
	padding: 3.9rem;
	font-weight: 500;
	background-color: var(--color-bg);
	border: 1px solid transparent;
	border-radius: var(--radius-4);
}

.ccIntro_item .icon {
	display: block;
	flex: 0 0 auto;
	width: 6rem;
	overflow: hidden;
	background-color: var(--color-white);
	border: 2px solid var(--color-main);
	border-radius: var(--radius-1);
}

.ccIntro_item .icon img {
	display: block;
	width: 100%;
}

.ccIntro_item .note {
	position: relative;
}

/* =========================================== ドキュメント */

.ccDoc {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 8rem;
	background-color: var(--color-white);
	border: 1px solid transparent;
	border-radius: var(--radius-4);
	padding: 4rem;
	margin-top: 6rem;
}

/* ----------------------------------  左 */

.ccDoc_head {
	max-width: 40rem;
	padding-top: 0.5rem;
}

.ccDoc_head .name {
	font-size: 2.4rem;
	font-weight: 600;
	color: var(--color-main);
	margin-bottom: 2rem;
}

.ccDoc_head .note {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.ccDoc_head .nameS {
	font-size: 2rem;
	font-weight: 600;
	color: var(--color-main);
	line-height: 1.6;
	margin-top: 3rem;
}

/* ----------------------------------  右 */

.ccDoc_boby {
	position: relative;
}

.ccDoc_boby .list {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.ccDoc_boby .item {
	padding: 3rem;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-4);
}

.ccDoc_boby .heading {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	font-size: 2rem;
	font-weight: 600;
}

.ccDoc_boby .heading span {
	display: flex;
	flex: 0 0 auto;
	align-items: center;
	justify-content: center;
	width: 3rem;
	height: 3rem;
	font-size: 1.4rem;
	color: var(--color-white);
	background-color: var(--color-black);
	border: 1px solid transparent;
	border-radius: var(--radius-1);
}

.ccDoc_boby .note {
	margin-top: 1.5rem;
}

/* =========================================== アクセスマップ */

.access-map {
	position: relative;
	width: 100%;
	padding-top: 42.85%;
	height: 0;
	margin: 6rem 0 0 0;
}

.access-map iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 0.625rem;
}

/* =========================================== 事業所案内 */

/* ----------------------------------  ページ内リンク */

.page-carecenter .nav_inside {
	padding-top: 7rem;
}

/* 以下、再利用 ▼ */
.nav_inside .list {
	display: grid;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-4);
}

.nav_inside .list.-col3 {
	grid-template-columns: repeat(3, 1fr);
}

.nav_inside .list.-col4 {
	grid-template-columns: repeat(4, 1fr);
}

.nav_inside .item:not(:last-child) {
	border-right: 1px solid var(--color-border);
}

.nav_inside .link {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 2rem;
	color: var(--color-main);
	font-size: 1.5rem;
	font-weight: 500;
	line-height: 1.4;
}

.nav_inside svg {
	transform: rotate(90deg);
}
/* ここまで ▲ */

/* ---------------------------------- 事業所 */

.ccOffice {
	position: relative;
	/* margin-top: 8rem !important; */
}

.ccOffice_name {
	display: flex;
	align-items: center;
	gap: 2rem;
	line-height: 1.4;
}

.ccOffice_name .place {
	display: flex;
	align-items: center;
	justify-content: center;
	width: fit-content;
	background-color: var(--color-main);
	border: 1px solid transparent;
	padding: 0.8rem 1.5rem;
	border-radius: var(--radius-2);
	font-size: 1.4rem;
	font-weight: 500;
	color: var(--color-white);
	width: 15rem;
}

.ccOffice_name .name {
	display: flex;
	align-items: center;
	font-size: 2.6rem;
	font-weight: 600;
}

.ccOffice_name .name span {
	font-size: 2.2rem;
	padding: 0.2rem 0.5rem 0 0;
}

.ccOffice_data {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 8rem;
	margin-top: 6rem;
}

.ccOffice_data .box {
	position: relative;
}

.ccOffice_data .box.-left {
	order: 1;
	width: 55%;
}

.ccOffice_data .box dl {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
}

.ccOffice_data .box dt {
	width: 27%;
	font-weight: normal;
}

.ccOffice_data .box dd {
	width: 73%;
	font-weight: 500;
}

.ccOffice_data .box :is(dt, dd) {
	padding: 1.5rem 0;
	border-bottom: 1px solid var(--color-border);
}

.ccOffice_data .box :is(dt:first-of-type, dd:first-of-type) {
	padding-top: 0;
}

.ccOffice_data .box.-right {
	order: 2;
	border-radius: var(--radius-3);
	overflow: hidden;
	width: 45%;
}
.ccOffice_data .box.-right .gMap {
	padding-top: 76.85%;
	margin-top: 0;
}

/* .care_office .list {
	display: grid;
	gap: 7rem;
}

.care_office .item {
	border-bottom: 1px solid var(--color-border);
	padding-bottom: 8rem;
}

.care_office .item:last-child {
	border-bottom: 1px solid transparent;
	padding-bottom: 0;
}

.care_office .inner {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 8rem;
}

.care_office .innerL {
	width: 55%;
}

.care_office .innerR {
	width: 45%;
}

.care_office .heading {
	position: relative;
}

.care_office .place {
	display: flex;
	align-items: center;
	width: fit-content;
	background-color: var(--color-main);
	border: 1px solid transparent;
	padding: 0.3rem 1.4rem 0.4rem 1.4rem;
	border-radius: var(--radius-2);
	font-size: 1.4rem;
	font-weight: 500;
	color: var(--color-white);
	line-height: 1.4;
}

.care_office .name {
	display: flex;
	align-items: center;
	font-size: var(--fs-h4);
	font-weight: 600;
	line-height: 1.6;
	margin-top: 2rem;
}

.care_office .name span {
	padding-right: 0.5rem;
	margin-top: 0.2rem;
	font-size: var(--fs-h5);
	letter-spacing: 0.04em;
}

.care_office .table {
	width: 100%;
	margin-top: 3rem;
}

.care_office .table :is(th, td) {
	border-bottom: 1px solid var(--color-border);
	padding: 2rem;
	vertical-align: middle;
}

.care_office .table tr:last-child :is(th, td) {
	border-bottom: 1px solid transparent;
}

.care_office .table th {
	width: 14rem;
	font-weight: 600;
	padding-left: 0.5rem;
}

.care_office .access-map {
	filter: grayscale(0.5);
	padding-top: 90%;
	margin: 0;
} */

/*/////////////////////////////////////////////////////////////////////////////////


// 採用情報 //
	  

/////////////////////////////////////////////////////////////////////////////////*/

/* ページ内リンクの余白調整 */
.page-recruit .target {
	margin-top: 0 !important;
}

/* =========================================== リード */

.recTtl {
	display: flex;
	align-items: center;
	margin-bottom: 5rem;
}

.recTtl :is(span, p) {
	padding: 0.7rem 2.5rem;
}

.recTtl span {
	font-weight: 500;
	color: var(--color-main);
	background-color: var(--color-bg);
	border-radius: var(--radius-4) 0 0 var(--radius-4);
}

.recTtl p {
	font-weight: 600;
	color: var(--color-white);
	background-color: var(--color-main);
	border-radius: 0 var(--radius-4) var(--radius-4) 0;
}

.recLead {
	font-size: 3rem;
	font-weight: 600;
	margin-bottom: 2rem;
}

.recLead span {
	color: var(--color-main);
	padding-right: 0.5rem;
}

.recLead_note {
	font-weight: 500;
}

/* ----------------------------------  リンクナビ */

.page-recruit .nav_inside {
	padding-top: 5rem;
}

/* =========================================== 働く環境 */

.recWork_list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: repeat(2, 1fr);
	gap: 2rem;
	margin-top: 6rem;
}

.recWork_item {
	display: flex;
	flex-direction: column;
	padding: 3rem 4rem;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-4);
	background-color: var(--color-white);
}

.recWork_item .heading {
	display: flex;
	align-items: center;
	gap: 2rem;
}

.recWork_item .name {
	font-size: 2rem;
	font-weight: 600;
}

.recWork_item .icon {
	display: flex;
	flex: 0 0 auto;
	align-items: center;
	justify-content: center;
	width: 6rem;
	aspect-ratio: 1 / 1;
	background-color: var(--color-bg);
	border: 1px solid transparent;
	border-radius: var(--radius-1);
}

.recWork_item .icon svg {
	width: 3.4rem;
	height: auto;
	fill: var(--color-main);
	transition: fill 0.3s cubic-bezier(0.79, 0.17, 0.15, 0.96);
	z-index: 2;
}

.recWork_item .note {
	padding: 2.3rem 1rem 0;
}

.recWork_item .note p {
	position: relative;
	font-weight: 500;
	line-height: 1.6;
	padding-left: 1.5rem;
	margin-bottom: 0.5rem;
}

.recWork_item .note p:last-of-type {
	margin-bottom: 0;
}

.recWork_item .note p::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.7rem;
	width: 0.7rem;
	height: 0.7rem;
	background-color: var(--color-main);
	border-radius: 100vw;
}

.recWork_item .note span {
	font-weight: 700;
	color: var(--color-main);
	padding: 0 0.3rem;
}

/* =========================================== スタッフの一日 */

/* ----------------------------------  タブ */

.tab {
	margin-top: 6rem;
}

.tab_list {
	display: flex;
	justify-content: space-between;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-4) var(--radius-4) 0 0;
	overflow: hidden;
}

.tab_item {
	width: 50%;
	padding: 1.5rem 2rem;
	text-align: center;
	font-size: 1.8rem;
	font-weight: 600;
	color: var(--color-main);
	background-color: var(--color-white);
	cursor: pointer;
	transition: 0.4s ease-in-out;
}

.tab_item:not(:last-child) {
	border-right: 1px solid var(--color-border);
}

/* タブをクリックした時 */
.tab_item.active {
	color: var(--color-white);
	background-color: var(--color-sub);
}

/* パネル */
.panel_list {
	margin-top: 0.2rem;
}
.panel_item {
	display: none;
	width: 100%;
	padding: 8rem 10rem 7rem;
	background-color: var(--color-white);
	border-style: solid;
	border-color: var(--color-border);
	border-width: 0 1px 1px 1px;

	border-radius: 0 0 var(--radius-4) var(--radius-4);
}
.panel_item.active {
	display: block;
	animation: panel-show 0.9s ease-in-out forwards;
}

/* パネル切り替えのアニメーション */
@keyframes panel-show {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

/* ----------------------------------  コンテンツ */

.recDay {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 10rem;
}

.recDay_box {
	width: 50%;
}

.recDay_ttl {
	display: flex;
	align-items: center;
	gap: 1.2rem;
	line-height: 1.5;
	color: var(--color-main);
	font-weight: 600;
	margin-bottom: 6rem;
}

.recDay_ttl span {
	font-size: 1.8rem;
	font-weight: 700;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-2);
	background-color: var(--color-bg);
	padding: 0.2rem 2rem;
}

.recDay_item {
	display: flex;
	position: relative;
	align-items: flex-start;
	padding-bottom: 5rem;
	margin-left: 2rem;
}

.recDay_item:last-of-type {
	padding-bottom: 0;
}

.recDay_item::before {
	content: "";
	position: absolute;
	top: 0;
	left: 10.8rem;
	width: 1px;
	height: 100%;
	background-color: var(--color-border);
}

.recDay_item .time {
	flex: 0 0 9.8rem;
	padding-right: 4.6rem;
	font-size: 1.8rem;
	font-weight: 500;
	line-height: 1.4;
	text-align: right;
}

.recDay_item .body {
	position: relative;
	flex: 0 0 calc(100% - 9.8rem);
	padding-left: 6.6rem;
}

.recDay_item .body::before {
	content: "";
	position: absolute;
	top: 0.2rem;
	left: 0;
	width: 2.1rem;
	height: 2.1rem;
	background-image: url("data:image/svg+xml;charset=utf8,%0A%3Csvg%20width%3D%2221%22%20height%3D%2221%22%20viewBox%3D%220%200%2021%2021%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Ccircle%20cx%3D%2210.5%22%20cy%3D%2210.5%22%20r%3D%2210.5%22%20fill%3D%22%23FFFFFF%22%2F%3E%3Ccircle%20cx%3D%2210.5%22%20cy%3D%2210.5%22%20r%3D%224.5%22%20fill%3D%22%231d7aac%22%20stroke%3D%22%231d7aac%22%2F%3E%3C%2Fsvg%3E");
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

.recDay_item:first-of-type .body:before {
	top: -0.2rem;
	left: -0.4rem;
	width: 3rem;
	height: 3rem;
}

.recDay_item:last-of-type .body:before {
	top: -2px;
	left: -4px;
	width: 30px;
	height: 30px;
}

.recDay_item .name {
	font-size: 2.2rem;
	font-weight: 500;
	line-height: 1.4;
	margin-bottom: 1.5rem;
}

.recDay_item:first-of-type .name {
	margin-top: -0.2rem;
}

.recDay_item:last-of-type .name {
	margin-bottom: 0;
}

.recDay_item .note {
	position: relative;
}

.recDay_item .text {
	padding: 1.5rem 0 0 1.5rem;
}

/* =========================================== 先輩の声 */

.recVoice {
	margin-top: 6rem;
}

.recVoice_list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 5rem 4rem;
	/* counter-set: spirit; */
}

.recVoice_item {
	background-color: var(--color-bg);
	text-align: center;
	display: flex;
	position: relative;
	padding: 4rem 2.5rem 2.5rem;
	border-radius: var(--radius-3);
	/* counter-increment: voice; */
}

.recVoice_item .name {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	top: -1.7rem;
	font-size: 1.8rem;
	font-weight: 600;
	color: var(--color-main);
	background-color: var(--color-white);
	padding: 0 1.5rem;
	border-radius: var(--radius-3);
}

/* .recVoice_item .name::before {
    content: counter(voice, decimal-leading-zero);
    color: var(--color-blue-400);
    margin-right: 5px;
    font-size: 20px;
} */

.recVoice_item .note {
	text-align: left;
}

/* =========================================== 募集要項 */

.recRequ {
	border: 2px solid var(--color-main);
	border-radius: var(--radius-4);
	padding: 9rem 10rem;
	margin-top: 6rem;
}

.recRequ dl {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
}

.recRequ :is(dt:first-of-type, dd:first-of-type) {
	padding-top: 0;
}

.recRequ :is(dt, dd) {
	padding: 2rem 0;
	border-bottom: 1px solid var(--color-border);
}

.recRequ dt {
	width: 20%;
	font-size: 1.7rem;
	font-weight: 600;
	color: var(--color-main);
}

.recRequ dd {
	width: 80%;
}

.recRequ .list {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.recRequ .item {
	position: relative;
	padding-left: 2rem;
}

.recRequ .item::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.8rem;
	width: 1rem;
	height: 1rem;
	background-color: var(--color-sub);
	border-radius: 0.3rem;
}

/* ============================================== フォームへボタン */

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

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

/* ----------------------------------  ボタン */
.recFoot_link {
	background-color: var(--color-main);
	border: 2px solid var(--color-main);
	border-radius: var(--radius-4);
	position: relative;
	z-index: 5;
}

.recFoot_link::before {
	background-color: var(--color-white);
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	transform: scaleX(0);
	transform-origin: right center;
	transition: transform 0.3s cubic-bezier(0.79, 0.17, 0.15, 0.96);
	display: block;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 1;
}

.recFoot_link .button {
	display: flex;
	align-items: center;
	padding: 1.6rem 3.2rem;
}

.recFoot_link .name {
	color: var(--color-white);
	position: relative;
	display: block;
	white-space: nowrap;
	font-size: 2rem;
	font-weight: 500;
	padding: 0 4rem;
	transition: color 0.3s cubic-bezier(0.79, 0.17, 0.15, 0.96);
	z-index: 2;
}

.recFoot_link .icon {
	background-color: var(--color-white);
	border: 4px solid var(--color-bg-deep);
	border-radius: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	height: 4.5rem;
	width: 4.5rem;
	z-index: 2;
}

.recFoot_link .icon::before {
	background-color: var(--color-main);
	border-radius: 100%;
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
	transform: scale(0);
	transform-origin: center center;
	transition: transform 0.3s cubic-bezier(0.79, 0.17, 0.15, 0.96) 0.15s;
	z-index: 1;
}

.recFoot_link .icon svg {
	width: 1.3rem;
	height: auto;
	fill: var(--color-main);
	transition: fill 0.3s cubic-bezier(0.79, 0.17, 0.15, 0.96);
	z-index: 2;
}

.recFoot_link:hover:before {
	transform: scaleX(1);
	transform-origin: left center;
}

.recFoot_link:hover .name {
	color: var(--color-main);
}

.recFoot_link:hover .icon:before {
	transform: scale(1);
}

.recFoot_link:hover .icon svg {
	fill: var(--color-white);
}

/*/////////////////////////////////////////////////////////////////////////////////


// お問い合わせ //
	  

/////////////////////////////////////////////////////////////////////////////////*/

/* =========================================== （採用） */

/* 横幅（共通） */
.form_inner {
	max-width: 84rem;
	margin-inline: auto;
}

/* ---------------------------------- 電話で */

.tel_box {
	background-color: var(--color-bg);
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	padding: 2.5rem;
	color: var(--color-main);
	border-radius: var(--radius-4);
}

.tel_box .name {
	font-size: 1.8rem;
	font-weight: 600;
}

.tel_box .number {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 6.4rem;
	font-weight: 700;
	letter-spacing: 0.1em;
}

.tel_box .number::before {
	content: "";
	display: inline-block;
	width: 5rem;
	height: 5rem;
	background-image: url(../images/common/icon_tel.svg);
	background-size: contain;
	background-repeat: no-repeat;
	margin-right: 3rem;
}

.tel_box .note {
	color: var(--color-sub);
}

/* ---------------------------------- フォームで */

.form_title {
	text-align: center;
	font-size: 3rem;
	font-weight: 600;
	color: var(--color-main);
	margin-top: 10rem;
}

.form_notes {
	text-align: center;
	font-weight: 500;
	margin-top: 3.5rem;
}

/* Separator（区切り） */
.form_sepa {
	position: relative;
	text-align: center;
	color: var(--color-main);
	font-size: 1.8rem;
	font-weight: 700;
	margin-bottom: 3rem;
}

.form_sepa::before {
	content: "";
	width: 100%;
	border-bottom: 4px double;
	top: 50%;
	display: block;
	position: absolute;
	z-index: 1;
}

.form_sepa_text {
	position: relative;
	display: inline-block;
	background-color: var(--color-white);
	padding-inline: 2rem;
	z-index: 2;
}

/* ---------------------------------- フォームで（デザイン） */

/* 決まりのセレクタ */
.form {
	margin-top: 6rem;
}

/* dl*/
.form_block {
	width: 100%;
}
/* dl*/
.form_block_grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
}

/* dt */
.form_head {
	position: relative;
}

/* dt label */
.form_label {
	display: inline-flex;
	align-items: center;
	font-weight: 500;
	margin-bottom: 1.5rem;
}

/* 必須・任意マーク */
.form_label.req::before,
.form_label.any::before {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 0.7rem;
	margin-right: 1rem;
	font-size: 1.1rem;
	font-weight: 600;
	height: 1lh;
	color: #fff;
	border: 1px solid transparent;
	border-radius: 0.3rem;
}

.form_label.req::before {
	content: "必須";
	background-color: var(--color-main);
}

.form_label.any::before {
	content: "任意";
	background-color: #999999;
}

/* dd */
.form_body {
	margin-bottom: 4rem;
}

/* 入力例・補足説明 */
.form_note {
	display: block;
	font-size: 1.4rem;
	font-weight: 500;
	color: var(--color-sub);
	margin: 0.5rem 0 0 0.5rem;
}

/* 幅の調整*/
.form_body .-short {
	width: calc(50% - 2rem) !important;
}

/* 余白の調整*/
.form_body .-spc_top {
	margin-top: 1rem !important;
}

/* zipaddr-jpの「ハイフンなしで･･･」を隠す */
#autozip {
	display: none !important;
}

/* ---------------------------------- 個人情報保護方針 */

.form_privacy {
	overflow-y: scroll;
	border: 1px solid #e1e1db;
	box-shadow: 1px 1px 1px #ecece7 inset;
	background: #f9f9f9;
	padding: 1.5rem;
	height: 25rem;
}

.form_privacy h5 {
	font-weight: 600;
	margin: 1rem 0 0 0;
}

.form_privacy .title {
	margin: 0 0 1.5rem 0;
}

.form_privacy p {
	margin: 0 0.5rem;
}

.form_agree {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2rem;
	padding-top: 4rem;
}

.form_agree .note {
	font-size: 1.5rem;
	font-weight: 500;
	color: var(--color-main);
}

/* ---------------------------------- ボタン関連 */

/* ボタン */
.form_button {
	position: relative;
	width: 34rem;
	margin: 6rem auto 0;
	transition: 0.3s cubic-bezier(0.79, 0.17, 0.15, 0.96);
}

.form_button input[type="submit"] {
	background: var(--color-sub);
	color: var(--color-white);
	width: 34rem;
	padding: 2rem 2rem 2.2rem;
	line-height: 1;
	text-align: center;
	font-size: 1.8rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	border: 1px solid transparent;
	border-radius: var(--radius-2);
}

.form_button .icon {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 3rem;
}

.form_button .icon svg {
	width: 1.5rem;
	height: 1lh;
	fill: var(--color-white);
}

.form_button:hover {
	opacity: 0.7;
}

/*（ボタン押下時）ローディング画像消す */
.wpcf7-spinner {
	display: none !important;
}

/*（ボタン押下時）エラーメッセージ */
.wpcf7-not-valid-tip {
	font-size: 1.4rem !important;
	font-feature-settings: "palt";
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
	border-color: transparent !important;
}

.wpcf7 form .wpcf7-response-output {
	margin: 4rem 1rem 0 !important;
	padding: 2rem !important;
	border: 2px solid transparent !important;
	background-color: var(--color-bg-deep);
	border-radius: var(--radius-4);
	font-weight: 500;
	color: var(--color-main);
	text-align: center;
}

/* ---------------------------------- 【確認画面】 */

.page-inquiry-confirm .form_body {
	background-color: var(--color-bg-deep);
	padding: 2rem;
}

.page-inquiry-confirm .form_button input[type="submit"],
.page-contact .form_button input[type="submit"] {
	background: var(--color-main);
}

/* =========================================== （一般） */

.form.box {
	background-color: var(--color-white);
	border-radius: var(--radius-3);
	padding: 8rem 4rem 10rem;
}

/* ----------------------------------  電話で */

/* グループホーム */
.tel_list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 3rem;
	margin-top: 6rem;
}

.tel_item {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 3rem;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-4);
}

.tel_item .name {
	display: flex;
	align-items: center;
	font-weight: 500;
}

.tel_item .name span {
	font-size: 2rem;
	margin-left: 0.5rem;
}

.tel_item .number {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	color: var(--color-main);
	font-size: 2.8rem;
	font-weight: 700;
	margin: 1rem 3.2rem 0 0;
}

.tel_item .icon {
	display: flex;
	flex: 0 0 auto;
	align-items: center;
	justify-content: center;
	width: 5rem;
	height: 5rem;
	aspect-ratio: 1 / 1;
	background-color: var(--color-bg);
	border: 1px solid transparent;
	border-radius: 100vw;
}

.tel_item .icon svg {
	width: 2.2rem;
	height: 2.2rem;
	stroke: var(--color-main);
}

/* 居宅介護支援 */
.tel_cc_list {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
	margin: 3rem 0 2rem;
}

.tel_cc_item {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 3rem;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-4);
}

.tel_cc_item .name {
	text-align: center;
	font-size: 1.4rem;
	font-weight: 500;
	line-height: 1.7;
}

.tel_cc_item .name span {
	display: block;
	font-size: 2rem;
}

.tel_cc_item .number {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
	color: var(--color-main);
	font-size: 2.8rem;
	font-weight: 700;
	margin-top: 2rem;
}

.tel_cc_item .icon {
	display: flex;
	flex: 0 0 auto;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	aspect-ratio: 1 / 1;
	background-color: var(--color-bg);
	border: 1px solid transparent;
	border-radius: 100vw;
}

.tel_cc_item .icon svg {
	width: 2.2rem;
	height: 2.2rem;
	stroke: var(--color-main);
}

/* ===========================================  カスタム系 */

/* ---------------------------------- 入力ボックス */

select,
textarea,
.wpcf7
	input:is(
		[type="text"],
		[type="email"],
		[type="tel"],
		[type="number"],
		[type="date"]
	) {
	background: var(--color-bg-deep);
	border: 1px solid transparent;
	width: 100%;
	padding: 2rem;
	line-height: 1.5;
	border-radius: 0.4rem;
	/* box-shadow: inset 1px 1px 1px rgb(0 0 0 / 2%); */
}

/* 入力時の罫線色 */
select:focus,
input:focus,
textarea:focus {
	outline: none;
	border: 1px solid transparent;
}

/* ---------------------------------- ラジオボタン */

/* 横並び */
.wpcf7-radio {
	display: flex;
	align-items: center;
	gap: 2.5rem;
}

.wpcf7-radio .wpcf7-list-item {
	margin: 0;
}

/* 標準設定消す */
input[type="radio"] {
	display: none;
}

/* 標準設定に代わり span で独自に設定 */
input[type="radio"] + span {
	display: flex;
	align-items: center;
	gap: 1.2rem;
	position: relative;
	cursor: pointer;
}

/* 〇 箇所 */
input[type="radio"] + span::before {
	content: "";
	width: 2.6rem;
	height: 2.6rem;
	margin: auto;
	background-color: #fff;
	border: 1px solid #b0b0b0;
	border-radius: 50%;
	position: relative;
}

/* ● 箇所 */
input[type="radio"] + span::after {
	content: "";
	position: absolute;
	top: 0.7rem;
	bottom: 0.7rem;
	left: 0.7rem;
	width: 1.2rem;
	height: 1.2rem;
	margin: auto;
	border-radius: 50%;
	background-color: var(--color-main);
	opacity: 0;
}

/* クリックで ● を表示させる */
input[type="radio"]:checked + span::after {
	opacity: 1;
}

/* ---------------------------------- チェックボックス */

/* 横並び */
.wpcf7-checkbox {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.5rem;
}

.wpcf7-checkbox .wpcf7-list-item {
	margin: 0;
}

/* 標準設定消す */
input[type="checkbox"] {
	display: none;
}

/* 標準設定に代わり span で独自に設定 */
input[type="checkbox"] + span {
	display: flex;
	align-items: center;
	gap: 1.2rem;
	position: relative;
	cursor: pointer;
}

input[type="checkbox"] + span::before {
	content: "";
	width: 2.6rem;
	height: 2.6rem;
	margin: auto;
	background-color: #fff;
	border: 1px solid #b0b0b0;
	border-radius: 0.2rem;
	position: relative;
	z-index: 1;
}

input[type="checkbox"] + span::after {
	content: "";
	border-right: 0.4rem solid var(--color-main);
	border-bottom: 0.4rem solid var(--color-main);
	display: block;
	width: 0.9rem;
	height: 1.6rem;
	position: absolute;
	top: 0.4rem;
	left: 0.9rem;
	transform: rotate(45deg);
	opacity: 0;
	z-index: 2;
}

/* クリックで チェツクマーク を表示させる */
input[type="checkbox"]:checked + span:after {
	opacity: 1;
}

/* ---------------------------------- セレクトボックス */
/*
 * [select ･･････ ] を form_select で囲む 
 */

.form_select {
	position: relative;
}

/* 標準矢印に代わり ::after で独自に設定 */
.form_select::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 3%;
	transform: translateY(-50%);
	display: block;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 10px 5px 0 5px;
	border-color: var(--color-main) transparent transparent transparent;
	pointer-events: none;
}

/* 標準矢印消す */
.wpcf7-select {
	appearance: none;
}

/* ---------------------------------- 日付ボックス */

.form .date .wpcf7-form-control {
	position: relative;
}

/* 標準のアイコンを消す */
.form .date .wpcf7-form-control::-webkit-calendar-picker-indicator {
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
	opacity: 0;
	position: absolute;
	top: 0;
	left: 0;
	cursor: pointer;
	z-index: 1;
}

/* 矢印を「▼」へ */
.form .date .wpcf7-form-control::after {
	content: "";
	display: block;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 10px 5px 0 5px;
	border-color: #333 transparent transparent transparent;
	position: absolute;
	top: 18px;
	right: 20px;
}

/*/////////////////////////////////////////////////////////////////////////////////


// お知らせ //
	  

/////////////////////////////////////////////////////////////////////////////////*/

/* =========================================== 一覧ページ */

.news_head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid var(--color-border);
}

/* ---------------------------------- カテゴリ選択 */

.news_cat_list {
	display: flex;
	align-items: center;
	gap: 2.5rem;
}

.news_cat_item a {
	position: relative;
	font-size: 1.5rem;
	font-weight: 600;
	padding-bottom: 1rem;
}

.post-type-archive .news_cat_item .is-index,
.news_cat_item .is-current {
	/* font-weight: 700;
	color: var(--color-main); */
	border-bottom: 3px solid var(--color-main);
}

.news_cat_item a::after {
	position: absolute;
	left: 0;
	content: "";
	width: 100%;
	height: 3px;
	background: var(--color-main);
	bottom: -3px;
	transform: scale(0, 1);
	transform-origin: right top;
	transition: transform 0.3s;
}

.news_cat_item a:hover::after {
	transform: scale(1, 1);
	transform-origin: left top;
}

/* ---------------------------------- 年選択 */

.news_head select {
	width: auto;
}

.news_select_year {
	appearance: none;
	border-radius: var(--radius-4);
	border: 1px solid transparent;
	padding: 0.9rem 4.5rem 0.9rem 2.5rem;
	font-size: 1.4rem;
	font-weight: 600;
	cursor: pointer;
	background: var(--color-bg-deep) url(../images/common/icon_arrow_down.svg)
		no-repeat right 2rem top 50%;
	background-size: 0.88rem auto;
}

/* ---------------------------------- 記事一覧 */

.news_body {
	margin-top: 3rem;
}

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

.news_item {
	position: relative;
}

.news_item_link {
	position: relative;
	display: block;
	padding: 2.3rem 0.5rem;
	border-bottom: 1px solid var(--color-border);
}

.news_meta {
	display: flex;
	align-items: center;
	gap: 2rem;
	line-height: 1.5;
	margin-bottom: 1.5rem;
}
.news_meta_date {
	display: block;
	font-size: 1.5rem;
	font-weight: 500;
}

.news_meta_cat {
	font-size: 1.2rem;
	font-weight: 600;
	color: var(--color-main);
	text-align: center;
	padding: 0.3rem 1.5rem;
	background-color: var(--color-bg-deep);
	border-radius: var(--radius-4);
	min-width: 12rem;
}

.mews_meta_mark {
	font-size: 1.2rem;
	font-weight: 600;
	color: var(--color-white);
	text-align: center;
	padding: 0.3rem 1.5rem;
	background-color: var(--color-main);
	border-radius: var(--radius-4);
}

.news_name {
	font-weight: 500;
}

.news_name .name {
	display: inline;
	background-image: linear-gradient(
		90deg,
		var(--color-main),
		var(--color-main)
	);
	background-repeat: no-repeat;
	background-position: left bottom;
	background-size: 0 1px;
	text-decoration: none;
	transition: all 0.3s cubic-bezier(0.79, 0.17, 0.15, 0.96);
}

.news_item_link:hover .news_name .name {
	color: var(--color-main);
	background-size: 100% 1px;
}

.news_name .icon svg {
	position: absolute;
	top: 50%;
	right: 0.5rem;
	transform: translateY(-50%);
	width: 1.2rem;
	height: auto;
	fill: var(--color-main);
	transition: fill 0.3s cubic-bezier(0.79, 0.17, 0.15, 0.96);
}

/* ---------------------------------- ページネーション */

nav.pagination {
	margin-top: 8rem;
}

nav.pagination ul {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
}

nav.pagination li,
nav.pagination li a,
nav.pagination li .current {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 4rem;
	height: 4rem;
	font-size: 1.5rem;
	font-weight: 500;
	border-radius: var(--radius-1);
	overflow: hidden;
	transition: all 0.3s ease;
}

nav.pagination li .prev,
nav.pagination li .next {
	border: 1px solid var(--color-border);
	color: var(--color-main);
}

nav.pagination li .current {
	background-color: var(--color-sub);
	color: var(--color-white);
}

nav.pagination li a:hover {
	opacity: 0.6;
}

/* =========================================== 記事ページ */

.post_inner {
	max-width: 112rem;
	margin-inline: auto;
	padding: 0 8rem;
}

.post_head {
	display: flex;
	flex-direction: column;
	padding-bottom: 2.5rem;
	margin-bottom: 4rem;
	border-bottom: 1px solid var(--color-border);
}

.post_meta {
	display: flex;
	gap: 1.5rem;
	align-items: center;
	justify-content: space-between;
	max-width: 24rem;
	padding: 0.5rem 1rem 0.5rem 1.5rem;
	line-height: 1.5;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-4);
}

.post_date {
	font-size: 1.5rem;
	font-weight: 500;
}

.post_cat {
	text-align: center;
	font-size: 1.2rem;
	font-weight: 600;
	color: var(--color-main);
	min-width: 10.5rem;
	padding: 0.3rem 1rem;
	background-color: var(--color-bg-deep);
	border: 1px solid transparent;
	border-radius: var(--radius-4);
}

.post_name {
	font-size: 2rem;
	font-weight: 600;
	line-height: 1.6;
	margin-top: 4rem;
}

.post_body > p {
	line-height: 1.9;
	margin-bottom: 3rem;
}

.post_body > img {
	margin-top: 1rem;
	margin-bottom: 4rem;
}

/* ---------------------------------- ページネーション */

.post_navigation {
	border-top: 1px solid var(--color-border);
	margin-top: 8rem;
	padding-top: 4.5rem;
}

.post_navigation_inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.post_navlink a {
	display: flex;
	align-items: center;
	position: relative;
}

.post_navlink.prev,
.post_navlink.next {
	width: 22rem;
}

.post_navlink .name {
	font-family: "Noto Sans JP", sans-serif;
	display: inline-block;
	max-width: 20rem;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	font-size: 1.4rem;
	color: var(--color-main);
	letter-spacing: 0.01em;
	border-bottom: 1px solid transparent;
	transition: border-color 0.3s;
}

.post_navlink a:hover .name {
	border-bottom: 1px solid var(--color-main);
}

.post_navlink .icon {
	display: flex;
	align-items: center;
}

.post_navlink .icon svg {
	width: 1rem;
	height: 1rem;
	fill: var(--color-main);
}

.post_navlink.prev .icon svg {
	transform: rotate(180deg);
	margin-right: 1rem;
}

.post_navlink.next .icon svg {
	margin-left: 1rem;
}

.post_navlink.back a {
	border: 1px solid var(--color-border);
	border-radius: var(--radius-4);
	padding: 0.5rem 2rem;
	font-size: 1.5rem;
	transition: border-color 0.3s;
}

.post_navlink.back a:hover {
	border: 1px solid var(--color-main);
}

/*/////////////////////////////////////////////////////////////////////////////////


// 個人情報保護方針 // サイト利用について //
	  

/////////////////////////////////////////////////////////////////////////////////*/

/* instructions（説明書）の略 */

.inst_head {
	margin-inline: auto;
	text-align: center;
	margin-bottom: 6rem;
}

.inst_body ol.circle {
	counter-reset: circle-number 0;
}

.inst_body ol.circle > li {
	list-style: none;
	text-indent: -4rem;
	padding-left: 4rem;
}

.inst_body ol.circle > li:before {
	counter-increment: circle-number 1;
	content: counter(circle-number);
	display: inline-flex;
	align-items: center;
	font-weight: 600;
	letter-spacing: 0;
	justify-content: center;
	color: var(--color-white);
	border: 1px solid transparent;
	background-color: var(--color-black);
	border-radius: 100%;
	width: 3rem;
	height: 3rem;
	margin-right: 1rem;
	text-indent: 0;
	padding-left: 0;
	vertical-align: middle;
	padding-top: 1px;
}

.inst_body ol.circle > li span {
	font-size: 1.8rem;
	font-weight: 600;
}

.inst_body ol.circle > li + li {
	margin-top: 4rem;
}

.inst_body ol.circle.is-indent {
	margin-top: 3.5rem;
	margin-left: 3rem;
}

.inst_body ol.number {
	counter-reset: simple-number 0;
	margin-left: 2.5rem;
	margin-top: 0.5rem;
}

.inst_body ol.number > li {
	list-style: none;
	text-indent: -2rem;
	margin-left: 0;
}

.inst_body ol.number > li::before {
	counter-increment: simple-number 1;
	content: counter(simple-number) ".";
	font-weight: 600;
	letter-spacing: 0.15em;
	justify-content: center;
	color: var(--color-main);
	margin-right: 0.5rem;
	text-indent: 0.5rem;
	padding-left: 0;
}

.inst_body ol.number > li + li {
	margin-top: 0.3rem;
}

/*/////////////////////////////////////////////////////////////////////////////////
// 404 //
/////////////////////////////////////////////////////////////////////////////////*/

/* ホームへボタン */
.link_home {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	margin-top: 4rem;
}

.link_home a {
	border: 1px solid var(--color-border);
	border-radius: var(--radius-4);
	padding: 1.5rem 5rem;
	transition: border-color 0.3s;
}

.link_home a:hover {
	border: 1px solid var(--color-main);
}

/*/////////////////////////////////////////////////////////////////////////////////
// ページトップ //
/////////////////////////////////////////////////////////////////////////////////*/

.page_top {
	position: fixed;
	right: 3rem;
	bottom: 4rem;
	z-index: 99;
	position: fixed;
}

.page_top a {
	display: flex;
	align-items: center;
	gap: 0.7rem;
	line-height: 1.5;
}

.page_top a span {
	font-size: 1.4rem;
	font-weight: 600;
	letter-spacing: 0.01em;
	color: var(--color-main);
	border-bottom: 1px solid transparent;
	transition: border-color 0.3s;
}

.page_top a svg {
	width: 1.1rem;
	height: 1lh;
	fill: var(--color-main);
	transform: rotate(-90deg);
}

.page_top a:hover span {
	border-color: var(--color-main);
}

.is_on .page_top a span {
	color: var(--color-white);
}

.is_on .page_top a svg {
	fill: var(--color-bg);
}

.is_on .page_top a:hover span {
	border-color: var(--color-white);
}

/*/////////////////////////////////////////////////////////////////////////////////


// フット コンタクト //
	  

/////////////////////////////////////////////////////////////////////////////////*/

.foot-contact {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 4rem;
}
.foot-contact .card {
	display: block;
	background-color: var(--color-bg-deep);
	border: 1px solid transparent;
	border-radius: var(--radius-3);
	container-type: inline-size;
}
.foot-contact .inner {
	display: grid;
	grid-template-columns: 50px 1fr 2fr;
	grid-template-columns: 1fr;
	grid-template-rows: repeat(2, 1fr);
	grid-column-gap: 40px;
	grid-row-gap: 20px;
	align-items: center;
	padding: 3rem 3rem 3rem 4rem;
	line-height: 1.5;
}
.foot-contact .box1 {
	grid-area: 1 / 1 / 2 / 2;
}
.foot-contact .box2 {
	grid-area: 2 / 1 / 3 / 2;
}
.foot-contact .box3 {
	grid-area: 1 / 2 / 3 / 3;
}

/* ---------------------------------- タイトルと補足説明 */
.foot-contact .title {
	position: relative;
}
.foot-contact .title ._en {
	display: block;
	font-size: 2rem;
	letter-spacing: 0.03em;
	margin-bottom: 1rem;
}
.foot-contact .title ._jp {
	position: relative;
	font-size: 3rem;
	font-weight: 600;
	color: var(--color-main);
}
.foot-contact .title ._jp::after {
	position: absolute;
	bottom: -0.1rem;
	left: 0;
	content: "";
	width: 100%;
	height: 1px;
	background-color: var(--color-main);
	transform: scale(0, 1);
	transform-origin: left top;
	transition: transform 0.3s;
}
.foot-contact a:hover ._jp::after {
	transform-origin: left top;
	transform: scale(1, 1);
}
.foot-contact .note {
	line-height: 1.75;
}

/* ---------------------------------- 矢印アイコン */
.foot-contact .icon {
	background-color: var(--color-white);
	border: 4px solid var(--color-bg);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	height: 11rem;
	width: 11rem;
	z-index: 2;
}
.foot-contact .icon::before {
	background-color: var(--color-main);
	border-radius: 100%;
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
	transform: scale(0);
	transform-origin: center center;
	transition: 0.3s ease;
	z-index: 1;
}
.foot-contact a:hover .icon:before {
	transform: scale(1);
}
.foot-contact .icon svg {
	width: 2.5rem;
	height: auto;
	fill: var(--color-main);
	transition: fill 0.3s ease;
	z-index: 2;
}
.foot-contact a:hover .icon svg {
	fill: var(--color-white);
}

/*/////////////////////////////////////////////////////////////////////////////////


// フッター //
	  

/////////////////////////////////////////////////////////////////////////////////*/

.l-footer {
	background-color: var(--color-main);
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	padding: 8rem 0 7rem;
}

.footer-inner {
	margin: 0 auto;
	max-width: 160rem;
	position: relative;
	padding: 0 5vw;
	width: 100%;
}

.footer-head {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
}

/* ---------------------------------- info */

.footer-info {
	position: relative;
}

.footer-info .logo {
	width: 17rem;
}

.footer-info .address {
	color: var(--color-white);
	margin-top: 2.5rem;
	font-size: 1.4rem;
}

/* ---------------------------------- nav */

.footer-nav {
	position: relative;
}

.footer-nav .list {
	display: flex;
	flex-wrap: wrap;
	gap: 0 10rem;
}

.footer-nav .item {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.footer-nav .item a {
	font-size: 1.5rem;
	color: var(--color-blue-50);
}

.footer-nav .item a span {
	border-bottom: 1px solid transparent;
	transition: border-color 0.3s;
}

.footer-nav .item a:hover span {
	border-color: var(--color-white);
}

/* ---------------------------------- bottom */

.footer-bottom {
	margin-top: 4rem;
}

.footer-bottom small {
	color: var(--color-bg);
	font-size: 1.1rem;
}

/*/////////////////////////////////////////////////////////////////////////////////


// = Print //
	  

/////////////////////////////////////////////////////////////////////////////////*/

@page {
	margin: 10mm;
	size: 210mm 297mm; /* A4サイズ */
}

@media print {
	body {
		-webkit-print-color-adjust: exact; /* 印刷時でも背景色や背景画像を表示 */
		print-color-adjust: exact;
		width: 1190px; /* 印刷時の全ページ幅を統一（px数値はお好みで） */
		zoom: 1; /* なるべく多くのブラウザで切れないようにするため */
	}
}
