@charset "utf-8";

/*リセットCSS（sanitize.css）の読込
---------------------------------------*/
@import url("https://unpkg.com/sanitize.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");

/*slickのcssファイルの読込
---------------------------------------*/
@import url("slick.css");

/*全体の設定
---------------------------------------*/
html, body {
	height: 100%;
	font-size: 13px;
	/*基準となるフォントサイズ*/
}

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

	html, body {
		font-size: 16px;
		/*基準となるフォントサイズ*/
	}

}

/*画面幅900px以上の追加指定ここまで*/


body {
	font-family: "MS 明朝", "ヒラギノ明朝", serif, "ヒラギノ丸ゴ Pro", "Hiragino Maru Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	/*フォント種類*/
	-webkit-text-size-adjust: none;
	background: #fff;
	/*背景色*/
	color: #313231;
	/*文字色*/
	line-height: 2;
	/*行間*/
	animation: opa1 0.3s 0.5s both;
	/*0.5秒の間だけ非表示にし、その後0.3秒かけてフェードイン表示。上部のメインメニューのデフォルトが一瞬見えてしまうのを回避する為の応急措置です*/
}

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

dd {
	margin: 0;
}

nav {
	margin: 0;
	padding: 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%;
}

/*他*/
input, input[type="button"], input[type="submit"], textarea, select {
	font-size: 1rem;
	font-family: "MS 明朝", "ヒラギノ明朝", serif, "ヒラギノ丸ゴ Pro", "Hiragino Maru Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif !important;
}

input::placeholder, textarea::placeholder, select::placeholder {
	font-family: "MS 明朝", "ヒラギノ明朝", serif, "ヒラギノ丸ゴ Pro", "Hiragino Maru Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif !important;
}

.btn_postalcode, .form_confirm_btn {
	font-family: "MS 明朝", "ヒラギノ明朝", serif, "ヒラギノ丸ゴ Pro", "Hiragino Maru Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif !important;
}

section+section {
	margin-top: 3rem;
}

.b {
	font-weight: 700;
}

.black {
	color: #313231 !important;
}

/*リンクテキスト全般の設定
---------------------------------------*/
a {
	color: #6cc5c9;
	/*文字色*/
	transition: 0.3s;
	/*hoverまでにかける時間。0.3秒*/
}

/*マウスオン時*/
a:hover {
	opacity: 0.8;
	/*色を80%だけ出す*/
	color: #6cc5c9;
	/*文字色*/
}


/*コンテナー（サイト全体を囲むブロック）
---------------------------------------*/
#container {
	height: 100%;
	display: flex;
	/*flexボックスを使う指定*/
	flex-direction: column;
	/*子要素を縦並び*/
	justify-content: space-between;
	/*並びかたの種類の指定*/
	max-width: 100vw;
	/*サイトの最大幅。これ以上広がらない*/
	margin: 0 auto;
}


/*header（ロゴが入った最上段のブロック）
---------------------------------------*/
/*ヘッダーブロック*/
header {
	display: flex;
	/*flexボックスを使う指定*/
	align-items: center;
	/*垂直揃えの指定。天地中央に配置されるように*/
	border-radius: 10px;
	/*角を丸くする指定*/
	padding: 0 30px;
	/*ヘッダー内の余白。上下、左右への順番*/
	height: 70px;
	/*ヘッダーの高さ*/
	position: fixed;
	/*スクロールしても動かないよう指定*/
	z-index: 10;
	/*スクロール中、コンテンツの上になるように*/
	margin: 30px;
	/*headerの外側にとるスペース*/
	width: calc(100% - 60px);
	/*pxの値は、上のmargin(両サイドなので２倍)を合計した数字です*/
	box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.15);
	/*ボックスの影。右へ、下へ、ぼかし幅。0,0,0は黒のことで0.15は色が15%出た状態*/
	background: linear-gradient(#fff, rgba(255, 255, 255, 0.7));
	/*背景グラデーション。255,255,255は白のことで0.7は色が70%出た状態*/
}

/*トップページ以外のヘッダーブロック*/
body:not(.home) header {
	background: linear-gradient(#fff, rgba(230, 230, 230, 0.7));
	/*背景グラデーション。230,230,230は白に近いグレーのことで0.7は色が70%出た状態*/
}

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

	/*ヘッダーブロック*/
	header {
		padding: 0 20px;
		/*ヘッダー内の余白。上下、左右への順番*/
		height: 50px;
		/*ヘッダーの高さ*/
		margin: 10px;
		/*headerの外側にとるスペース*/
		width: calc(100% - 20px);
		/*pxの値は、上のmargin(両サイドなので２倍)を合計した数字です*/
	}

}

/*画面幅600px以下の追加指定ここまで*/


/*ロゴ*/
#logo img {
	display: block;
}

#logo {
	width: 220px;
	/*ロゴ画像の幅*/
}


/*スライドショー（vegasを使用）
ここでは、3:2の画像比率（2÷3=0.6666）を読み込む指定を行なっています。
異なる画像比率にしたい場合、#mainimg-boxのpadding-topの数字を変更。2:1なら50%です。
---------------------------------------*/
#mainimg-box {
	width: 100%;
	height: 0;
	padding-top: 66.66vh;
	position: relative;
	z-index: -1;
}

#mainimg {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
}


/*メニューブロック設定
---------------------------------------*/
#menubar a {
	display: block;
	text-decoration: none;
}

#menubar ul {
	list-style: none;
	margin: 0;
	padding: 0;
	font-family: "Font Awesome 5 Free";
}

#menubar.d-n, #menubar_hdr.d-n, #menubar .ddmenu_parent ul {
	display: none;
}

#menubar.d-b {
	display: block;
}

#menubar_hdr.d-b {
	display: flex;
}

#menubar {
	position: relative;
	z-index: 1;
	/*スライドショーがある場合に下に隠れないようため*/
	font-size: 18px;
	/*文字サイズ。端末サイズで文字サイズが変わると不具合が出る場合があるので、ここで統一*/
}

@media (width < 900px) {
	#menubar {
		font-size: 24px;
	}
}

/*ドロップダウンメニューのリンクタグ*/
#menubar .ddmenu {
	cursor: default;
	/*リンク要素のカーソルを矢印に変更*/
}

/*ddmenuを指定しているメニューに矢印アイコンをつける設定*/
a.ddmenu::before {
	content: "\f078";
	/*使いたいアイコン名をここで指定。Font Awesomeに記載*/
	font-weight: bold;
	/*この手の設定がないとアイコンが出ない場合があります*/
	margin-right: 0.5em;
	/*アイコンとテキストとの間に空けるスペース*/
	display: inline-block;
	transform: scale(0.7);
	/*元々のサイズの70%に*/
}


/*大きな端末用のメニューブロック設定
---------------------------------------*/
/*メニューブロック全体*/
.p #menubar>nav>ul {
	display: flex;
	/*flexボックスを使う指定*/
	margin-left: 30px;
	/*左側にとるスペース。ロゴとの間の間隔を調整*/
	font-size: 1rem;
	/*文字サイズ*/
	letter-spacing: 0.1em;
	/*文字間隔を少しだけ広くとる*/
}

#menubar nav ul a {
	font-family: "MS 明朝", "ヒラギノ明朝", serif, "ヒラギノ丸ゴ Pro", "Hiragino Maru Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

a.ddmenu::before {
	content: "\f078";
	font-family: "Font Awesome 5 Free";
	/* Font Awesomeのフォントファミリーを指定 */
}

/*メニュー１個あたりの設定*/
.p #menubar a {
	padding: 10px;
	/*メニュー同士の余白*/
}

/*現在表示中（current）のメニュー*/
.p #menubar li.current>a {
	color: #6cc5c9;
	/*文字色*/
}


/*大きな端末用のドロップダウンメニュー
---------------------------------------*/
/*ドロップダウンメニューブロック全体*/
.p #menubar ul ul {
	position: absolute;
	z-index: 100;
	border-radius: 10px;
	/*角を丸くする指定*/
	overflow: hidden;
	text-align: center;
	/*文字をセンタリング*/
	color: #fff;
	/*文字色*/
}

/*メニュー１個あたり*/
.p #menubar ul ul a {
	color: inherit;
	background: rgba(0, 0, 0, 0.7);
	/*背景色。0,0,0は黒のことで0.7は色が70%出た状態*/
	padding: 10px 20px;
	/*上下、左右へのメニュー内の余白*/
}


/*小さな端末用の開閉ブロック
---------------------------------------*/
/*メニューブロック設定*/
.s #menubar.d-b {
	position: fixed;
	overflow: auto;
	z-index: 100;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	padding: 100px 20px 20px;
	/*ブロック内の余白。上、左右、下*/
	background: rgba(108, 197, 201, 0.9);
	/*背景色。0,0,0は黒の事で0.9は色が90%出た状態*/
	text-align: center;
	/*内容をセンタリング*/
	animation: animation1 0.2s both;
	/*animation.cssのanimation1を実行する。0.2sは0.2秒の事*/
	color: #fff;
	/*文字色*/
}

/*メニュー１個あたりの設定*/
.s #menubar a {
	color: inherit;
	padding: 10px;
	/*メニュー内の余白*/
}


/*３本バー（ハンバーガー）アイコン設定
---------------------------------------*/
/*３本バーを囲むブロック*/
#menubar_hdr {
	position: fixed;
	z-index: 101;
	cursor: pointer;
	right: 40px;
	/*右からの配置場所指定*/
	top: 40px;
	/*上からの配置場所指定*/
	padding: 16px 14px;
	/*上下、左右への余白*/
	width: 46px;
	/*幅（３本バーが出ている場合の幅）*/
	height: 46px;
	/*高さ*/
	display: flex;
	/*flexボックスを使う指定*/
	flex-direction: column;
	/*子要素（３本バー）を縦並び*/
	justify-content: space-between;
	/*並びかたの種類の指定*/
}

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

	/*３本バーを囲むブロック*/
	#menubar_hdr {
		right: 20px;
		/*右からの配置場所指定*/
		top: 12px;
		/*上からの配置場所指定*/
	}

}

/*画面幅600px以下の追加指定ここまで*/


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

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

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

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

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

/*SP用子メニュー行間調整*/
@media (width < 900px) {
	#menubar ul ul {
		line-height: 1.5;
	}
}


/*コンテンツ（フッター関連「以外」を囲むブロック）
---------------------------------------*/
/*コンテンツブロック*/
#contents {
	flex: 1;
	padding: 30px;
	/*コンテンツ内の余白*/
}

/*トップページ以外のコンテンツブロック*/
body:not(.home) #contents {
	padding: 0;
}

body:not(.home) #contents main {
	margin-top: 2vw;
}


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

	/*コンテンツブロック*/
	#contents {
		padding: 10px;
		/*コンテンツ内の余白*/
	}

	/*トップページ以外のコンテンツブロック*/
	body:not(.home) #contents {
		padding-top: 0;
		/*上にとる余白*/
	}

}

/*画面幅600px以下の追加指定ここまで*/


/*mainブロック設定
---------------------------------------*/
/*mainブロックの設定*/
main {
	margin: 0 3%;
	/*ブロックの外側に空けるスペース*/
}

/*2カラムの中にある.main要素（頭にドットがない「main」とは異なるので注意）*/
main.column .main {
	margin-bottom: 30px;
	/*ボックスの下に空けるスペース。subとの間の余白*/
}

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

	/*カラムで使う為の指定*/
	main.column {
		display: flex;
		/*flexボックスを使う指定*/
		justify-content: space-between;
		/*並びかたの種類の指定*/
	}

	/*2カラムの中にある.main要素（頭にドットがない「main」とは異なるので注意）*/
	main.column .main {
		margin-bottom: 0;
		order: 2;
		/*並び順。数字の小さい順番に表示*/
		width: 100%;
		/*幅*/
	}

	/*2カラムの中にある.sub要素*/
	main.column .sub {
		order: 1;
		/*並び順。数字の小さい順番に表示*/
		width: 230px;
		/*幅*/
	}

}

/*画面幅900px以上の追加指定ここまで*/


/*h2タグ
---------------------------------------*/
/*h2タグ全体*/
#contents h2 {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 0 0 1rem;
	font-size: 1.5rem;
	position: relative;
	font-weight: normal;
}

#contents h2::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -5px;
	/* ボーダーの位置に合わせる */
	width: 100%;
	height: 5px;
	/* ボーダーの高さに合わせる */
	background-color: #6cc5c9;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
	/* ボーダーに影を追加 */
}

/*アクセントラインの設定*/
#contents h2 .uline {
	display: inline-block;
	position: relative;
	padding: 10px 1rem;
	/*h2内の余白。上下、左右への順番*/
	bottom: -5px;
	/*濃い線を薄い線に重ねる為の指定。枠線の幅と合わせます*/
	font-size: 3rem;
	color: #6cc5c9;
}

.fade {
	animation: fadeIn 0.7s ease 0s 1 normal;
}

/*右側の装飾文字の設定*/
#contents h2 .small {
	font-size: 2rem;
	opacity: 0.7;
	margin-right: 1rem;
	color: #6cc5c9;
}

@media (width < 720px) {
	#contents h2 {
		display: block;
	}

	#contents h2 .uline {
		display: block;
		width: 100%;
		padding: 0;
		bottom: -5px;
		border-bottom: 5px solid #6cc5c9;
		font-size: 2.5rem;
		text-align: right;
	}

	#contents h2 .small {
		display: block;
		width: 100%;
		font-size: 1.8rem;
		color: #6cc5c9;
		margin-bottom: -0.8em;
	}
}


/*h3タグ
---------------------------------------*/
#contents h3 {
	margin: 0 0 1rem;
	/*h3の外側にとるスペース。上、左右、下への順番*/
	font-size: 1.2rem;
	/*文字サイズ*/
	padding: 10px 1rem;
	/*h3内の余白。上下、左右への順番*/
	border-bottom: 2px solid #ddd;
	/*薄い色の線の幅、線種、色*/
	font-weight: normal;
	/*デフォルトの太字を標準に*/
}


/*pタグ
---------------------------------------*/
#contents p {
	margin: 0 1rem 2rem;
	/*pの外側にとるスペース。上、左右、下への順番*/
}

/*微調整*/
#contents p+p {
	margin-top: -1rem;
	/*段落が続いた場合に、少し上に詰める*/
}


/*sub,sideブロック設定
---------------------------------------*/
#contents .sub h3::before, #contents .side h3::before {
	border: none;
	padding: 0;
}

/*ブロック内のh3タグ*/
#contents .sub h3, #contents .side h3 {
	margin: 0;
	border: none;
	font-weight: normal;
	font-size: 1.1rem;
	background: #999;
	/*背景色*/
	box-shadow: 0px 0px 50px rgba(255, 255, 255, 0.6) inset;
	color: #fff;
	/*文字色*/
	text-align: center;
	/*内容をセンタリング*/
	padding: 0.5em;
	/*タグ内の余白*/
}

#contents .sub h3 a, #contents .side h3 a {
	color: inherit;
}


/*サブメニュー設定
---------------------------------------*/
/*サブメニューブロック全体*/
.submenu {
	padding: 0;
	margin: 0 0 1rem;
	/*上、左右、下へのマージン*/
}

/*メニュー１個あたり*/
.submenu li {
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	/*下線の幅、線種、色。0,0,0は黒の事で0.1は色が10%出た状態*/
}

.submenu a {
	display: block;
	text-decoration: none;
	background: #fff;
	/*背景色*/
	padding: 0.2rem 1rem;
	/*上下、左右へのメニュー内の余白*/
}

/*アイコン（Font Awesome）*/
.submenu a::before {
	transition: 0.3s;
	font-family: "Font Awesome 5 Free";
	/*Font Awesomeを使う指定*/
	content: "\f0da";
	/*使いたいアイコン名をここで指定。Font Awesomeに記載*/
	color: #ABABAB;
	/*アイコンの色*/
	padding-right: 0.8em;
	/*アイコンとテキストの間の余白*/
	font-weight: bold;
	/*この設定がないとアイコンが出ない場合があります*/
}

/*マウスオン時のアイコン設定*/
.submenu a:hover::before {
	color: #666;
	/*アイコンの色*/
}


/*box1設定（このテンプレートでは、2カラム時のsubブロックでのみ使用）
---------------------------------------*/
/*ボックス全体の設定*/
.box1 {
	background: rgba(0, 0, 0, 0.05);
	/*背景色。0,0,0は黒の事で0.05は色が5%出た状態*/
	padding: 10px;
	/*ボックス内の余白*/
	border-radius: 5px;
	/*角を丸くする指定*/
	margin-bottom: 1rem;
	/*ボックスの下に空けるスペース*/
}

/*box1内で使った場合、下のマージンをなくす*/
.sub .box1 .submenu {
	margin-bottom: 0;
}


/*フッターメニュー
---------------------------------------*/
/*メニューブロック全体*/
#footermenu {
	margin: 0;
	padding: 20px;
	/*ブロック内の余白*/
	text-align: center;
	/*テキストを中央に*/
	font-size: 0.8rem;
	/*文字サイズ。bodyのfont-sizeの80%*/
	background: #6cc5c9;
}

/*メニュー１個あたり*/
#footermenu li {
	display: inline-block;
	/*簡易的に横並び*/
	padding: 0 10px;
	/*上下、左右への余白*/
}

#footermenu li a:hover {
	color: #fff;
}


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

footer {
	font-size: 0.7rem;
	/*文字サイズ。bodyのfont-sizeの70%*/
	text-align: center;
	/*内容をセンタリング*/
	padding: 20px;
	/*ボックス内の余白*/
	background: #6cc5c9;
}

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

footer a:hover {
	color: #313231;
}

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


/*.listブロック共通
---------------------------------------*/
.list {
	position: relative;
}

/*figure画像*/
.list figure {
	margin-bottom: 2rem;
}


/*３列タイプのボックス
---------------------------------------*/
/*ボックス１個あたり*/
.list-grid .list {
	margin-bottom: 1rem;
	/*ボックス同士の上下間に空けるスペース*/
	padding: 20px;
	/*ボックス内の余白*/
	background: #fff;
	/*背景色*/
	box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
	/*ボックスの影。右へ、下へ、ぼかし幅、0,0,0は黒の事で0.1は色が10%出た状態*/
}

/*ボックス内のh4タグ*/
.list-grid .list h4 {
	margin: 0;
}

/*ボックス内のpタグ*/
.list-grid .list p {
	margin: 0 !important;
	font-size: 0.8em;
	/*文字サイズを80%に*/
	line-height: 1.5;
	/*行間を少し狭く*/
}

/*ボックス内のfigure画像*/
.list-grid .list figure {
	margin-bottom: 1rem;
	/*下に空けるスペース*/
}

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

	/*listブロック全体を囲むブロック*/
	.list-grid {
		display: flex;
		/*flexボックスを使う指定*/
		flex-wrap: wrap;
		/*折り返す指定*/
	}

	/*１個あたりのボックス設定*/
	.list-grid .list {
		width: 32%;
		/*幅。３列になります*/
		margin-right: 2%;
		/*右側へのマージン。ボックス同士の左右の余白です*/
	}

	/*3の倍数目のボックスの右側のマージンをなくす*/
	.list-grid .list:nth-of-type(3n) {
		margin-right: 0;
	}

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

}

/*画面幅900px以上の追加指定ここまで*/


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

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

/*日付(dt)設定*/
.new dt {
	width: 8em;
	/*幅。8文字(em)分*/
}

/*日付の横のマーク（共通設定）*/
.new dt span {
	display: none;
	/*小さな端末では非表示に*/
}

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

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

	/*日付(dt)設定*/
	.new dt {
		width: 14em;
		/*幅。14文字(em)分。アイコン分も含んだ幅*/
		display: flex;
		/*flexボックスを使う指定*/
		justify-content: space-between;
		/*日付とアイコンをそれぞれ端に寄せる*/
	}

	/*日付の横のマーク（共通設定）*/
	.new dt span {
		display: inline-block;
		/*表示させる*/
		width: 7em;
		/*幅。7文字(em)分*/
		background: #363e43;
		/*背景色*/
		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;
		/*上下の配置バランスの微調整*/
		border-radius: 2px;
		/*角を丸くする指定*/
	}

	/*icon-bg1設定*/
	.new dt span.icon-bg1 {
		background: #6cc5c9;
		/*背景色*/
	}

	/*icon-bg2設定*/
	.new dt span.icon-bg2 {
		background: #6b45c3;
		/*背景色*/
	}

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

}

/*画面幅900px以上の追加指定ここまで*/


/*FAQ
---------------------------------------*/
/*FAQボックス全体*/
.faq {
	padding: 0 1rem;
	/*上下、左右へのボックス内の余白*/
}

/*質問*/
.faq dt {
	border-radius: 3px;
	/*枠を角丸指定*/
	margin-bottom: 1rem;
	/*下に空けるスペース*/
	background: #fff;
	/*背景色*/
	border: 1px solid #ccc;
	/*枠線の幅、線種、色*/
	text-indent: -2rem;
	/*テキストのインデント。質問が複数行になった際に、テキストの冒頭を揃える為に設定*/
	padding: 5px 1em 5px 3em;
	/*ボックス内の余白。ここを変更する場合、上のtext-indentも調整*/
}

/*アイコン（Font Awesome）*/
.faq dt::before {
	font-family: "Font Awesome 5 Free";
	/*Font Awesomeを使う指定*/
	content: "\f059";
	/*アイコンのコード*/
	color: #6cc5c9;
	/*アイコンの色*/
	padding-right: 1rem;
	/*アイコンとテキストとの間のスペース*/
}

/*回答*/
.faq dd {
	padding: 5px 1rem 30px 3rem;
	/*ボックス内の余白**/
}

/*opencloseを適用した要素のカーソル*/
.openclose {
	cursor: pointer;
	/*カーソルの形状。リンクと同じスタイルにしてクリックできると認識してもらう*/
}


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

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

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

/*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;
	/*左よせ*/
	background: #bbe1e4;
	/*背景色*/
}

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

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

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

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

}

/*画面幅900px以上の追加指定ここまで*/

@media (max-width: 599px) {
	.ta1 th {
		width: 25%;

	}
}







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

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


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

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

.l {
	text-align: left !important;
}

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

.r {
	text-align: right !important;
}

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

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

.mb0 {
	margin-bottom: 0px !important;
}

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

.look {
	display: inline-block;
	padding: 0px 10px;
	background: #eee;
	border: 1px solid #ccc;
	border-radius: 3px;
	margin: 5px 0;
	word-break: break-all;
}

.small {
	font-size: 0.75em;
}

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

@media screen and (min-width: 900px) {
	.pc_none {
		display: none !important;
	}
}

@media screen and (max-width: 899px) {
	.sp_none {
		display: none !important;
	}
}

.dn {
	display: none !important;
}

.block {
	display: block !important;
}

p.img {
	margin: 0 0 1rem !important;
}


/*オリジナルスライダー内*/
.SliderContainer {
	position: relative;
	display: block;
	box-sizing: border-box;
	max-width: 100vw;
	width: 100vw;
	margin: 0 auto;
	touch-action: pan-y;
}

.SliderContainer p {
	position: absolute;
	top: 30vw;
	display: flex;
	justify-content: center;
	width: 100vw;
	height: 100%;
	font-size: clamp(20px, 3vw, 40px);
	text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.5);
	letter-spacing: 0.3em;
	font-weight: 700;
	color: #fff;
	z-index: 2;

}

.slider {
	position: relative;
	width: 100%;
	padding-bottom: 40vw;
	overflow: hidden;
}

@media (width < 850px) {
	.slider {
		position: relative;
		width: 100%;
		padding-bottom: 60vw;
		overflow: hidden;
	}
}

.items {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	position: absolute;
	z-index: 1;
	top: 0;
	left: -100%;
	width: 100vw;
	height: 65vw;
	margin: 0;
	padding: 0;
}

/*スライド個別表示用
.items p {
	position: absolute;
	top: 30vw;
	display: flex;
	justify-content: center;
	width: 100vw;
	height: 100%;
	font-size: clamp(20px, 3vw, 40px);
	letter-spacing: 0.3em;
	font-weight: 700;
	color: #fff;
	z-index: 2;
}

@media (width < 850px) {
	.items p {
		top: 40vw;
	}
}
*/

.item {
	min-width: 100%;
	height: 100%;
	margin: 0;
}

.item img {
	width: 100vw;
	height: 40vw;
	object-fit: cover;
}

@media (width < 850px) {
	.item img {
		height: 60vw;
	}
}

.buttons {
	position: absolute;
	z-index: 2;
	top: 0;
	left: 0;
	width: 100vw;
	height: 40vw;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

@media (width < 850px) {
	.buttons {
		height: 60vw;
	}
}

.button {
	width: 32px;
	height: 32px;
	border: none;
	outline: none;
	padding: 0;
	background: transparent center no-repeat;
	cursor: pointer;
	opacity: 0.4;
}

.button.prev {
	background-image: url(../images/ico_next_b32.png);
}

.prev {
	margin-left: 1vw;
}

.button.next {
	background-image: url(../images/ico_next_b32-1.png);
}

.next {
	margin-right: 1vw;
}

.button:hover {
	opacity: 0.8;
}


.MainMessage {
	width: 100vw;
	padding-left: 3vw;
	padding-right: 3vw;
}

.MainMessage h2 {
	text-align: center;
	padding: 1em;
	font-size: clamp(18px, 2vw, 35px);
}

.MainMessage p {
	text-align: center;
	font-size: clamp(12px, 1.2vw, 20px);
	line-height: 1.5em;
}


.FlowImage {
	width: 100%;
	padding: 3vw;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 1vw;
	color: #fff;
	list-style: none;
	margin-bottom: 5vw;
	position: relative;
}

.FlowImage li {
	width: 15vw;
	position: relative;
	text-align: center;
}

.FlowImage li span {
	display: block;
	width: 100%;
	position: absolute;
	top: 1.5em;
	left: 0;
	right: 0;
	font-size: clamp(15px, 1vw, 50px);
	text-shadow: 0px 0px 3px rgba(255, 255, 255, 0.4);
	font-weight: 700;
	color: #1c1c1d;
	background-color: rgba(108, 197, 201, 0.5);
}

.FlowImage li p {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	position: absolute;
	bottom: 0;
	font-size: clamp(18px, 1.5vw, 60px);
	text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.6);
	font-weight: 700;
	line-height: 1.2em;
	text-align: center;
	margin: 0 !important;
}

@media (width < 980px) {
	.FlowImage {
		padding: 1.5vw;
	}

	.FlowImage li {
		width: 27vw;
	}

	.FlowImage li span {
		top: 1px;
		font-size: clamp(13px, 1vw, 50px);
	}

	.FlowImage li p {
		font-size: clamp(15px, 1.5vw, 60px);
	}
}



/*　CSSループスライダー
---------------------------------------------------------------------------*/
#loopslider {
	margin: 0 auto;
	width: 500px;
	height: 100px;
	text-align: left;
	position: relative;
	overflow: hidden;
}

#loopslider ul {
	height: 100px;
	float: left;
	display: inline;
	overflow: hidden;
}

#loopslider ul li {
	width: 100px;
	height: 100px;
	float: left;
	display: inline;
	overflow: hidden;
}

#loopslider #loopleft {
	top: 0;
	left: 0;
	width: 20px;
	height: 100px;
	line-height: 100px;
	color: #fff;
	text-align: center;
	font-weight: bold;
	background: #555;
	position: absolute;
	overflow: hidden;
	cursor: pointer;
	z-index: 99;
}

#loopslider #loopright {
	top: 0;
	right: 0;
	width: 20px;
	height: 100px;
	line-height: 100px;
	color: #fff;
	text-align: center;
	font-weight: bold;
	background: #555;
	position: absolute;
	overflow: hidden;
	cursor: pointer;
	z-index: 99;
}

/* =======================================
	ClearFixElements
======================================= */
#loopslider ul:after {
	content: ".";
	height: 0;
	clear: both;
	display: block;
	visibility: hidden;
}

#loopslider ul {
	display: inline-block;
	overflow: hidden;
}

/*下層メインイメージ*/
#under_mainimg-box {
	width: 100%;
	height: 0;
	padding-top: 35vw;
	position: relative;
	z-index: -1;
}

#under_mainimg {
	position: absolute;
	left: 0;
	top: 0;
	width: 100vw;
	height: 35vw;
}

#no_mainimg-box {
	width: 100vw;
	height: 5vw;
}

@media screen and (max-width:1200px) {
	#no_mainimg-box {
		height: 100px;
	}

}

@media screen and (max-width:600px) {
	#under_mainimg-box {
		padding-top: 50vw;
	}

	#under_mainimg {
		width: 100vw;
		height: 50vw;
	}
}

#under_mainimg img {
	object-fit: cover;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}

/* /contactus/qa 通常お問い合わせページ
-----------------------------------------*/
.page_contact {
	padding: 2% 5%;
}

.page_content_top_txt {
	padding: 1.5em;
}

#frmcontact {
	width: 100%;
	padding: 2em;
}

.page_contact_table {
	display: table;
	margin: 0 auto;
	width: 100%;
}

.page_contact_table tbody {
	width: 100%;
	background: #f9f9fa;
	border: 1px solid #6cc5c9;
	border-radius: 5px;
	box-shadow: 3px 3px 1cap rgba(0, 0, 0, 0.1);
}

.page_contact_table tr {
	width: 100%;
	border-bottom: 1px dashed #6cc5c9;
}

.page_contact_table th {
	width: 25%;
	text-align: left;
	padding: 0.5em 1em;
}

.page_contact_table td {
	width: 75%;
	padding: 0.5em 1em;
}

.page_contact_table td input[type="text"],
.page_contact_table td input[type="mail"],
.page_contact_table td input[type="tel"],
.page_contact_table td input[type="zip"] {
	width: 100%;
	padding: 0.5em;
	border: 1px solid #6cc5c9;
}

.page_contact_table td input[type="button"] {
	border: 1px solid #6cc5c9;
	background: #fff;
	padding: 0.3em;
	margin-top: 0.2em;
	color: #6cc5c9;
}

.page_contact_table td input[type="button"]:hover {
	background-color: #6cc5c9;
	/* ホバー時の背景色 */
	color: #fff;
	/* ホバー時のテキスト色 */
}

.page_contact_table td textarea {
	width: 100%;
	min-height: 15em;
	padding: 0.5em;
	border: 1px solid #6cc5c9;
	border-radius: 5px;
}

.page_contact_table label {
	padding-left: 1em;
}

.page_contact_table input {
	border-radius: 5px;
}

.page_confirm_field {
	width: 100%;
	text-align: center;
	margin-top: 1em;
}

.page_checkbox_field {
	margin-right: 1em;
	margin-bottom: 3vw;
}

.page_confirm_field #sendbtn {
	background-color: #6cc5c9;
	/* ボタンの背景色 */
	color: #fff;
	/* ボタンのテキスト色 */
	border: none;
	/* ボーダーを削除 */
	border-radius: 5px;
	padding: 12px 24px;
	/* パディングでボタンの大きさを調整 */
	text-align: center;
	/* テキストを中央揃え */
	text-decoration: none;
	/* テキストの装飾を削除 */
	display: inline-block;
	/* ボタンをインラインブロック要素に */
	font-size: 16px;
	font-weight: 700;
	/* フォントサイズ */
	margin: 4px 2px;
	margin-bottom: 10vw;
	/* マージンでボタンの位置を調整 */
	cursor: pointer;
	/* カーソルをポインタに */
}



/* ホバー時のスタイル */
.page_confirm_field #sendbtn:hover {
	background-color: rgba(108, 197, 201, 0.5);
	color: rgba(255, 255, 255, 0.8);
}

.form_confirm_btn {
	width: 10em;
	padding: 0.5em 1.5em;
	font-weight: 700;
	text-align: center;
	border: 1px solid #6cc5c9;
	border-radius: 5px;
}

.page_confirm_field .form_confirm_btn:first-child {
	background: #677079 !important;
	color: #00182f;
}

.page_confirm_field .form_confirm_btn:last-child {
	background: #6cc5c9;
	color: #fff !important;
}

.form_confirm_btn:hover {
	background: #6cc5c9 !important;
}

@media screen and (max-width:900px) {
	#frmcontact {
		padding: 0;
	}

	.page_contact_table th,
	.page_contact_table td {
		display: block;
		width: 100%;
		padding: 0.5em 1em;
	}

	.page_contact_table th {
		padding-bottom: 0;
	}
}

@media screen and (max-width:550px) {
	.page_contact_table tr:first-child .form_radio_label {
		display: block;
		width: 100%;
	}

	.page_checkbox_field {
		display: block;
		width: 100%;
	}
}



/* GoogleMap */
.map_wrap {
	max-width: 80vw;
	margin: 0 auto;
	margin-bottom: 4vw;
	/* ここに横幅を指定 */
}

@media (max-width: 800px) {
	.map_wrap {
		max-width: 90vw;
	}
}

/* Google Mapを囲う要素 */
.map {
	position: relative;
	width: 100%;
	height: 0;
	padding-top: 60%;
	/* 比率を4:3に固定 */
}

/* Google Mapのiframe */
.map iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}


/*コンタクトフォームボタン*/
.ContactFormBtn {
	width: 100%;
	margin-top: 2vw;
	margin-bottom: 2vw;
	display: flex;
	justify-content: center;
	align-items: center;
}

.ContactFormBtn a.btn--green {
	color: #6cc5c9;
}

.ContactFormBtn a.btn--green:hover {
	color: #6cc5c9;
}

.ContactFormBtn a.btn--green.btn--cubic {
	border-bottom: 5px solid #6cc5c9;
	background: #fff;
}

.ContactFormBtn a.btn--green.btn--cubic:hover {
	margin-top: 3px;
	border-bottom: 2px solid #6cc5c9;
}

.ContactFormBtn a.btn-c {
	font-size: 1.6rem;
	position: relative;
	padding: 1.5rem 3rem 1.5rem 2rem;
	border: 3px solid #6cc5c9;
	border-radius: 100vh;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.ContactFormBtn a.btn-c:hover {
	border: 3px solid #6cc5c9;
	box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
}

.ContactFormBtn a.btn-c i.fa {
	margin-right: 1rem;
}

.ContactFormBtn a.btn-c:before {
	font-family: 'Font Awesome 5 Free';
	font-size: 1.6rem;
	line-height: 1;
	position: absolute;
	top: calc(50% - .8rem);
	right: 1rem;
	margin: 0;
	padding: 0;
	content: '\f054';
}

.spacer {
	margin-top: 5vw;
}

/*会社概要テーブル内改行*/
.CompanyTable span br {
	display: none;
}

@media (max-width: 600px) {
	.CompanyTable span br {
		display: block;
	}
}


/*事業内容*/
/*2カラムブロック（※900px未満では１カラム）
---------------------------------------------------------------------------*/
/*２カラムを囲むブロック*/
.list-half-parts .list-parts {
	display: flex;
	/*flexボックスを使う指定*/
	flex-direction: column;
	/*子要素を縦並びにする*/
	margin-bottom: 2rem;
	/*ボックスの下に2文字分のスペースを空ける*/
}

/* ブロック内のh4見出し */
.list-half-parts .list-parts h4 {
	font-size: clamp(18px, 3vw, 3vw);
	color: #313231;
	position: relative;
	/* 擬似要素のために必要 */
	display: inline-block;
	/* 擬似要素のために必要 */
}

.list-half-parts .list-parts h4::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 1.7vw;
	width: 100%;
	height: 5px;
	/* アンダーラインの太さ */
	background-color: #6cc5c9;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
	/* アンダーラインに影を追加 */
	z-index: -1;
	/* テキストの下に影を表示 */
}


/*画像ブロック共通*/
.list-half-parts .image-l-parts img, .list-half-parts .image-r-parts img {
	border-radius: 10px;
	/*角を丸くする指定。*/
	box-shadow: 10px 10px rgba(0, 0, 0, 0.1);
	/*ボックスの影。右へ、下へ、0,0,0は黒の事で0.1は色が10%出た状態。*/
}

.image-l-parts {
	padding: 4vw;
}

.image-l-parts figure img {
	width: 100%;
	height: auto;
	object-fit: cover;
}

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

	/*２カラムを囲むブロック*/
	.list-half-parts .list-parts {
		flex-direction: row;
		/*子要素を横並びに*/
		justify-content: space-between;
		/*並びかたの種類の指定*/
		align-items: center;
		/*垂直揃えの指定。天地中央に配置*/
	}

	/*画像ブロック共通*/
	.list-half-parts .image-l-parts, .list-half-parts .image-r-parts {
		width: 50%;
		/*画像の幅*/
	}

	/*画像を右に配置する場合*/
	.list-half-parts .image-r-parts {
		margin-left: 2rem;
		/*画像の左側に空けるスペース*/
	}

	/*画像を左に配置する場合*/
	.list-half-parts .image-l-parts {
		order: -1;
		margin-right: 2rem;
		/*画像の右側に空けるスペース*/
	}

	/*テキストブロック*/
	.list-half-parts .text-parts {
		flex: 1;
	}

}

/*追加指定ここまで*/





/*swiper*/
.swiper-slide img {
	height: 22vw;
	width: 34vw;
	object-fit: cover;
	border-radius: 5px;
}

@media(max-width:500px) {
	.swiper-slide img {
		height: 38vw;
		width: 58vw;
		object-fit: cover;
		border-radius: 5px;
	}
}

.swiper-button-next,
.swiper-button-prev {
	color: #6cc5c9 !important;
}


/*up,down,transform1,transform2の共通設定
（待機中の設定）
---------------------------------------------------------------------------*/
.up, .down, .transform1, .transform2 {
	position: relative;
	opacity: 0;
	/*透明度（透明の状態）*/
}


/*up,down,transform1,transform2の共通設定
（要素が見えたら実行するアクションの設定）
---------------------------------------------------------------------------*/
.upstyle, .downstyle, .transform1style, .transform2style {
	opacity: 1;
	/*透明度（色が100%出た状態）*/
	transition: 1s 0.5s;
	/*1sはアニメーションの実行時間1.5秒。0.5sは0.5秒遅れてスタートする指定。*/
}


/*upスタイル。下から上にフェードインしてくるスタイル
---------------------------------------------------------------------------*/
/*待機中の設定*/
.up {
	bottom: -20px;
	/*基準値の下20pxの場所からスタート*/
}

/*要素が見えたら実行するアクション*/
.upstyle {
	bottom: 0px;
	/*基準値まで戻す*/
}


/*downスタイル。上から下にフェードインしてくるスタイル
---------------------------------------------------------------------------*/
/*待機中の設定*/
.down {
	top: -20px;
	/*基準値の上20pxの場所からスタート*/
}

/*要素が見えたら実行するアクション*/
.downstyle {
	top: 0px;
	/*基準値まで戻す*/
}


/*transform1スタイル。その場で回転するスタイル
---------------------------------------------------------------------------*/
/*待機中の設定*/
.transform1 {
	transform: scaleX(0);
	/*幅を0%でスタート*/
}

/*要素が見えたら実行するアクション*/
.transform1style {
	transform: scaleX(1);
	/*幅を100%に戻す*/
}


/*transform2スタイル。倒れた状態から起き上がるスタイル
---------------------------------------------------------------------------*/
/*待機中の設定*/
.transform2 {
	transform: perspective(400px) translateZ(-70px) rotateX(50deg);
}

/*要素が見えたら実行するアクション*/
.transform2style {
	transform: perspective(400px) translateZ(0px) rotateX(0deg);
}


/*blurスタイル。ぼかしで出現するスタイル。
---------------------------------------------------------------------------*/
/*待機中の設定*/
.blur {
	opacity: 0;
	/*透明度（透明の状態）*/
	filter: blur(30px);
	transform: scale(1.1);
}

/*要素が見えたら実行するアクション*/
.blurstyle {
	opacity: 1;
	filter: blur(0);
	transform: scale(1);
	transition: 1s 0.5s;
}


/*transform3スタイル。小さなサイズから原寸大になるスタイル
---------------------------------------------------------------------------*/
/*キーフレーム（アニメーション）設定*/
@keyframes transform3 {
	0% {
		transform: scale(0);
	}

	50% {
		transform: scale(1.05);
	}

	70% {
		transform: scale(0.99);
	}

	100% {
		transform: scale(1);
	}
}

/*待機中の設定*/
.transform3 {
	transform: scale(0);
}

/*要素が見えたら実行するアクション*/
.transform3style {
	animation: transform3 0.8s ease-out 0.5s both;
}


/*list-grid1-parts, list-grid2-parts 共通
---------------------------------------------------------------------------*/
/*list-partsブロック全体を囲むブロック*/
.list-grid1-parts, .list-grid2-parts {
	display: grid;
}

/*ボックス１個あたり*/
.list-grid1-parts .list-parts, .list-grid2-parts .list-parts {
	display: grid;
}

@media (max-width: 499px) {

	.list-grid1-parts .list-parts,
	.list-grid2-parts .list-parts {
		margin-bottom: 5px;
	}
}

/*list内の全ての要素のmarginとpaddingを一旦リセット*/
.list-grid1-parts .list-parts *,
.list-grid2-parts .list-parts * {
	margin: 0;
	padding: 0;
}

/*ボックス内のp要素*/
.list-grid1-parts .list-parts p,
.list-grid2-parts .list-parts p {
	font-size: 0.85rem;
	/*文字サイズを85%に*/
	line-height: 1.5;
	/*行間を少し狭く*/
}

.list-parts a {
	text-align: center;
	text-decoration-line: none !important;
	font-size: 1.5rem;
}


/*list-grid1-parts
---------------------------------------------------------------------------*/

/*画面幅500px以上の追加指定*/
@media screen and (min-width:500px) {

	/*listブロック全体を囲むブロック*/
	.list-grid1-parts {
		grid-template-columns: repeat(2, 1fr);
		/*2列にする指定。4列にしたければrepeat(4, 1fr)とする。*/
		gap: 1rem;
		/*ブロックの間に空けるマージン的な指定*/
	}

}

/*追加指定ここまで*/


/*画面幅800px以上の追加指定*/
@media screen and (min-width:800px) {

	/*listブロック全体を囲むブロック*/
	.list-grid1-parts {
		grid-template-columns: repeat(3, 1fr);
		/*3列にする指定。4列にしたければrepeat(4, 1fr)*/
		gap: 1rem;
		/*ブロックの間に空けるマージン的な指定*/
		place-content: center;

	}

}

/*追加指定ここまで*/


/*ボックス１個あたり*/
.list-grid1-parts .list-parts {
	padding: 1rem;
	/*ボックス内の余白*/
	background: #6cc5c9;
	/*背景色*/
	grid-template-rows: auto 1fr;
	/*１つ目（この場合はfigure要素のサイズ）は自動に、２つ目（この場合はtextブロック））を残った幅で使う*/
	box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
	border-radius: 5px;
}

/*ボックス内のfigure画像*/
.list-grid1-parts .list-parts figure {}

.list-grid1-parts .list-parts figure img {
	width: 100%;
	height: auto;
	object-fit: cover;
	margin-bottom: 0.5rem;
}


/*ボタン
---------------------------------------------------------------------------*/
.list-grid1-parts .btn-parts a {
	display: block;
	text-decoration: none;
	font-size: 1rem;
	text-align: center;
	/*テキストをセンタリング*/
	background: #eee;
	/*背景色*/
	border: 1px solid #999;
	/*枠線の幅、線種、色*/
	padding: 5px 10px;
	/*ボタン内の余白*/
	margin-top: 1rem;
	/*ボタンの上に空けるスペース*/
}

.btn,
a.btn,
button.btn {
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.5;
	position: relative;
	display: inline-block;
	padding: 1rem 4rem;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	text-align: center;
	vertical-align: middle;
	text-decoration: none;
	letter-spacing: 0.1em;
	color: #212529;
	border-radius: 0.5rem;
}

a.btn-svg {
	font-weight: 700;
	line-height: 54px;

	width: 204px;
	height: 54px;
	padding: 0;

	cursor: pointer;
	text-decoration: none;

	background-color: transparent;
}

a.btn-svg svg {
	position: absolute;
	top: 0;
	left: 0;

	width: 100%;
	height: 100%;
}

a.btn-svg svg rect {
	-webkit-transition: all 400ms ease;
	transition: all 400ms ease;

	stroke: #fff;
	stroke-width: 2;
	stroke-dasharray: 200px, 16px;
	stroke-dashoffset: 70px;
}

a.btn-svg:hover svg rect {
	stroke-dashoffset: 284px;
}

a.btn-svg span {
	color: #fff;
}

/*20240723追加修正*/
#BusinessContent .text-parts h4 {
	color: #fff;
}


/*20250519,20250528追加修正*/
.TotalSupport .list-half-parts .list-parts h4 {
	font-size: clamp(15px, 2vw, 2vw);
	margin: 0;
}

.TotalSupport .list-half-parts .list-parts h4::after {
	bottom: 1.2vw;
}

.TotalSupport .list-half-parts .image-l-parts img {
	box-shadow: 10px 10px rgba(108, 197, 201, 0.1);
}

.catchcopy {
	width: 100%;
	text-align: center;
	font-size: 5vw;
	font-weight: 700;
	color: #fff;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
	/* 薄め小さめのテキストドロップシャドウ */
}

.renovation_wrap {
	background: #d4fbf7;
}

.renovation .list-half {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	margin-right: calc(-1 * var(--global-space));
	margin-left: calc(-1 * var(--global-space));
}

.renovation h2 {
	width: 100%;
	text-align: center;
	justify-content: center !important;
	font-size: 2rem !important;
	font-weight: 700 !important;
	color: #6cc5c9;
}

.renovation h2::after {
	display: none;
}

.renovation_text {
	width: 100%;
	text-align: center;
	font-size: 1.2rem;
	margin-bottom: 5vw;
}

.renovation .list-half .text p {
	font-size: 1.5rem;
}

.renovation .list-half h3 {
	writing-mode: vertical-rl;
	text-orientation: upright;
	font-size: 0.85rem;
	margin-top: 10vw;
}

.renovation .list-half h4 {
	font-weight: normal;
	margin-top: 1rem;
	margin-bottom: 1rem;
	font-size: 2.5rem;
	font-weight: 700;
	color: #6cc5c9;
	position: relative;
	padding-right: 100px;
}

.renovation .list-half .text {
	min-height: 540px;
	background: rgba(255, 255, 255, 0.9);
	padding: 1rem 2rem;
	border-radius: 1vw;
	margin-bottom: 0;
	flex: 1;
	align-self: flex-start;
	margin-top: 4vw;
	position: relative;
	z-index: 1;
	margin-right: -10vw;
	box-shadow: 0 0 10px 0.5vw rgba(0, 0, 0, 0.1);
	/* 0位置に黒のシャドウを追加 */
}


.renovation .list-half .image {
	padding: 0;
	width: 50vw;
	border-radius: 3vw 0px 0px 3vw;
	overflow: hidden;
}

.renovation .list-half.reverse {
	flex-direction: row-reverse;
	margin-left: calc(-1 * var(--global-space));
}

.renovation .list-half+.list-half {
	margin-top: 5vw;
}

.renovation .list-half.reverse .text {
	margin-right: 0;
	margin-left: -10vw;
	box-shadow: 0 0 10px 0.5vw rgba(0, 0, 0, 0.1);
}

.renovation .list-half.reverse .image {
	border-radius: 0px 3vw 3vw 0px;
}

.scope_renovation div {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 1%;
	margin-bottom: 1%;
}

.scope_renovation div p {
	margin: 0 !important;
	width: 31%;
}

.scope_renovation div p img {
	border-radius: 10px;
}

.re_center, .recruit_text {
	text-align: center;
	font-size: 1.5rem;
	margin: 2rem 0;
}

.renovation .ContactFormBtn {
	margin-top: 5rem;
	margin-bottom: 8rem;
}


.recruit_type1 {
	font-size: 1.2rem;
}

.recruit_type1 p {
	margin-bottom: -1rem !important;
}

.recruit_type1 h3 {
	position: relative;
	padding-left: 0.8rem !important;
	padding-right: 3rem !important;
	font-size: 2em !important;
	border-bottom: none !important;
}

.recruit_type1 h3::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 10px;
	width: 25vw;
	height: 5px;
	background-color: #6cc5c9;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.recruit_box .ta1 tr {
	border-top: #6cc5c9 solid 5px;
	border-bottom: 5px solid #6cc5c9;
}

.recruit_box .ta1 th {
	font-size: 1.8rem;
	font-weight: 500;
	text-align: center;
}

.recruit_box .ta1 td {
	font-size: 1.2rem;
	font-weight: 500;
}

.recruit_form_title {
	justify-content: center !important;
	font-size: 3rem !important;
	margin-top: 10rem !important;
}

/*　20250525修正追加分　背景　*/
.TotalSupport .list-parts {
	position: relative;
	/* 疑似要素を配置するための基準 */
}

.TotalSupport .list-parts::before {
	content: "";
	/* 疑似要素の内容（空でOK） */
	position: absolute;
	/* 親要素に対して絶対位置 */
	top: 5%;
	left: 0;
	width: 100%;
	/* 横幅100% */
	height: 70%;
	/* 縦幅70% */
	background-color: #d4fbf7;
	/* 背景色 */
	z-index: -1;
	/* コンテンツより背面に配置 */
}

.TotalSupport .text-parts {
	padding: 1.5rem;
	background: #fff;
	margin-right: 1rem;
	margin-top: 10rem;
	min-height: 350px;
}

.TotalSupport .text-parts p {
	font-size: 1.2rem;
}

.TotalSupport .list-half-parts .list-parts:not(:first-child) {
	margin-top: -100px;
}

.TotalSupport .list-half-parts .image-l-parts {
	width: 45%;
	max-width: ;
}

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

	.home .SliderContainer {
		margin-top: 5.5rem;
	}

	.home .SliderContainer p {
		position: initial;
		text-shadow: none;
		color: #000;
	}

	.TotalSupport .text-parts {
		padding: initial;
		background: initial;
		margin-right: initial;
		margin-top: initial;
		min-height: initial;
	}

	.TotalSupport .text-parts p {
		font-size: 1rem;
	}

	.TotalSupport .list-half-parts .image-l-parts {
		width: initial;
	}

	.TotalSupport .list-half-parts .list-parts {
		flex-direction: column-reverse;
	}

	.TotalSupport .list-half-parts .image-l-parts {
		width: initial;
		margin-top: 2rem;
	}

	.TotalSupport .list-half-parts .list-parts {
		margin-bottom: 6rem;
	}

	.TotalSupport .list-parts::before {
		top: initial;
	}

	.renovation h2 {
		font-size: 2rem !important;
		font-weight: 700 !important;
	}

	.renovation .renovation_text {
		font-size: 1rem;
		margin: 0 !important;
		margin-bottom: 2rem !important;
	}

	.renovation .list-half {}

	.renovation .list-half.reverse {
		flex-direction: column-reverse;
		margin-left: calc(-1 * var(--global-space));
	}

	.renovation .list-half {
		flex-direction: column-reverse;
		margin-left: calc(-1 * var(--global-space));
	}

	.renovation .list-half p .renovation .list-half.reverse .text {
		margin-left: 0;
	}

	.renovation .list-half .text {
		margin-right: 0 !important;
		padding: 1rem;
		min-height: initial;
	}

	.renovation .list-half.reverse .text {
		margin-left: 0;
	}

	.renovation .list-half h4 {
		font-size: 1.6rem;
		padding-right: 0;
	}

	.renovation .list-half .text p {
		font-size: 1.2rem;
	}


	.renovation .list-half.reverse .image {
		border-radius: 10px;
	}

	.renovation .list-half .image {
		padding: 0;
		width: 100%;
		border-radius: 10px;
		overflow: hidden;
	}

	.TotalSupport .list-half-parts .list-parts h4 {
		font-size: clamp(21px, 2vw, 2vw);
	}

	.TotalSupport .list-half-parts .list-parts h4::after {
		bottom: 2.5vw;
	}

	.re_center, .recruit_text {
		text-align: center;
		font-size: 1.2rem;
		margin: 2rem 0;
	}

	.recruit_type1 h3::after {
		content: '';
		position: absolute;
		left: 0;
		bottom: 10px;
		width: 65vw;
		height: 5px;
		background-color: #6cc5c9;
		box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
	}

	.recruit_box .ta1 th {
		writing-mode: vertical-rl;
		/* 縦書きにする */
		transform: rotate(0deg);
		vertical-align: middle;
	}

	.recruit_form_title {
		justify-content: center !important;
		text-align: center !important;
	}
}


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

	.ws {
		width: 48%;
		display: inline;
	}

	.sh {
		display: none;
	}

	.pc {
		display: block;
	}

}

/*画面幅900px以上の追加指定ここまで*/