@charset "utf-8";




/*リセットCSS（sanitize.css）の読み込み
-----------------------------------------*/
@import url("https://unpkg.com/sanitize.css");

/*slick.cssの読み込み
-----------------------------------------*/
@import url("https://cdn.jsdelivr.net/npm/slick-carousel@1.8.1/slick/slick.css");

/*Font Awesomeの読み込み
-----------------------------------------*/
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css");

/*テンプレート専用cssファイルの読み込み
-----------------------------------------*/
@import url("animation.css");
@import url("inview.css");





/*全体の設定
-----------------------------------------*/
html, body {
	margin: 0;
	padding: 0;
	font-size: 13px;
	/*基準となるフォントサイズ。下の方にある「画面幅900px以上」で基準を大きなサイズに再設定しています*/
	max-width: 100%;
	overflow-x: hidden;
}

body {
	font-family: "ヒラギノ丸ゴ Pro", "Hiragino Maru Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	margin: 0;
	color: #000;
	/*全体の文字色*/
	background: #fff;
	line-height: 1.7;
	max-width: 100%;
	overflow-x: hidden;
}

/*リセット*/
figure {
	margin: 0;
}

dd {
	margin: 0;
}

/*table全般の設定*/
table {
	border-collapse: collapse;
}

/*画像全般の設定*/
img {
	border: none;
	max-width: 100%;
	height: auto;
	vertical-align: middle;
}

/*videoタグ*/
video {
	max-width: 100%;
}

/*iframeタグ*/
iframe {
	width: 100%;
}

/*ul,olタグ*/
ul, ol {
	margin-bottom: 30px;
}

.space_top {
	margin-top: 1.5rem;
}

@media screen and (min-width: 640px) {
	.sp {
		display: none;
	}

}

.bold {
	font-weight: 700;
}

/*リンクテキスト全般の設定
-----------------------------------------*/
a {
	color: #38a1db;
	/*文字色*/
	transition: 0.3s;
}

a:hover {
	opacity: 0.7;
	/*マウスオン時に70%の透明度に*/
}


/*sectionタグ、詳細ページ、２カラム利用時、フッターメニューブロックの共通設定
-----------------------------------------*/
section,
main>article,
.c2,
#footermenu {
	padding: 3% 50px;
	/*上下、左右へのボックス内の余白*/
}


/*containerブロック
-----------------------------------------*/
#container {
	margin: 0 auto;
	max-width: 1800px;
	/*最大幅。これ以上広がらない*/
}


/*トップページのスライドショー（vegasを使用）
-----------------------------------------*/
#mainimg {
	width: 100vw;
	height: 82vh;
	/*高さ。画面の82%*/
}

/* スライドキャプション */
#slide-caption {
	position: absolute;
	top: 50%;
	left: 140px;
	/* 右へ移動 */
	transform: translateY(-50%);
	z-index: 5;
	width: 70vw;
	max-width: min(75ch, 75%);
	pointer-events: none;
	opacity: 0;
	transition: opacity .4s ease;
}

#slide-caption.is-visible {
	opacity: 1;
}

#slide-caption .slide-caption__text {
	display: inline;
	background: #f29b76;
	/* フォールバック */
	background: rgba(242, 155, 118, 0.65);
	/* 半透明化 */
	backdrop-filter: blur(8px) saturate(130%);
	-webkit-backdrop-filter: blur(8px) saturate(130%);
	border: 1px solid rgba(255, 255, 255, 0.35);
	box-shadow: 0 4px 18px -6px rgba(0, 0, 0, 0.35);
	color: #fff;
	font-weight: 700;
	/* 太字 */
	padding: 0.4em 0.9em;
	line-height: 2.7;
	/* 行間を広く */
	font-size: 2rem;
	/* テキストサイズを倍程度に */
	border-radius: 6px;
	box-decoration-break: clone;
	-webkit-box-decoration-break: clone;
}

@media screen and (max-width: 768px) {
	#slide-caption {
		bottom: 15px;
		/* 画面下部に変更 */
		left: 50%;
		transform: translateX(-50%);
		width: 93vw;
		/* 画面幅の93% */
		max-width: none;
		text-align: center;
	}

	#slide-caption .slide-caption__text {
		display: inline-block;
		font-size: 1.3rem;
		/* SPではやや縮小 */
		line-height: 2.5;
		/* 行間を広げる */
		padding: 0.35em 0.8em;
	}
}

/*スライドショー下部にある曲線の飾り*/
#mainimg #kazari {
	position: absolute;
	bottom: 0;
	width: 100%;
}

/*サブページ用メインイメージ
-----------------------------------------*/
.page-mainimg {
	width: 100%;
	height: 300px;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	position: relative;
	margin-bottom: -130px;
	/*ナビゲーションを画像に重ねるための設定*/
}

@media screen and (max-width:599px) {
	.page-mainimg {
		margin-bottom: -15px;
	}

	/* SP（スマホ）時のトップページロゴ位置調整 */
	.home header #logo {
		bottom: 55% !important;
	}
}

.page-mainimg.about {
	background-image: url(../images/mainimg_about.jpg);
}

.page-mainimg.service {
	background-image: url(../images/mainimg_service.jpg);
}

.page-mainimg.flow {
	background-image: url(../images/mainimg_flow.jpg);
}

.page-mainimg.recruit {
	background-image: url(../images/mainimg_recruit.jpg);
}

.page-mainimg.news {
	background-image: url(../images/mainimg_news.jpg);
}

.page-mainimg.contact {
	background-image: url(../images/mainimg_contact.jpg);
}


/*header（ロゴなどが入った最上段のブロック）
-----------------------------------------*/
/*ヘッダーブロック*/
header {
	background: #23a197;
	/*背景色*/
	position: relative;
}

/*ロゴ画像*/
header #logo {
	margin: 0;
}

/*ロゴ画像（※トップページ以外）*/
body:not(.home) header #logo img {
	display: block;
	height: 45px;
	/*画像の高さ。ハンバーガーメニューとの配置バランスがあるのでここでは高さで指定しました*/
	margin: 0 auto;
	/*左右中央に配置*/
	padding: 4px;
}

/*トップページのロゴ*/
.home header #logo {
	width: 40%;
	/*ロゴの幅*/
	background: #fff;
	/*ロゴの背景色*/
	border-radius: 50%;
	/*円形にする指定。30pxなどにすれば角が丸くなった四角形に*/
	position: absolute;
	z-index: 1;
	bottom: 25%;
	/*ヘッダーに対して、下からの配置場所の指定*/
	left: 30%;
	/*ヘッダーに対して、左からの配置場所の指定*/
	border: 10px solid #fff;
	/*枠線の幅、線種、色*/
}


/*ヘッダー下のメニュー
-----------------------------------------*/
/*メニューブロック全体*/
#header-menu ul {
	padding: 0;
	margin: 0 10px;
	/*上下、左右へのブロックの外にとるスペース*/
	display: flex;
	/*flexボックスを使う指定*/
	justify-content: space-between;
	/*並びかたの種類の指定*/
	font-size: 0.8em;
	/*文字サイズ。親要素の80%に*/
}

/*メニュー１個あたりの設定*/
#header-menu ul li a {
	display: block;
	text-decoration: none;
	padding: 20px 0;
	/*上下、左右へのメニュー内の余白*/
	border-bottom: 5px solid #23a197;
	/*下線の幅、線種、色*/
	color: #23a197;
	/*文字色*/
}

#header-menu ul li {
	flex: 1;
	text-align: center;
	/*中身をセンタリング*/
	margin-right: 10px;
	/*メニュー同士の左右間の余白*/
}

/*最後のメニューへの追加指定*/
#header-menu ul li:last-child {
	margin-right: 0;
	/*右側のマージンをなくす*/
}

/*アイコン*/
#header-menu i {
	display: block;
	font-size: 2em;
	/*文字サイズ。親要素の２倍に*/
}

/*アイコンのマウスオン時*/
#header-menu a:hover i {
	animation: up1 0.8s both;
	/*animation.cssの、up1を実行する。0.8sは0.8秒の事*/
}

/*サブページ（メイン画像あり）のナビゲーション
-----------------------------------------*/
body:not(.home) #header-menu {
	position: relative;
	z-index: 10;
}

body:not(.home) #header-menu ul {
	background: transparent;
}

body:not(.home) #header-menu ul li {
	background: rgba(255, 255, 255, 0.68);
	/*半透明の白（擦りガラス風）*/
	backdrop-filter: blur(10px);
	/*背景をぼかす*/
	-webkit-backdrop-filter: blur(5px);
	/*Safari用*/
	border-radius: 10px 10px 0 0;
	/*上の左右のみ角丸*/
}


/*headerの右上の言語ボタン
-----------------------------------------*/
/*ブロック全体*/
#lang-nav {
	list-style: none;
	margin: 0;
	padding: 0;
	font-size: 0.7em;
	/*文字サイズを親要素の70%に*/
	position: absolute;
	z-index: 1;
	right: 0px;
	/*ヘッダーに対して、右からの配置場所の指定*/
	top: 0px;
	/*ヘッダーに対して、上からの配置場所の指定*/
}

/*メニュー１個あたりの設定*/
#lang-nav li {
	display: inline-block;
	/*横並びに*/
}

#lang-nav a {
	text-decoration: none;
	display: block;
	background: rgba(0, 0, 0, 0.8);
	/*背景色。0,0,0は黒の事で、0.8は色が80%でた状態の事*/
	color: #fff;
	/*文字色*/
	padding: 5px 20px;
	/*上下、左右へのメニュー内の余白*/
}


/*menubarブロック初期設定
-----------------------------------------*/
#menubar ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

#menubar li a {
	background: #fff;
	border-radius: 10px;
	margin-bottom: 5px;
}

/*メニューを非表示にしておく*/
#menubar {
	display: none;
}

/*開閉用のスタイル*/
#menubar.db {
	display: block;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
}

#menubar.dn {
	display: none;
}


/*メニューブロック設定
-----------------------------------------*/
#menubar {
	position: fixed;
	overflow: auto;
	z-index: 100;
	left: 0px;
	top: 0px;
	width: 100%;
	/*ブロックの幅。100%にすれば画面いっぱいに広がります*/
	height: 100%;
	/*ブロックの高さ*/
	padding: 120px 20px 20px;
	/*上、左右、下へのブロック内の余白*/
	background: #fff;
	/*背景色*/
	text-align: center;
	/*テキストを中央に*/
	animation: animation1 0.2s both;
	/*animation.cssの、animation1を実行する。0.2sは0.2秒の事*/
	box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
	/*ボックスの影。右へ、下へ、ぼかし幅の順番。0,0,0は黒の事で0.2は色が20%出た状態*/
}

/*メニュー１個あたりの設定*/
#menubar a {
	display: block;
	text-decoration: none;
	text-align: center;
	/*テキストを中央に*/
	padding: 20px;
	/*メニュー内の余白*/
	box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
}


/*３本バー（ハンバーガー）アイコン設定
-----------------------------------------*/
/*開閉用のスタイル*/
#menubar_hdr.db {
	display: flex;
}

#menubar_hdr.dn {
	display: none;
}

/*３本バーとMENUテキストを囲むブロック*/
#menubar_hdr {
	position: fixed;
	z-index: 101;
	cursor: pointer;
	left: 0px;
	/*左からの配置場所指定*/
	top: 0px;
	/*上からの配置場所指定*/
	background: #23a197;
	/*背景色*/
	padding: 20px 0px;
	/*上下、左右へのブロック内の余白*/
	width: 80px;
	/*幅*/
	text-align: center;
	/*中身をセンタリング*/
	color: #fff;
	/*文字色*/
	transform: scale(0.6);
	/*作ったサイズの60%のサイズに*/
	transform-origin: left top;
	/*上のtransformの起点*/
	transition: 0.3s;
}

/*マウスオン時*/
#menubar_hdr:hover {
	filter: brightness(1.1);
	/*少し明るく*/
}

/*３本バーを囲むブロック*/
#menubar_hdr div {
	display: flex;
	/*flexボックスを使う指定*/
	flex-direction: column;
	/*子要素（３本バー）を縦並びに*/
	justify-content: space-between;
	/*並びかたの種類の指定*/
	width: 30px;
	/*幅（３本バーが出ている場合の幅になります）*/
	height: 30px;
	/*高さ*/
	margin: 0 auto;
}

/*「MENU」の文字*/
#menubar_hdr p {
	display: none;
	/*場所をとるので小さい端末では非表示にしておく*/
}

/*バー１本あたりの設定*/
#menubar_hdr span {
	display: block;
	transition: 0.3s;
	/*アニメーションにかける時間。0.3秒*/
	border-top: 3px solid #fff;
	/*線の幅、線種、色*/
}

/*×印が出ている状態の設定。※１本目および２本目のバーの共通設定*/
#menubar_hdr.ham span:nth-of-type(1),
#menubar_hdr.ham span:nth-of-type(3) {
	transform-origin: center center;
	/*変形の起点。センターに*/
	width: 40px;
	/*バーの幅*/
}

/*×印が出ている状態の設定。※１本目のバー*/
#menubar_hdr.ham span:nth-of-type(1) {
	transform: rotate(45deg) translate(6px, 13px);
	/*回転45°と、X軸Y軸への移動距離の指定*/
}

/*×印が出ている状態の設定。※３本目のバー*/
#menubar_hdr.ham span:nth-of-type(3) {
	transform: rotate(-45deg) translate(6px, -13px);
	/*回転-45°と、X軸Y軸への移動距離の指定*/
}

/*×印が出ている状態の設定。※２本目のバー*/
#menubar_hdr.ham span:nth-of-type(2) {
	display: none;
	/*２本目は使わないので非表示に*/
}


/*mainブロック設定
-----------------------------------------*/
/*mainブロックの設定*/
main {
	padding: 50px 0px;
	/*上下、左右へのブロック内の余白*/
}

/*mainブロック内のh2タグ*/
main h2 {
	position: relative;
	margin: 0;
	margin: 0 0 30px;
	/*上、左右、下に空けるスペース*/
	letter-spacing: 0.1em;
	/*文字間隔を少しだけ広くとる設定*/
	text-align: center;
	/*中身をセンタリング*/
	font-size: 2.2em;
	/*文字サイズ。親要素の220%に*/
}

/*h2タグ内のspaタグ。飾り文字用*/
main h2 span {
	display: block;
	font-size: 0.5em;
	/*文字サイズ。親要素の50%に*/
	color: #9dc93a;
	/*文字色*/
}

/*mainブロック内のh3タグ*/
main h3 {
	padding: 5px 20px;
	/*上下、左右への余白*/
	margin: 0 0 20px;
	/*上、左右、下に空けるスペース*/
	background: #f7f7f7;
	/*背景色*/
	color: #555;
	/*文字色*/
	border-radius: 5px;
	/*角を丸くする指定*/
}

/*mainブロックのpタグ*/
main p {
	margin: 0 20px 30px;
	/*上、左右、下へ空けるスペース*/
}

main p+p {
	margin-top: -10px;
}


/*フッターメニュー設定
-----------------------------------------*/
/*ボックス全体の設定*/
#footermenu {
	background: #38a1db;
	/*背景色*/
	color: #fff;
	/*文字色*/
	font-size: 0.9em;
	/*文字サイズ*/
	display: flex;
	/*flexボックスを使う指定*/
	justify-content: space-between;
	/*並びかたの種類の指定*/
	align-items: flex-start;
	/*垂直揃えの指定。上に配置されるように*/
}

/*ボックス内のリンクテキスト設定*/
#footermenu a {
	text-decoration: none;
	color: #fff;
	/*文字色*/
}

/*リンクテキストのマウスオン時*/
#footermenu a:hover {
	color: #ccc;
	/*文字色*/
}

/*ulタグ（メニューの列単位）*/
#footermenu ul {
	margin: 0;
	padding: 0 2px;
	flex: 1;
	list-style: none;
}

/*title*/
#footermenu .title {
	font-weight: bold;
	/*太字に*/
	color: #fff;
	/*文字色*/
	padding-bottom: 5px;
	/*下に空けるスペース*/
}


/*フッター設定
-----------------------------------------*/
footer small {
	font-size: 100%;
}

footer {
	font-size: 0.6em;
	/*文字サイズ*/
	background: #23a197;
	/*背景色*/
	color: #fff;
	/*文字色*/
	text-align: center;
	/*内容をセンタリング*/
	padding: 20px;
	/*ボックス内の余白*/
}

/*リンクテキスト*/
footer a {
	color: #fff;
	text-decoration: none;
}

/*著作部分*/
footer .pr {
	display: block;
}


/*2カラムの場合
-----------------------------------------*/
/*2カラム（.mainと.sub）を囲むブロック*/
.c2 {
	display: flex;
	/*flexボックスを使う指定*/
	flex-direction: column;
	/*子要素を縦並びに*/
}

/*.mainのsectionのpaddingを一旦リセット*/
.main section {
	padding: 0;
}

/*１つ目以外のsectionの上部に空ける余白。section同士の上下間にとる余白*/
.main section:not(:nth-of-type(1)) {
	padding-top: 3%;
}

/*main（※頭にドット「.」のない「main」とは全く異なります。）*/
.main {
	order: 2;
	/*表示させる順番。数字が小さい方が最初に表示されます*/
}

/*sub*/
.sub {
	order: 1;
	/*表示させる順番。数字が小さい方が最初に表示されます*/
}

/*sub内のh3タグ*/
.sub h3 {
	font-weight: normal;
	font-size: 1em;
	margin: 0;
	background: rgba(0, 0, 0, 0.2);
	/*背景色。0,0,0は黒の事で0.2は色が20%出た状態の事*/
	color: #fff;
	/*文字色*/
	text-align: center;
	/*テキストをセンタリング*/
	margin-bottom: 10px;
	/*見出しの下にとるスペース*/
}


/*submenu（２カラム時にsubで使っているメニュー）
-----------------------------------------*/
/*メニュー全体の設定*/
ul.submenu {
	list-style: none;
	padding: 0;
	margin: 0;
	margin-bottom: 20px;
	/*メニューブロックの下に空けるスペース*/
	border-top: solid 1px #fff;
	/*上の線の幅、線種、色*/
}

/*メニュー１個あたりの設定*/
ul.submenu li {
	display: block;
	margin: 0;
	border-bottom: solid 1px #fff;
	/*下線の幅、線種、色*/
}

ul.submenu li a {
	text-decoration: none;
	display: block;
	padding: 5px 10px;
	/*上下、左右へとる余白*/
}


/*「お知らせ」ブロック
-----------------------------------------*/
/*お知らせブロック*/
#new {
	margin: 0;
	display: flex;
	/*flexボックスを使う指定*/
	flex-wrap: wrap;
	/*折り返す指定*/
	padding: 0 20px;
	/*上下、左右へのボックス内の余白*/
}

/*日付(dt)、記事(dd)共通設定*/
#new dt,
#new dd {
	padding: 5px 0;
	/*上下、左右へのボックス内の余白*/
}

/*日付(dt)設定*/
#new dt {
	width: 8em;
	/*幅。8文字(em)分。※下の「900px以上」の端末用の設定に再設定が*/
}

/*日付の横のマーク（共通設定）*/
#new dt span {
	display: none;

	/*小さな端末では非表示にしておく*/
}

/*記事(dd)設定*/
#new dd {
	width: calc(100% - 8em);
	/*「8em」は上の「#new dt」のwidthの値です。※下の「900px以上」の端末用の設定に再設定が*/
}


/*listブロック
-----------------------------------------*/
/*listブロック全体を囲むブロック（※.list-squareでも使用）*/
.list-container {
	display: flex;
	/*flexボックスを使う指定*/
	flex-wrap: wrap;
	/*折り返す指定*/
	align-items: stretch;
	/*高さを揃える指定*/
	gap: 0;
	/*アイテム間の隙間*/
}

.list-container.list-square-grid {
	gap: 5px;
}

/*１個あたりのボックス設定*/
.list {
	display: flex;
	/*flexボックスを使う指定*/
	flex-direction: column;
	/*子要素を縦並びに*/
	justify-content: space-between;
	/*並びかたの種類の指定*/
	margin-bottom: 30px;
	/*ボックス同士の上下間に空けるスペース*/
	padding: 20px;
	/*ボックス内の余白*/
	background: #fff;
	/*背景色*/
	color: #555;
	/*文字色*/
	box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
	/*ボックスの影。右へ、下へ、ぼかし幅、0,0,0は黒の事で0.1は色が10%出た状態*/
	width: 48%;
	/*幅*/
	margin-right: 4%;
	/*右側に空けるスペース*/
}

#contact-main .list {
	margin: 0 auto;
}


/*リンクテキストの文字色*/
.list a {
	color: #555;
}

/*２の倍数のlistブロックへの追加設定*/
.list:nth-of-type(2n) {
	margin-right: 0;
	/*右側の余白をなくす*/
}

/*ボックス内のfigure画像*/
.list figure {
	margin: -20px -20px 0;
	/*上の.listで設定しているpadding分を相殺して画像をブロックいっぱいに出す*/
}

/*ボックス内のh4タグ*/
.list h4 {
	margin: 1em 0 0.5em;
	/*上、左右、下への余白*/
}

/*ボックス内のtextブロック*/
.list .text {
	flex: 1;
}

/*ボックス内のpタグ*/
.list p {
	margin: 0;
	font-size: 0.8em;
	/*文字サイズを80%に*/
}


/*list2ブロック
-----------------------------------------*/
.list2 {
	display: flex;
	/*flexボックスを使う指定*/
	margin-bottom: 30px;
	/*ボックス同士の上下間に空けるスペース*/
	padding: 10px;
	/*ボックス内の余白*/
	background: #fff;
	/*背景色*/
	color: #555;
	/*文字色*/
	box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
	/*ボックスの影。右へ、下へ、ぼかし幅、0,0,0は黒の事で0.1は色が10%出た状態*/
}

/*リンクテキストの文字色*/
.list2 a {
	color: #555;
}

/*ボックス内のfigure画像*/
.list2 figure {
	width: 30%;
	/*幅*/
	margin: -10px 10px -10px -10px;
	/*上の.list2で設定しているpadding分を相殺して画像をブロックいっぱいに出す*/
}

/*ボックス内のtextブロック*/
.list2 .text {
	flex: 1;
	display: flex;
	/*flexボックスを使う指定*/
	flex-direction: column;
	/*子要素を縦並びに*/
	justify-content: space-between;
	/*並びかたの種類の指定*/
}

/*ボックス内のh4タグ*/
.list2 h4 {
	margin: 0 0 0.5em;
	/*上、左右、下への余白*/
}

/*ボックス内のpタグ*/
.list2 p {
	margin: 0;
	font-size: 0.8em;
	/*文字サイズを80%に*/
}

/*list2内でのbtn*/
.list2 p:not(.btn) {
	flex: 1;
}


/*list-squareブロック
-----------------------------------------*/
/*１個あたりのボックス設定*/
.list-square {
	width: calc((100% - 10px) / 3);
	/*幅*/
	display: flex;
	flex-direction: column;
	/*子要素を縦並びに*/
	flex: 0 0 calc((100% - 10px) / 3);
	/*flexアイテム幅の固定*/
}

/*画像部分の設定*/
.list-square figure {
	margin: 0;
	width: 100%;
	position: relative;
	padding-top: 100%;
	overflow: hidden;
	/*正方形エリアを確保*/
}

.list-square figure img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	/*画像を枠に合わせてトリミング*/
	object-position: center;
	/*中央部分を表示*/
}

/*ボックス内のtextブロック*/
.list-square .text {
	position: absolute;
	left: 0px;
	bottom: 0px;
	width: 100%;
	background: rgba(0, 0, 0, 0.5);
	/*背景色。0,0,0は黒の事で0.5は色が50%出た状態*/
	color: #fff;
	/*文字色*/
	padding: 10px 20px;
	/*上下、左右へのボックス内の余白*/
}

/*ボックス内のh4タグとpタグ*/
.list-square h4,
.list-square p {
	margin: 0;
	font-size: 1em;
}

/*小さな端末では説明文は非表示に。表示させてしまうと画像がかなり隠れてしまう可能性が*/
.list-square p {
	display: none;
}

@media screen and (max-width: 768px) {
	.list-container.list-square-grid {
		gap: 2px !important;
	}

	.list-square {
		width: calc((100% - 4px) / 3) !important;
		display: flex !important;
		flex-direction: column !important;
		flex: 0 0 calc((100% - 4px) / 3) !important;
	}

	.list-square figure {
		margin: 0 !important;
		position: relative !important;
		width: 100% !important;
		padding-top: 100% !important;
		overflow: hidden !important;
	}

	.list-square figure img {
		position: absolute !important;
		top: 0 !important;
		left: 0 !important;
		width: 100% !important;
		height: 100% !important;
		object-fit: cover !important;
		object-position: center !important;
	}

	.list-square .text {
		position: static !important;
		background: linear-gradient(135deg, rgba(35, 161, 151, 0.95) 0%, rgba(26, 122, 115, 0.95) 100%) !important;
		color: #fff !important;
		padding: 15px !important;
		border-radius: 0 0 8px 8px !important;
		box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
		margin-top: 0 !important;
		display: block !important;
		width: 100% !important;
		left: auto !important;
		bottom: auto !important;
	}

	.list-square h4 {
		color: #fff !important;
		margin-bottom: 8px !important;
		font-size: 1.1em !important;
		font-weight: bold !important;
		border-bottom: 2px solid rgba(255, 255, 255, 0.3) !important;
		padding-bottom: 5px !important;
	}

	.list-square p {
		display: block !important;
		color: #fff !important;
		background: none !important;
		padding: 0 !important;
		margin: 0 !important;
		border-radius: 0 !important;
		font-size: 0.9em !important;
		line-height: 1.5 !important;
		opacity: 0.95 !important;
	}
}

/*list,list2,list-squareの共通設定
-----------------------------------------*/
.list, .list2, .list-square {
	position: relative;
	/*子要素でabsolute(絶対配置)を使うための指定*/
}

/*左上の丸いアイコン*/
.list .icon,
.list2 .icon,
.list-square .icon {
	display: flex;
	/*flexボックスを使う指定*/
	justify-content: center;
	/*並びかたの種類の指定*/
	align-items: center;
	/*垂直揃えの指定。上下中央に配置されるように*/
	font-size: 0.8em;
	/*文字サイズ*/
	font-weight: 700;
	background: #eb613b;
	/*背景色*/
	color: #fff;
	/*文字色*/
	width: 60px;
	/*幅*/
	height: 60px;
	/*高さ*/
	line-height: 1.2;
	/*行間*/
	border-radius: 50%;
	/*角丸のサイズ。円形に*/
	text-align: center;
	/*テキストをセンタリング*/
	position: absolute;
	/*親のrelativeに対して絶対配置させる指示*/
	left: -10px;
	/*listブロックに対して左からの配置場所の指定*/
	top: -10px;
	/*listブロックに対して上からの配置場所の指定*/
	box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
	/*ボックスの影。右へ、下へ、ぼかし幅。0,0,0は黒の事で0.3は色が30%出た状態*/
}

.icon_none {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 0.8em;
	font-weight: 700;
	background: #38a1db;
	color: #fff;
	width: 60px;
	height: 60px;
	line-height: 1.2;
	border-radius: 50%;
	text-align: center;
	position: absolute;
	left: -10px;
	top: -10px;
	box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);

}

/*btnの設定
-----------------------------------------*/
p.btn {
	margin: 0;
}

/*ボタンを囲むブロック*/
.btn {
	text-align: center;
	/*内容をセンタリング*/
}

/*ボタン*/
.btn a,
.btn input {
	text-decoration: none;
	border: none;
	border-radius: 10px;
	display: block;
	font-size: 1em;
	box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
	/*ボックスの影。右へ、下へ、ぼかし幅の順。0,0,0は黒の事で0.2は色が20%出た状態*/
	background: #f8b616;
	/*背景色*/
	letter-spacing: 0.1em;
	/*文字間隔を少し広くする指定*/
	color: #fff;
	/*文字色*/
	transition: 0.3s;
	/*hoverまでにかける時間。0.3秒*/
	padding: 0.7em 1em;
	/*上下、左右へのボタン内の余白*/
	margin-top: 2em;
	/*ボタンの上に１文字分のスペースを空ける*/
}

/*ボタンのマウスオン時*/
.btn a:hover,
.btn input:hover {
	cursor: pointer;
	/*inputタグを使う場合に「手」のマークになるように。リンクと同じ表示になるようにという事*/
	opacity: 1;
	/*一番上のリンク設定でhoverにopacityを指定しているので、適用されないように*/
	filter: brightness(1.2);
	/*少しだけ明るく*/
	transform: scale(1.02);
	/*実寸の102%に拡大*/
}

/*ボタン内にiタグを使った場合*/
.btn i {
	margin-left: 15px;
	/*テキストとの間に空ける余白*/
	opacity: 0.5;
	/*透明度。色が50%でた状態*/
	transform: scale(1.4);
	/*サイズを1.4倍に*/
}


/*テーブル
-----------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta1 caption {
	font-weight: bold;
	/*太字に*/
	padding: 10px 5px;
	/*上下、左右へのボックス内の余白。基本的に数行下の「.ta1 th, .ta1 td」のpaddingと揃えておけばOK*/
	color: #9dc93a;
	/*文字色*/
	background: #ffe33f;
	/*背景色*/
	font-size: 1.2em;
	/*文字サイズ。親要素の1.2倍*/
	margin-bottom: 15px;
	/*下に空けるスペース*/
	border-radius: 5px;
	/*角を丸くする指定*/
}

/*ta1テーブルブロック設定*/
.ta1 {
	border-top: 1px solid #fff;
	/*テーブルの一番上の線。幅、線種、色*/
	width: 100%;
	margin: 0 auto 30px;
	/*最後の「30px」がテーブルの下に空けるスペース*/
}

/*tr（１行分）タグ設定*/
.ta1 tr {
	border-bottom: 1px solid #fff;
	/*テーブルの下線。幅、線種、色*/
}

/*th（左側）、td（右側）の共通設定*/
.ta1 th, .ta1 td {
	padding: 10px 5px;
	/*上下、左右へのボックス内の余白*。基本的に数行上の「.ta1 caption」のpaddingと揃えておけばOK*/
	word-break: break-all;
	/*英語などのテキストを改行で自動的に折り返す設定。これがないと、テーブルを突き抜けて表示される場合が*/
}

/*th（左側）のみの設定*/
.ta1 th {
	width: 30%;
	/*幅*/
	text-align: left;
	/*左よせに*/
}

.ta1 tr {
	border-bottom: 1px dotted #6bc8f3;
}

/*PAGE TOP（↑）設定
-----------------------------------------*/
.pagetop-show {
	display: block;
}

/*ボタンの設定*/
.pagetop a {
	display: block;
	text-decoration: none;
	text-align: center;
	z-index: 99;
	background: rgba(56, 161, 9, 0.2);
	/*背景色。0,0,0は黒の事で0.2は色が20%出た状態*/
	position: fixed;
	/*スクロールに追従しない(固定で表示)為の設定*/
	right: 20px;
	/*右からの配置場所指定*/
	bottom: 20px;
	/*下からの配置場所指定*/
	color: #fff;
	/*文字色*/
	font-size: 1.5em;
	/*文字サイズ*/
	width: 60px;
	/*幅*/
	line-height: 60px;
	/*高さ*/
	border-radius: 50%;
	/*円形に*/
}


/*bg1（背景に色がついたタイプ）
-----------------------------------------*/
.bg1 {
	background: #fff5e1 url(../images/bg_dot.png);
	/*背景色、背景画像の読み込み*/
	color: #555;
	/*文字色*/
}


/*その他
-----------------------------------------*/
.clearfix::after {
	content: "";
	display: block;
	clear: both;
}

.color-theme, .color-theme a {
	color: #ffe33f !important;
}

.color-check, .color-check a {
	color: #eb613b !important;
}

.c {
	text-align: center !important;
}

.ws {
	width: 95%;
	display: block;
}

.wl {
	width: 95%;
	display: block;
}

.mb30 {
	margin-bottom: 30px !important;
}

.mt30 {
	margin-top: 30px !important;
}

.look {
	display: inline-block;
	padding: 0px 10px;
	background: #666;
	color: #fff;
	border-radius: 3px;
	margin: 5px 0;
	word-break: break-all;
}

.look .color-check {
	color: #ffe33f !important;
}

.small {
	font-size: 0.8em;
}

.large {
	font-size: 2.5em;
	letter-spacing: 0.1em;
}

.pt50 {
	padding-top: 50px;
}





/*-----------------------------------------
ここから下は画面幅400px以下の追加指定
ハンバーガーメニューがコンテンツが少し重なってしまいますが、画面が狭いのでコンテンツが見える範囲を優先しました。
-----------------------------------------*/
@media screen and (max-width:400px) {


	/*sectionタグ、詳細ページ、２カラム利用時、フッターメニューブロックの共通設定
-----------------------------------------*/
	section,
	main>article,
	.c2,
	#footermenu {
		padding: 3% 10px;
		/*上下、左右へのボックス内の余白*/
	}

	/*list-squareブロック（極小デバイス用）
-----------------------------------------*/
	.list-square {
		width: 100% !important;
		margin-bottom: 2px;
		display: flex !important;
		flex-direction: column !important;
		flex: 0 0 100% !important;
	}

	.list-square figure {
		margin: 0 !important;
		position: relative !important;
		width: 100% !important;
		padding-top: 100% !important;
		overflow: hidden !important;
	}

	.list-square figure img {
		position: absolute !important;
		top: 0 !important;
		left: 0 !important;
		width: 100% !important;
		height: 100% !important;
		object-fit: cover !important;
		object-position: center !important;
	}

	.list-square .text {
		position: static !important;
		background: linear-gradient(135deg, rgba(35, 161, 151, 0.9) 0%, rgba(26, 122, 115, 0.9) 100%) !important;
		color: #fff !important;
		padding: 12px !important;
		border-radius: 0 0 6px 6px !important;
		box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1) !important;
		margin-top: 0 !important;
		display: block !important;
	}

	.list-square h4 {
		color: #fff !important;
		font-weight: bold !important;
		margin-bottom: 6px !important;
		font-size: 0.95em !important;
		border-bottom: 1px solid rgba(255, 255, 255, 0.3) !important;
		padding-bottom: 3px !important;
	}

	.list-square p {
		display: block !important;
		font-size: 0.75em !important;
		padding: 0 !important;
		color: #fff !important;
		background: none !important;
		border-radius: 0 !important;
		line-height: 1.3 !important;
		margin: 0 !important;
		opacity: 0.95 !important;
	}

	.list-square .icon {
		width: 35px !important;
		height: 35px !important;
		font-size: 0.7em !important;
		left: -5px !important;
		top: -5px !important;
	}

	/*　※注意！　下の閉じカッコ　}　はこのブロックに必要なので、削除しないで*/

}



/*-----------------------------------------
ここから下は画面幅620px以下の追加指定
-----------------------------------------*/
@media screen and (max-width:620px) {

	/*header-menuを非表示*/
	#header-menu {
		display: none;
	}

	/*フッターメニューを2列並びに*/
	#footermenu {
		display: flex;
		flex-wrap: wrap;
		justify-content: flex-start;
		/*左寄せにして2列で折り返すように*/
	}

	#footermenu ul {
		width: 50% !important;
		/*1列あたり50%で2列並び*/
		flex: 0 0 50% !important;
		/*伸縮なし、幅50%固定*/
		max-width: 50%;
		box-sizing: border-box;
		margin-bottom: 20px;
		/*行間のスペース*/
	}

}




/*-----------------------------------------
ここから下は画面幅600px以上の追加指定
-----------------------------------------*/
@media screen and (min-width:600px) {


	/*header（ロゴなどが入った最上段のブロック）
-----------------------------------------*/
	/*トップページのロゴ*/
	.home header #logo {
		width: 16%;
		bottom: -18%;
		left: 42%;
	}


	/*ヘッダー下のメニュー
-----------------------------------------*/
	/*メニューブロック全体*/
	#header-menu ul {
		font-size: 1em;
	}

	/*トップページのみ。4つ目メニューの右側に余白を作る。ロゴとの横並びのバランスをここで調整*/
	.home #header-menu ul li:nth-of-type(4) {
		margin-right: 20%;
	}


	/*mainブロック設定
-----------------------------------------*/
	/*mainブロックの設定*/
	main {
		padding: 80px 0px;
		/*上下、左右へのブロック内の余白*/
	}

	/*h2タグの装飾（kazari1）*/
	main h2.flag::before,
	main h2.flag::after {
		content: "";
		display: block;
		position: absolute;
		z-index: -1;
		bottom: 0px;
		width: 100px;
		/*画像の幅*/
		height: 100px;
		/*画像の高さ*/
		background: url(../images/bg_flag.png) no-repeat left center / contain;
		/*読み込む画像*/
	}

	main h2.flag::before {
		left: 0px;
	}

	main h2.flag::after {
		right: 0px;
		transform: scale(-1, 1);
	}


	/*　※注意！　下の閉じカッコ　}　はこのブロックに必要なので、削除しないで*/

}

/* 1440px以下でトップページロゴとメニューの重なりを防止 */
@media screen and (max-width:1440px) and (min-width:621px) {
	.home header #logo {
		bottom: 4%;
	}

	.home #header-menu ul li:nth-of-type(4) {
		margin-right: 0;
	}
}





/*-----------------------------------------
ここから下は画面幅900px以上の追加指定
-----------------------------------------*/
@media screen and (min-width:900px) {


	/*全体の設定
-----------------------------------------*/
	html, body {
		font-size: 16px;
		/*基準となるフォントサイズの上書き*/
	}


	/*sectionタグ、詳細ページ、２カラム利用時、フッターメニューブロックの共通設定
-----------------------------------------*/
	section,
	main>article,
	.c2,
	#footermenu {
		padding: 3% 80px;
		/*上下、左右へのボックス内の余白*/
	}


	/*header（ロゴなどが入った最上段のブロック）
-----------------------------------------*/
	/*ロゴ画像（※トップページ以外）*/
	body:not(.home) header #logo img {
		height: 70px;
		padding: 6px;
	}


	/*ヘッダー下のメニュー
-----------------------------------------*/
	/*メニューブロック全体*/
	#header-menu ul {
		font-size: 1.2em;
		/*文字サイズ。親要素の120%に*/
	}


	/*メニューブロック設定
-----------------------------------------*/
	#menubar {
		width: 40%;
		/*ブロックの幅*/
	}


	/*３本バー（ハンバーガー）アイコン設定
-----------------------------------------*/
	/*３本バーとMENUテキストを囲むブロック*/
	#menubar_hdr {
		transform: scale(1);
		/*小さな端末用で60%にしているのを原寸大に戻す*/
	}

	/*「MENU」の文字*/
	#menubar_hdr p {
		display: block;
		/*表示させる*/
		margin: 10px 0 0;
		/*上、左右、下へのマージン*/
		font-size: 0.7em;
		/*文字サイズ。親要素の70%に*/
	}

	/*「MENU」の文字をトップページ以外は非表示に*/
	body:not(.home) #menubar_hdr p {
		display: none;
	}


	/*mainブロック設定
-----------------------------------------*/
	/*mainブロックの設定*/
	main {
		padding: 20px 0px;
		/*上下、左右へのブロック内の余白*/
	}

	/*h2タグの装飾（kazari1）*/
	main h2.flag::before,
	main h2.flag::after {
		width: 150px;
		/*画像の幅*/
		height: 150px;
		/*画像の高さ*/
	}


	/*2カラムの場合
-----------------------------------------*/
	/*2カラム（.mainと.sub）を囲むブロック*/
	.c2 {
		flex-direction: row;
		/*子要素を横並びに*/
		justify-content: space-between;
		/*並びかたの種類の指定*/
	}

	/*main（※頭にドット「.」のない「main」とは全く異なります。）*/
	.main {
		width: calc(100% - 250px);
		/*幅。250pxというのは、下のsubのwidthの値に余白分を加えた数字です。ちょうど200pxにしてしまうとキツキツになるので*/
	}

	/*sub*/
	.sub {
		width: 200px;
		/*幅。変更する際は上の.mainのwidthも調整*/
	}


	/*「お知らせ」ブロック
-----------------------------------------*/
	/*日付(dt)設定*/
	#new dt {
		width: 14em;
		/*幅。14文字(em)分*/
		display: flex;
		/*flexボックスを使う指定*/
		justify-content: space-between;
		/*日付とアイコンをそれぞれ端に寄せる*/
	}

	/*日付の横のマーク（共通設定）*/
	#new dt span {
		display: inline-block;
		/*表示させる*/
		width: 7.5em;
		/*幅。7.5文字(em)分*/
		border-radius: 5px;
		background: #9dc93a;
		/*背景色*/
		color: #fff;
		/*文字色*/
		font-size: 0.8em;
		/*文字サイズを80%に*/
		text-align: center;
		/*文字をセンタリング*/
		margin-right: 1em;
		/*アイコンの右側に空けるスペース*/
		align-self: flex-start;
		/*高さを間延びさせない指定*/
		line-height: 1.8;
		/*行間を少し狭く*/
		position: relative;
		top: 0.4em;
		/*上下の配置バランスの微調整*/
	}

	/*icon-bg1設定。サンプルテンプレートでは「重要」と書いてあるマーク*/
	#new dt span.icon-bg1 {
		background: #fff;
		/*背景色*/
		color: #eb613b;
		border: 1px solid #eb613b;
	}

	/*icon-bg2設定。サンプルテンプレートでは「採用」と書いてあるマーク*/
	#new dt span.icon-bg2 {
		background: #f8b616;
		/*背景色*/
	}

	/*記事(dd)設定*/
	#new dd {
		width: calc(100% - 14em);
		/*「14em」は上の「#new dt」のwidthの値*/
	}


	/*listブロック
-----------------------------------------*/
	/*１個あたりのボックス設定*/
	.list {
		width: 24%;
		/*幅*/
		margin-right: 1.33%;
		/*右側に空けるスペース*/
	}

	/*２の倍数のlistブロックへの追加設定。小さな端末用で0と指定しているので、改めて大きな端末用のマージンを指定*/
	.list:nth-of-type(2n) {
		margin-right: 1.33%;
	}

	/*４の倍数のlistブロックへの追加設定*/
	.list:nth-of-type(4n) {
		margin-right: 0;
		/*右側の余白をなくす*/
	}


	/*list2ブロック
-----------------------------------------*/
	.list2 {
		padding: 30px;
		/*ボックス内の余白*/
	}

	/*ボックス内のfigure画像*/
	.list2 figure {
		width: 30%;
		/*幅*/
		margin: -30px 30px -30px -30px;
		/*上の.listで設定しているpadding分を相殺して画像をブロックいっぱいに出す*/
	}


	/*list-squareブロック
-----------------------------------------*/
	/*小さな端末で非表示にした説明文を表示させる*/
	.list-square {
		width: calc((100% - 10px) / 3) !important;
		display: flex !important;
		flex-direction: column !important;
		flex: 0 0 calc((100% - 10px) / 3) !important;
	}

	.list-square figure {
		margin: 0 !important;
	}

	.list-square .text {
		position: static !important;
		background: linear-gradient(135deg, rgba(35, 161, 151, 0.95) 0%, rgba(26, 122, 115, 0.95) 100%) !important;
		color: #fff !important;
		padding: 15px !important;
		border-radius: 0 0 8px 8px !important;
		box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15) !important;
		margin-top: 0 !important;
		display: block !important;
		width: 100% !important;
		left: auto !important;
		bottom: auto !important;
	}

	.list-square h4 {
		color: #fff !important;
		margin-bottom: 8px !important;
		font-weight: bold !important;
		font-size: 1.0em !important;
		border-bottom: 2px solid rgba(255, 255, 255, 0.3) !important;
		padding-bottom: 5px !important;
	}

	.list-square p {
		display: block !important;
		font-size: 0.85em !important;
		line-height: 1.5 !important;
		margin: 0 !important;
		padding: 0 !important;
		background: none !important;
		border-radius: 0 !important;
		color: #fff !important;
		opacity: 0.95 !important;
	}

	/*テーブル
-----------------------------------------*/
	/*テーブル１行目に入った見出し部分（※caption）*/
	.ta1 caption {
		padding: 5px 15px;
		/*上下、左右へのボックス内の余白*/
	}

	/*th（左側）、td（右側）の共通設定*/
	.ta1 th, .ta1 td {
		padding: 20px 15px;
		/*上下、左右へのボックス内の余白*/
	}

	/*th（左側）のみの設定*/
	.ta1 th {
		width: 20%;
		/*幅*/
	}


	/*その他
-----------------------------------------*/
	.ws {
		width: 48%;
		display: inline;
	}

	.sh {
		display: none;
	}

	/*　※注意！　下の閉じカッコ　}　はこのブロックに必要なので、削除しないで*/
}

/* 1440px以下でヘッダーメニューの文字サイズを可変にして折り返しを防ぐ */
@media screen and (max-width:1440px) and (min-width:621px) {
	#header-menu ul {
		font-size: clamp(0.75rem, 0.45rem + 0.8vw, 1.15rem);
		white-space: nowrap;
	}
}

/*-----------------------------------------*/
@media screen and (max-width: 640px) {
	#menubar {
		top: auto;
		/* 上付きを解除 */
		bottom: 15px;
		/* 画面下部に配置 */
	}

	/*１個あたりのボックス設定*/
	.list-square {
		width: calc((100% - 2px) / 2) !important;
		/*幅*/
		margin-bottom: 2px;
		display: flex !important;
		flex-direction: column !important;
		flex: 0 0 calc((100% - 2px) / 2) !important;
	}

	.list-square figure {
		margin: 0 !important;
		position: relative !important;
		width: 100% !important;
		padding-top: 100% !important;
		overflow: hidden !important;
	}

	.list-square figure img {
		position: absolute !important;
		top: 0 !important;
		left: 0 !important;
		width: 100% !important;
		height: 100% !important;
		object-fit: cover !important;
		object-position: center !important;
	}

	.list-square .text {
		position: static !important;
		background: linear-gradient(135deg, rgba(35, 161, 151, 0.9) 0%, rgba(26, 122, 115, 0.9) 100%) !important;
		padding: 12px !important;
		color: #fff !important;
		border-radius: 0 0 6px 6px !important;
		box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
		margin-top: 0 !important;
		display: block !important;
	}

	.list-square h4 {
		font-size: 1.0em !important;
		margin-bottom: 6px !important;
		color: #fff !important;
		font-weight: bold !important;
		border-bottom: 1px solid rgba(255, 255, 255, 0.3) !important;
		padding-bottom: 4px !important;
	}

	.list-square p {
		display: block !important;
		font-size: 0.8em !important;
		line-height: 1.4 !important;
		margin: 0 !important;
		color: #fff !important;
		background: none !important;
		padding: 0 !important;
		border-radius: 0 !important;
		opacity: 0.95 !important;
	}

	.list-square .icon {
		width: 35px !important;
		height: 35px !important;
		font-size: 0.7em !important;
		left: -5px !important;
		top: -5px !important;
	}

	.ta1 th {
		width: 25%;
	}

	#footermenu .title {
		font-size: 1.2em;
	}

	footer small {
		font-size: 1.2em;
	}

	#contact-main .list {
		width: 80%;
	}

	.contact-type label {
		width: 90%;
		margin-bottom: 10px !important;
	}

}

#philosophy h3 {
	text-align: center;
}

#philosophy h4 {
	margin-bottom: 0;
	font-size: 1.5rem;
	text-align: center;
}

#philosophy p {
	font-size: 1.2rem;
	text-align: center;
}

/*　20251111　ロゴに込めた想いセクション追加*/
#thoughts {
	width: 100%;
}

#thoughts h3 {
	padding: 1em;
	display: flex;
	justify-content: center;
}

#thoughts p {
	font-size: 1.2rem;
	text-align: center;
}

/* 20251112 Aboutページ キャッチコピー */
.page_catchcopy {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 28px 16px 10px;
}

.page_catchcopy p {
	display: inline-block;
	font-weight: 800;
	letter-spacing: 0.02em;
	line-height: 1.9;
	font-size: clamp(1.6rem, 4.8vw, 2.6rem);
	color: #fff;
	background: linear-gradient(135deg, rgba(242, 155, 118, 0.9) 0%, rgba(248, 182, 22, 0.9) 100%);
	padding: 0.25em 0.6em;
	border-radius: 10px;
	box-shadow: 0 6px 18px -6px rgba(0, 0, 0, 0.2);
	box-decoration-break: clone;
	-webkit-box-decoration-break: clone;
}

.page_catchcopy::after {
	content: "";
	display: block;
	width: 90px;
	height: 6px;
	margin: 14px auto 0;
	background: linear-gradient(90deg, #23a197, #f8b616);
	border-radius: 999px;
	opacity: 0.9;
}

@media screen and (max-width: 640px) {
	.page_catchcopy {
		padding: 22px 12px 6px;
	}

	.page_catchcopy p {
		font-size: clamp(1.4rem, 5.2vw, 2.0rem);
		line-height: 1.85;
		padding: 0.25em 0.5em;
		border-radius: 8px;
	}
}

/* サービス紹介ページ 2列フロー（居宅介護支援事業所 / 訪問看護ステーション） */
.service-flow-section {
	background: #f4f8fb;
}

.service-flow-wrapper {
	display: flex;
	flex-wrap: wrap;
	gap: 32px;
	align-items: flex-start;
}

.service-flow-column {
	flex: 1 1 0;
	min-width: 280px;
}

.service-flow-title {
	margin: 0 0 15px;
	text-align: center;
	font-size: 1.5rem;
	letter-spacing: 0.05em;
}

.service-flow-title span {
	display: block;
	font-size: 0.7em;
	margin-top: 4px;
}

.service-flow-title--blue {
	color: #fff;
	background: #1f8dd6;
	border-radius: 999px;
	padding: 10px 20px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.service-flow-title--orange {
	color: #fff;
	background: #f28b2b;
	border-radius: 999px;
	padding: 10px 20px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.service-flow-lead {
	margin: 6px 0 22px;
	text-align: center;
	font-size: 0.9rem;
}

.service-flow-steps {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.service-flow-step {
	position: relative;
	padding: 18px 22px 24px;
	border-radius: 26px;
	background: #fff;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
	border: 3px solid transparent;
	text-align: center;
}

.service-flow-step h3 {
	margin: 0 0 6px;
	padding: 0;
	background: none;
	font-size: 1.1rem;
	color: #333;
}

.service-flow-step p {
	margin: 0;
	font-size: 0.95rem;
	line-height: 1.7;
}

.service-flow-step--blue {
	border-color: #48a5e8;
	background: #f4f9ff;
}

.service-flow-step--orange {
	border-color: #f2a15a;
	background: #fff8f0;
}

.service-flow-arrow {
	position: absolute;
	left: 50%;
	bottom: -31px;
	transform: translate(-50%, 0);
	font-size: 1.6rem;
	font-weight: bold;
}

#flow-guide .service-flow-arrow {
	bottom: -31px;
}

.service-flow-arrow--blue {
	color: #2f8bd8;
}

.service-flow-arrow--orange {
	color: #e6842a;
}

@media screen and (max-width: 899px) {

	.service-flow-arrow,
	#flow-guide .service-flow-arrow {
		bottom: -27px;
	}
}

.service-flow-step-header {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	margin-bottom: 8px;
}

.service-flow-step-header h3 {
	margin: 0;
}

.service-flow-step-icon {
	display: inline-flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	font-size: 0.65rem;
	line-height: 1.2;
	font-weight: 700;
	color: #fff;
	letter-spacing: 0.04em;
}

.service-flow-step-icon--blue {
	background: #48a5e8;
}

.service-flow-step-icon--orange {
	background: #f2a15a;
}

.flow-page-dual .service-flow-column {
	background: transparent;
}

.flow-page-dual .service-flow-lead,
.flow-page-dual .service-flow-message {
	text-align: left;
}

.flow-page-dual .service-flow-step {
	text-align: left;
	padding: 20px 24px 30px;
}

.flow-page-dual .service-flow-step p {
	font-size: 0.95rem;
	text-align: left;
}

.flow-page-dual .service-flow-step-header {
	justify-content: center;
	align-items: center;
}

.flow-page-dual .service-flow-step-icon {
	width: 46px;
	height: 46px;
	font-size: 0.6rem;
	text-align: center;
}

.service-flow-message {
	margin: 22px 0 0;
	font-size: 0.88rem;
	text-align: center;
	color: #555;
}

.service-flow-catch {
	margin: 8px 0 10px;
}

.nursing {
	font-size: 1.6rem !important;
}

/* 2箇所の電話番号を並べるブロック */
.contact-phone-pair {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	justify-content: center;
	margin: 30px auto 10px;
	max-width: 900px;
}

.contact-phone-pair__item {
	flex: 1 1 260px;
	max-width: 420px;
	background: #fff;
	border: 2px solid #23a197;
	border-radius: 18px;
	padding: 18px 24px 22px;
	box-shadow: 0 6px 20px rgba(35, 161, 151, 0.15);
}

.contact-phone-pair__label {
	margin: 0 0 8px;
	text-align: center;
	font-weight: 700;
	letter-spacing: 0.08em;
	color: #23a197;
}

.contact-phone-pair__number {
	margin: 0;
}

.contact-phone-pair__number .large {
	font-size: 2rem;
}

.footer-phone-label {
	display: inline-block;
	margin-left: 6px;
	font-size: 0.85em;
	letter-spacing: 0;
}

#footermenu .footer-phone-label {
	color: rgba(255, 255, 255, 0.9);
}

@media screen and (max-width: 640px) {
	.contact-phone-pair {
		flex-direction: column;
		gap: 14px;
	}

	.contact-phone-pair__item {
		flex: initial;
		width: 100%;
		max-width: none;
		padding: 14px 18px 18px;
	}

	.contact-phone-pair__number .large {
		font-size: 1.7rem;
	}

	.contact-phone-pair__number {
		margin: 0;
	}

	.footer-phone-label {
		display: block;
		margin: 4px 0 0;
	}
}

.contact-fax {
	margin: 10px 0 20px;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-align: center;
	color: #23a197;
}

.contact-fax i {
	margin-right: 6px;
	color: #23a197;
}

/* フローティングの電話ボタン */
.floating-call__pc,
.floating-call__sp {
	position: fixed;
	z-index: 95;
}

.floating-call__pc {
	right: 20px;
	top: 73%;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.floating-call__btn {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 20px;
	border-radius: 999px;
	color: #fff;
	text-decoration: none;
	font-weight: 700;
	min-width: 240px;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.floating-call__btn--visit {
	background: linear-gradient(135deg, #1f8dd6 0%, #23a197 100%);
}

.floating-call__btn--care {
	background: linear-gradient(135deg, #f28b2b 0%, #f8b616 100%);
}

.floating-call__icon {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.18);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.1rem;
}

.floating-call__text {
	display: flex;
	flex-direction: column;
	line-height: 1.2;
}

.floating-call__label {
	font-size: 0.85rem;
	letter-spacing: 0.08em;
}

.floating-call__number {
	font-size: 1.25rem;
	letter-spacing: 0.05em;
}

.floating-call__sp {
	left: 0;
	bottom: 0;
	display: none;
	width: 100%;
	box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.1);
}

.floating-call__sp a {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 10px 6px 12px;
	color: #fff;
	text-decoration: none;
	font-weight: 700;
	font-size: 0.95rem;
	letter-spacing: 0.04em;
}

.floating-call__sp-btn--visit {
	background: #1f8dd6;
}

.floating-call__sp-btn--care {
	background: #f28b2b;
}

.floating-call__sp-number {
	font-size: 1.1rem;
}

@media screen and (max-width: 768px) {
	.floating-call__pc {
		display: none;
	}

	.floating-call__sp {
		display: flex;
	}

	body {
		padding-bottom: 90px;
	}

	.pagetop a {
		bottom: 110px;
	}
}

@media screen and (min-width: 769px) {
	.floating-call__sp {
		display: none;
	}
}

#tsuyomi .list-container {
	justify-content: center;
	gap: 24px;
}

.list.blur.blurstyle.strength-card {
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

#tsuyomi .strength-card {
	width: clamp(220px, 23vw, 400px);
	flex: 0 0 auto;
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0)) #fff8f0;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08), 0 0 25px rgba(242, 139, 43, 0.35), 0 0 60px rgba(242, 139, 43, 0.25);
	border: 3px solid rgba(242, 139, 43, 0.3);
	margin-right: 0;
	padding: 28px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	background-clip: padding-box;
}

#tsuyomi .strength-card .text {
	margin: 0;
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: 100%;
}

#tsuyomi .strength-card h4 {
	margin: 0 0 0.5em;
	font-size: 1.3rem;
	color: #23a197;
}

#tsuyomi .strength-card p {
	margin: 0;
	font-size: 1rem;
	line-height: 1.7;
}

#tsuyomi h4 {
	margin-top: 1em !important;
}

@media screen and (max-width: 640px) {

	#tsuyomi .strength-card,
	.list.blur.blurstyle.strength-card {
		width: 90%;
		max-width: 90%;
		margin: 0 auto 20px;
		padding: 24px;
	}
}

@media screen and (max-width: 768px) {
	.service-flow-wrapper {
		flex-direction: column;
		gap: 24px;
	}

	.service-flow-column {
		width: 100%;
		max-width: 540px;
		margin: 0 auto;
	}

	.service-flow-title--blue,
	.service-flow-title--orange {
		font-size: 1.4rem;
		padding: 8px 16px;
	}

	.service-flow-step {
		padding: 14px 16px 16px;
		border-radius: 22px;
	}

	.service-flow-step-header {
		gap: 10px;
	}

	.service-flow-step-icon {
		width: 42px;
		height: 42px;
		font-size: 0.55rem;
	}
}