@charset "utf-8";


/*Font Awesomeの読み込み
（fa-solid fa-hand-point-right：ハンド右アイコン、fa-solid fa-hand-holding-heart：手持ちハートアイコン）
---------------------------------------------------------------------------*/
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css");


/*Google Fontsの読み込み
---------------------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');


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


/*CSSカスタムプロパティ（サイト全体を一括管理する為の設定）
---------------------------------------------------------------------------*/
:root {

	--primary-color: #5dbd87;			/*テンプレートのテーマカラー*/
	--primary-inverse-color: #fff;		/*上のprimary-colorの対となる色*/

	--secondary-color: #9b8e68;			/*テンプレートのサブカラー*/
	--secondary-inverse-color: #fff;	/*secondary-colorの対となる色*/
	
	--accent-color: #c43311;			/*テンプレートのアクセントカラー*/
	--accent-inverse-color: #fff;		/*accent-colorの対となる色*/

	/*余白の一括管理用。主に左右の余白に使っています。4rem＝4文字分。*/
	--content-space: 4rem;

	/*オリジナル・カラー */
	--orgn-base-color0: #668CFF;	/*濃い青 */
	--orgn-base-color1: #80B3FF;	/* ↓ 青 */
	--orgn-base-color2: #AACCFF;	/* ↓ 青 */
	--orgn-base-color3: #CADFFF;	/* ↓ 青 */
	--orgn-base-color4: #EEF2FF;	/*薄い青 */
	--orgn-base-color5: #F0F3FF;	/*超薄い青 */
	--orgn-title-color: #fff;		/*動画上タイトル文字色（白） */
	--orgn-back-color: #fff;		/*背景色（白） */
	--orgn-douzo-color: #fcc;		/*どうぞ手ハート色 */
	--orgn-telno-color: #fc6;		/*電話番号色 */
	/*オリジナル文字 */
	--orgn-word-color: #555;		/*基準文字色（濃い灰色） */
	--orgn-word-fsize: 15px;		/*基準文字サイズ */
	--orgn-note-color: #dd0000;		/*注意文字色 */

	--orgn-waku-color: #ddd;		/*テーブル枠線色 */
	--orgn-tblback-color: #fdf5fa;	/*テーブル背景色（薄い桃色） */
	--orgn-tblnote-color: #ff8040;	/*テーブル注意文字色 */
}


/*animation11のキーフレーム設定（汎用的）
---------------------------------------------------------------------------*/
@keyframes animation1 {
	0% {left: -200px;}
	100% {left: 0px;}
}


/*opa1のキーフレーム設定（汎用的）
---------------------------------------------------------------------------*/
@keyframes opa1 {
	0% {opacity: 0;}
	100% {opacity: 1;}
}


/*全体の設定
---------------------------------------------------------------------------*/
body * {box-sizing: border-box;}
html,body {
	font-size: var(--orgn-word-fsize);
}

body {
	margin: 0;	padding: 0;
	font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", Meiryo, "メイリオ", "Osaka", "MS PGothic", "ＭＳ Ｐゴシック", sans-serif;	/*フォント種類（ゴシック）*/
	-webkit-text-size-adjust: none;
	background: var(--orgn-back-color);
	color: var(--orgn-word-color);
	line-height: 2;
	overflow-x: hidden;
}

/*リセット */
figure {margin: 0;}
dd {margin: 0;}
nav,ul,li,ol {margin: 0; padding: 0;}
nav ul {list-style: none;}

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

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

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

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

/*他 */
input {font-size: 1rem;}

/*section余白 */
section {padding: var(--content-space);}


/*リンクテキスト全般の設定
---------------------------------------------------------------------------*/
a {
	color: inherit;
	transition: 0.3s;	/*hoverまでにかける時間：0.3秒 */
	text-decoration: none;
}

/*マウスオン時*/
a:hover {
	filter: brightness(1.1);	/*少しだけ明るくする*/
}


/*ヘッダートップ：追加★
---------------------------------------------------------------------------*/
#hd_top * {margin: 0; padding: 0;}

#hd_top {
	overflow:hidden;
	margin: 0 auto;
/*	height: 32px;*/
	background-color: var(--orgn-base-color3);
}
#hd_top h1 {
	padding: 4px var(--content-space);
	line-height: normal;
	font-size: 70%;
	font-weight: normal;
}


/*ヘッダーボディ：追加★
---------------------------------------------------------------------------*/
#hd_body * {margin: 0; padding: 0;}

#hd_body {
	position: absolute;
	top: 48px;			/*上から48pxの場所に配置 */
	overflow:hidden;
	width: 100%;
	color: var(--orgn-base-color0);	/*文字色 */
	line-height: 100%;				/*行間 */
	display: flex;					/*両端設定 */
	justify-content: space-between;	/*両端設定 */
}
/*ヘッダーボディ：郵便番号、住所、園種別、園名称：追加★
---------------------------------------------------------------------------*/
#office_info {
	padding-left: var(--content-space);
}
#office_info .zipcode {
	margin-top: 6px;
	font-size: 70%;
	text-shadow: 1px 1px 1px #000;
}
#office_info .address {
	margin-top: 2px;
	font-size: 80%;
	text-shadow: 1px 1px 1px #000;
}
#office_info .address2 {
	margin-top: 2px;
	font-size: 80%;
	text-shadow: 1px 1px 1px #000;
}
#office_info .license {
	margin-top: 12px;
	font-size: 120%;
	color: var(--orgn-base-color4);	/*園種別名色 */
	text-shadow: 1px 1px 1px #000;
}
#office_info .nursery {
	margin-top: 18px;
	font-size: 200%;
	font-weight: bold;
	color: var(--orgn-base-color4);	/*園名称色 */
	text-shadow: 2px 2px 2px #000;
}
#office_info .b_hours {
	margin-top: 20px;
	font-size: 100%;
	text-shadow: 1px 1px 1px #000;
}
/*ヘッダーボディ：電話番号、受付時間、入園案内・お問い合わせボタン：追加★
---------------------------------------------------------------------------*/
#tel_info {
	padding-right: var(--content-space);
}
#tel_info .telno span {
	margin-top: -3px;
	color: var(--orgn-douzo-color);	/*どうぞ手ハート色 */
}
#tel_info .telno {
	margin: 14px 0px 0px 15px;
	font-weight: bold;
	font-size: 200%;
	color: var(--orgn-douzo-color);	/*電話番号色 */
	text-shadow: 2px 2px 2px #000;
}
#tel_info .teltime {
	margin-top: 14px;	margin-left: 14px;
	font-size: 95%;
	color: var(--orgn-douzo-color);
	text-shadow: 1px 1px 1px #000;
	line-height: 1.2;
}
/*入園案内・お問い合わせボタン */
#tel_info .qa_btn {
	margin-top: 14px;	margin-left: 14px;
}
#tel_info .qa_btn a {
	font-size: 150%;
	font-weight: bold;
	text-decoration: none;
	display: inline-block;
	background: var(--orgn-base-color0);
	background: linear-gradient(var(--orgn-base-color2), var(--orgn-base-color0));
	color: #fff;
	padding: 16px 16px 16px 16px;
	border-radius: 4px;
	border: 2px ridge var(--orgn-base-color0);
}
#tel_info .qa_btn a:hover {
	color: var(--orgn-base-color0);
	background: #fff;
}


/*フッター：郵便番号、住所、園種別、園名称：追加★
---------------------------------------------------------------------------*/
#footer1 .zipcode {
	margin-top: 0px;
	font-size: 70%;
}
#footer1 .address {
	margin-top: -6px;
	font-size: 80%;
}
#footer1 .address2 {
	margin-top: -6px;
	font-size: 80%;
}
#footer1 .license {
	margin-top: -4px;
	font-size: 120%;
	color: var(--orgn-base-color0);	/*園種別名色 */
	text-shadow: 1px 1px 1px #333;
}
#footer1 .nursery {
	margin-top: -16px;
	font-size: 200%;
	font-weight: bold;
	color: var(--orgn-base-color0);	/*園名称色 */
	text-shadow: 2px 2px 2px #333;
}
#footer1 .b_hours {
	margin-top: -10px;
	font-size: 95%;
}

/*フッター：電話番号、受付時間、入園案内・お問い合わせボタン：追加★
---------------------------------------------------------------------------*/
#footer1 .telno span {
	margin-top: -8px;
	color: var(--orgn-douzo-color);	/*どうぞ手ハート色 */
}
#footer1 .telno {
	margin-top: -4px;
	font-weight: bold;
	font-size: 220%;
	color: var(--orgn-douzo-color);	/*電話番号色 */
	text-shadow: 2px 2px 2px #333;
}
#footer1 .teltime {
	margin-top: -10px;
	font-size: 95%;
	color: var(--orgn-douzo-color);
	text-shadow: 1px 1px 1px #000;
	line-height: 1.2;
}
/*入園案内・お問い合わせボタン */
#footer1 .fqa_btn {
	margin-top: 16px;
}
#footer1 .fqa_btn a {
	font-size: 150%;
	font-weight: bold;
	text-decoration: none;
	display: inline-block;
	background: var(--orgn-base-color0);
	background: linear-gradient(var(--orgn-base-color2), var(--orgn-base-color0));
	color: #fff;
	padding: 3px 16px 3px 16px;
	border-radius: 4px;
	border: 2px ridge var(--orgn-base-color0);
}
#footer1 .fqa_btn a:hover {
	color: var(--orgn-base-color0);
	background: #fff;
}
/*フッター：点線 */
#footer1 .border_dot {
/*	margin-top: -6px;*/
	border-top: 2px dotted #ccc;
}
/*フッター：個人情報保護方針・サイトマップのリンク */
#footer1 .sub_menu {
	margin-top: -16px;
	color: var(--orgn-base-color0);
}
#footer1 .sub_menu a {
	font-size: 100%;
}
#footer1 .sub_menu a:hover {
	font-weight: bold;
}


/*オープン、募集中メッセージ
---------------------------------------------------------------------------*/
#new-top * {margin: 0; padding: 0;}

/*ブロック全体*/
#new-top {
	position: absolute;
	top: 64vh;					/*上から64%の場所に配置 */
	z-index: 1;
	width: 70%;					/*幅は80vm */
	margin-left: 15%;			/*左に10vm空ける */
	display: flex;
	align-items: center;
	padding: 1rem;				/*ボックス内の余白。1文字分 */
	background-color: rgb(0 0 0 / 0.4);	/*背景色 */
	border-radius: 8px;			/*角を丸くする */
}

/*マウスオン時に透明度を80%に */
#new-top a:hover {
	text-shadow: 4px 4px 4px #666;
}

/*テキストのブロック*/
#new-top .text {
	flex: 1;
	
	font-weight:bold;
	font-size: 282%;
	color:var(--orgn-base-color4);
	text-shadow:2px 2px 2px #000;
	text-align: center;
	line-height: 150%;			/*行間 */

	/*幅をオーバーした文字は「・・・」表示 */
/*	min-width: 0;*/
/*	white-space: nowrap;*/
/*	overflow: hidden;*/
/*	text-overflow: ellipsis;*/
}
#new-top .text .recruit {
	color:var(--orgn-douzo-color);
}
#new-top .text .food_free {
	font-size: 79%;
}

/*メニュー表示（初回：PC,タブレット表示、スマホ非表示）
---------------------------------------------------------------------------*/
/*親メニュー全体設定 */
#pc_menu_dsp {
z-index: calc(infinity);	/*最前面表示 */
position: -webkit-sticky;	/*ページ上部へ固定 */
position:         sticky;	/*ページ上部へ固定 */
top: 0;						/*ページ上部へ固定 */
}
.dropmenu {
*zoom: 1;
list-style-type: none;
width: 100%;
margin: 5px auto 30px;
padding: 0 5%;			/*メニュー全体の左右5％空欄にする */
background: var(--orgn-base-color0);
border-top: 1px solid var(--orgn-base-color0);
}
.dropmenu:before, .dropmenu:after {
content: "";
display: table;
}
.dropmenu:after{
clear: both;
}
/*親メニュー個々設定 */
.dropmenu li {
position: relative;
width: 16.66%;			/*メニュー６分割：100%／6＝16.66・・% */
float: left;
margin: 0;
padding: 0;
text-align: center;
}
/*親メニュー個々最後設定 */
/*.dropmenu li:last-child {*/
/*border-right: 1px solid #fff;*/	/*右線：白 */
/*}*/
/*親メニュー個々マウスOFF */
.dropmenu li a {
display: block;
margin: 0;
padding: 15px 0 11px;
border-left: 1px solid #fff;		/*左線：白 */
border-right: 1px solid #fff;		/*右線：白 */
background: var(--orgn-base-color0);/*背景：青 */
color: #fff;						/*文字：白 */
font-size: 95%;
line-height: 1.2;
text-decoration: none;
}
/*親メニュー個々マウスON, カレントページ */
.dropmenu li a:hover, .dropmenu li.current a {
background: #fff;					/*背景：白 */
color: var(--orgn-base-color0);		/*文字：青 */
font-weight: bold;
}
/*親メニュー個々マウスON */
/*.dropmenu li:hover > a {*/
/*  background: #fff;*/	/*var(--orgn-base-color2);	#6e7c0c; */
/*  color: var(--orgn-base-color0);*/	/*追加 */
/*}*/
/*親メニュー個々マウスOFF：カレントページ */
.dropmenu li.current a {
border-left: 1px solid #fff;		/*左線：白 */
border-right: 1px solid #fff;		/*右線：白 */
}
/*子メニュー全体設定 */
.dropmenu li ul {
list-style: none;
position: absolute;
top: 100%;
left: 0;
margin: 0;
padding: 0;
}
/*子メニュー個々設定 */
.dropmenu li ul li {
width: 100%;
}
/*子メニュー個々マウスOFF */
.dropmenu li ul li a {
padding: 13px 15px;
border-top: 1px solid #fff;		/*上線：白 */
border-left: 1px solid #000;	/*左線：黒 */
border-right: 1px solid #000;	/*右線：黒 */
background: rgb(0 0 0 / 0.7);	/*背景：黒（半透明） */
color: #fff;					/*文字：白 */
font-size: 90%;
line-height: 1.2;
text-align: left;
}
/*子メニュー個々マウスON */
.dropmenu li ul li a:hover {
background: rgb(0 0 0 / 0.7);	/*背景：黒（半透明） */
color: #fff;					/*文字：白 */
font-weight: bold;				/*文字強調 */
}

#fade-in {position: relative; z-index: 7;}
#fade-in li ul {
opacity: 0;
visibility: hidden;
transition: .5s;
}
#fade-in li:hover ul {
visibility: visible;
opacity: 1;
}

#smp_menu_dsp {display: none;}		/*▼スマホ用メニューの非表示 */

/*▼スマホメニュー設定
--------------------------------------*/
#smp_menu_dsp {
z-index: calc(infinity);	/*最前面表示 */
position: -webkit-sticky;	/*ページ上部へ固定 */
position:         sticky;	/*ページ上部へ固定 */
top: 0;						/*ページ上部へ固定 */
}
.accordion {
*zoom: 1;
visibility: visible;
z-index: 9;
	clear: both;
	overflow: hidden;
/*	margin: 0;*/
	padding: 0;
	margin: 4px 0 25px 0;
	position: relative;
	width: 100%;
}
.btn-box button {
	position: relative;
	overflow: hidden;
	width: 100%;
	padding: 14px 28px;
	font-size: 100%;
	text-align: left;
	cursor: pointer;
	background: var(--orgn-base-color0);
	border: 1px solid #000;
	color: #fff;
	text-shadow: 1px 1px 1px #000;
}
.btn-box button::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	pointer-events: none;
}
.btn-box button:hover {
	border: 2px solid #04f;		/*枠線：濃い青色 */
}
.more {
	position: relative;
	overflow: hidden;
	z-index: 9;
	max-height: 0;
	transition: max-height 0.5s ease;
	background: var(--orgn-base-color3);
}
.more::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
}
.more.appear {
	max-height: 700px;
}
.more ul {
	margin: 0;
	padding: 8px 28px;
	list-style: none;
	border-left: 1px solid #000;
	border-right: 1px solid #000;
	border-bottom: 1px solid #000;
}
.more li {
	clear: both;
	float: none;
	width: 100%;
	border-bottom: 1px solid rgba(0, 0, 0, 0.5);
	line-height: 1.2;
	font-size: 90%;
}
.more li a {
	display: block;
	position: relative;
	padding: 10px 0 6px 0;
	line-height: 1.2;
	font-size: 90%;
	color: #55f;	/*var(--orgn-base-color0);*/
}
.more li a:hover {
	margin: 0 -10px;
	padding-left: 10px;
	padding-right: 10px;
	background: rgba(255, 255, 255, 0.5);
	font-weight:bold;
}
.more li:last-child {
	border-bottom: none;
}


/*コンテナー（サイト全体を囲むブロック）
---------------------------------------------------------------------------*/
#container {
	position: relative;
	animation: opa1 1s 1s both;	/*1秒待機し、1秒かけてフェードイン*/
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	margin: 0 auto;
}


/*コンテンツ
---------------------------------------------------------------------------*/
/*コンテンツブロック*/
#contents {
	flex: 1;
}

/*トップページ以外のコンテンツ*/
body:not(.home) #contents {
	padding-top: 10rem;		/*上に10文字分の余白を空ける*/
	padding-bottom: 10rem;	/*下に10文字分の余白を空ける*/
}

/*コンテンツ内で使用するul,ol要素（リストタグ）*/
#contents ul,#contents ol {
	margin-left: 2rem;
	margin-right: 2rem;
}


/*p要素（段落タグ）
---------------------------------------------------------------------------*/
p {
	margin-left: 1rem;	/*左に１文字分のスペース*/
	margin-right: 1rem;	/*右に１文字分のスペース*/
}


/*main（メインコンテンツ）
---------------------------------------------------------------------------*/
/*h2見出し*/
main h2 {
	margin: 0;padding: 0;
	font-size: 2.4rem;		/*文字サイズ。240%。*/
	font-weight: normal;	/*h要素のデフォルトの太字を標準に*/
	margin-bottom: 5vw;		/*下にスペースを空ける*/
	display: flex;
	flex-direction: column-reverse;
	align-items: flex-start;
	color: var(--orgn-word-color);	/*文字色 */
}

/*見出し内のspan（小さな装飾文字と上部のアクセントライン）*/
main h2 span.small {
	display: inline-block;
	border-top: 2px solid var(--orgn-base-color1);
	font-size: 0.9rem;		/*文字サイズ90%*/
	opacity: 0.6;			/*透明度。色が60%出た状態。*/
	letter-spacing: 0.1rem;	/*文字間隔を少しだけ広く*/
	padding-top: 2rem;		/*上に空ける余白。ラインとの間の余白調整です。お好みで。*/
}

/*見出しをセンタリングする場合*/
main h2.c {
	align-items: center;
}


/* パンくずインデックス
---------------------------------------------------------------------------*/
.panidx {
	background: var(--orgn-base-color4);
	padding: 10px 20px;
	margin-top: 20px;
	margin-bottom: 20px;
	border-radius: 5px;
}
.panidx li {
	display: inline;
	padding: 0 5px;
	font-size: 90%;
}
.panidx li::before{
	content: ">";
	padding-right: 12px;
	color: #999;
}
.panidx li:first-child::before {
	content: none;
}


/*私たちのこだわり：2カラムブロック　※961px未満では１カラム
---------------------------------------------------------------------------*/
.list-half * {margin: 0; padding: 0;}

/*背景画像 */
#kodawari {
/*	下記「background: url(・・・」記述はHTMLソースへ移動 */
/*	background: url("../images/bg-kodawari.png") no-repeat left top / 50vw;*/
	/*left(左)、top(上)に配置し、幅は画面幅の50%に */
}

/*２カラムを囲むブロック */
.list-half .list {
	display: flex;			/*flexボックスを使う指定 */
	flex-direction: column;	/*子要素を縦並びにする */
	margin-bottom: 2rem;	/*ボックスの下に2文字分のスペースを空ける */
}

/*ブロック内のh4見出し */
.list-half .list h4 {
	font-size: 1.4rem;		/*文字サイズを1.4倍 */
	margin-bottom: 1rem;	/*下に１文字分のスペースを空ける */
}

/*ブロック内のh4内のspan（小さな装飾文字） */
.list-half .list h4 span {
	display: block;
	opacity: 0.5;			/*透明度50% */
	font-weight: normal;
	font-size: 0.5em;		/*文字サイズを親要素の50% */
	letter-spacing: 0.1em;	/*文字間隔をほんの少し広く */
}

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


/*サービス紹介
---------------------------------------------------------------------------*/
.list-grid7 .list * {margin: 0;padding: 0;}
/*ボックス１個あたり*/
.list-grid7 .list {
    display: grid;
	position: relative;
	border-radius: 5px;		/*角を少しだけ丸く*/
	background: var(--secondary-inverse-color);
	color: var(--orgn-word-color);
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
	padding: 2rem;			/*ボックス内の余白。２文字分。*/
	margin-bottom: 2rem;	/*ボックスの下に空けるスペース。2文字分。*/
}
/*ボックス内のh4見出し*/
.list-grid7 .list h4 {
	text-align: center;		/*テキストをセンタリング*/
	font-size: 1.3rem;		/*文字サイズ130%*/
	margin-bottom: 0.5rem;	/*下に0.5文字分の余白を空ける*/
	color: var(--orgn-base-color1);
}
/*h4内のspan（小さな装飾文字）*/
.list-grid7 .list h4 span {
	display: block;
	font-weight: normal;	/*デフォルトだと太字なので標準に*/
	font-size: 0.7em;		/*文字サイズを70%*/
}
/*ボックス内のp要素*/
.list-grid7 .list p {
	font-size: 0.85rem;	/*文字サイズを85%に*/
	line-height: 1.5;	/*行間を少し狭く*/
}
/*ボックス内のfigure画像*/
.list-grid7 .list figure {
	margin: 0 auto;
	margin-bottom: 1rem;	/*画像の下に空けるスペース*/
}
.list-grid7 .list figure a {transition: 0s;}
.list-grid7 .list figure a:hover {filter: brightness(1);}

/*ボックス内のp要素の電話番号とボタン：追加★ */
.list-grid7 .list p a {
	font-size: 120%;
	font-weight: bold;
	text-align: right;	float:right;
	text-decoration: none;
	display: inline-block;
	background: var(--orgn-base-color0);
	background: linear-gradient(var(--orgn-base-color2), var(--orgn-base-color0));
	color: #fff;
	padding: 1px 5px 0px 5px;
	border-radius: 4px;
	border: 2px ridge var(--orgn-base-color0);
}
.list-grid7 .list p a:hover {
	color: var(--orgn-base-color0);
	background: #fff;
}
.list-grid7 .list p span {
	color: var(--orgn-base-color0);
	font-weight: bold;
	text-shadow: 1px 1px 1px #000;
}


/*よくある質問ブロック
---------------------------------------------------------------------------*/
/*ブロック全体 */
.faq {
/*	font-size: 1.3rem;*/	/*文字サイズ130%*/
	border-bottom: 1px solid rgba(128,128,128,0.3);
	/*下線の幅、線種、最後は色の指定で255,255,255は白の事で0.3は色を30%出す指定 */
}
/*質問 */
.faq dt {
	display: flex;
	align-items: flex-start;
	border-top: 1px solid rgba(128,128,128,0.3);
	/*上の幅、線種、最後は色の指定で255,255,255は白の事で0.3は色を30%出す指定 */
	padding: 1rem;		/*ブロック内の余白。１文字分 */
	cursor: pointer;	/*カーソルの形状。リンクと同じスタイルにしてクリックできると認識してもらう */
	color: var(--orgn-word-color);
}
/*「＋」アイコン（閉じている場合） */
.faq dt::before {
	content: "＋";	/*アイコン画像の指定*/
	margin-right: 1rem;	/*右側に空けるスペース*/
	flex-shrink: 0;
	background: var(--orgn-base-color1);
	color: var(--primary-inverse-color);
	width: 2rem;		/*幅*/
	line-height: 2rem;	/*高さ*/
	text-align: center;
	border-radius: 50%;	/*円形にする*/
	transform: translateY(5px);	/*アイコンの上下バランスの微調整 */
}
/*「－」アイコン（開いている場合） */
.faq dt.active::before {
	content: "－";	/*アイコン(－)画像の指定 */
}
/*回答 */
.faq dd {
	margin: 0 1rem 1rem 4rem;	/*ボックスの外側にとる余白。上、右、下、左への順番 */
	padding: 1rem 2rem;	/*ボックスの内側の余白。上下に1文字、左右に２文字分 */
	background: var(--orgn-base-color4);
	color: #333;
	border-radius: 5px;	/*角を丸くする指示 */
}
.faq dd a, #notice dd a, #notice p a {color: var(--orgn-base-color0);}
.faq dd a:hover, #notice dd a:hover, #notice p a:hover {font-weight: bold;}


/*お知らせブロック
---------------------------------------------------------------------------*/
#notice {
	flex: initial;
	margin: 0;
	font-size: 100%;
}
#notice dl {
	padding: 8px 20px;
	border: 2px solid var(--orgn-word-color);	/*var(--orgn-waku-color);*/
	border-radius: 8px;
	color: var(--orgn-word-color);
}
#notice dt {
	float: left;
	width: 11em;
	letter-spacing: 0.1em;
}
#notice dd {
	padding-left: 11em;
	border-bottom: 1px solid var(--orgn-word-color);	/*var(--orgn-waku-color);*/
}
#notice dd:last-child {
	border-bottom: none;
}
#notice dt span {
	background: var(--orgn-note-color);
	color: var(--orgn-back-color);
	font-size: 70%;
	line-height: 1.5;
	padding: 2px 5px;
	border-radius: 2px;
	margin: 0px 5px;
	vertical-align: middle;	/*text-top;*/
}


/*波のアニメーション
---------------------------------------------------------------------------*/
/*アニメーション*/
@keyframes move-wave {
0% { transform: translateX(0); }
100%   { transform: translateX(-50%); }
}

/*波を囲む全体のブロック*/
.wave-section {
	position: relative;
	
	/*以下の３行の数字については、下のwaveのheight(波の高さ)から1を差し引いた形です。隙間が出る場合があるのでそれが出ないようにしています。*/
	padding-top: 79px;
	top: -79px;
	margin-bottom: -79px;
}

/*波の色（２つとも揃えておけばOK）*/
.wave-section .text {
	background: var(--orgn-base-color4);	/*背景色。css冒頭のprimary-colorを読み込みます。*/
}
.wave-wrap use {
	fill: var(--orgn-base-color4);			/*塗りつぶしの色。css冒頭のprimary-colorを読み込みます。*/
}

/*上下の波（共通）*/
.wave {
	position: absolute;
	left: 0;
	width: 100%;
	height: 80px;	/*波の高さ。ここを変更する場合は上の.wave-sectionの３箇所の数字も合わせて変更して下さい。*/
}
.wave svg {
	display: block;
	width: 100%;
	height: 100%;
}

.wave .wave-wrap {
	transform-box: fill-box;
	transform-origin: 0 0;
	animation: move-wave 10s linear infinite;	/*ここの10sを変更すれば波のアニメーション速度が変わります*/
}

/*上の波*/
.wave-top {
	top: 0;
}

/*下の波*/
.wave-bottom {
	bottom: 0;
	transform: rotate(180deg);
}


/*フッター
---------------------------------------------------------------------------*/
#footer * {margin: 0 auto; padding: 0;}

/*ブロック全体*/
#footer {
	position: relative;
	clear: both;
	overflow: hidden;
	background-color: var(--orgn-base-color4);
	color: var(--orgn-word-color);
	padding: var(--content-space);	/*フッター内の余白。css冒頭のcontent-spaceを読み込みます。*/
	width: 100%;
	height: 512px;
/*border: 4px solid #000;*/	/*確認枠 */
}

/*フッター：各種名称、ボタン、リンク等 */
#footer1 {
	position: absolute;
	top: var(--content-space);
	left: var(--content-space);
	float: left;
	width: 43%;
/*border: 2px solid #333;*/	/*確認枠 */
}

/*フッター：Google Map */
#footer2 {
	position: absolute;
	top: var(--content-space);
	right: var(--content-space);
	float: right;
	width: 43%;
/*border: 2px solid #333;*/	/*確認枠 */
}
#footer2 h3 {
	display: block;
	font-size: 120%;
	color: var(--orgn-base-color0);
}
#footer2 .iframe iframe {
	width: 100%;
	height: 354px;		/*マップ高さ（PC） */
}


/*フッターメニュー
--------------------------------------*/
#footermenu {
	position: relative;
	clear: both;
	overflow: hidden;
	background-color: var(--orgn-base-color4);
	color: var(--orgn-word-color);
	margin: 0;
	padding: 0px var(--content-space);
	width: 100%;
	height: 152px;
/*border: 2px solid #f00;*/	/*確認枠 */
}
#footermenu .inner {
	display: block;
}
#footermenu ul {
	list-style-type: none;
	float: left;
	width: 19%;
	margin-left: 1%;
}
#footermenu ul li {
	color: var(--orgn-base-color0);
	padding: 0 10px;
	font-size: 90%;
	line-height: 1.4;
}
#footermenu li.title {
	background: var(--orgn-base-color0);
	border-radius: 4px;
	padding-top: 4px;
	line-height: 1.2;
	padding-bottom: 2px;
}
#footermenu li.title a {
	color: #fff;
	text-decoration: none;
}
#footermenu a {
	color: var(--orgn-base-color0);
	text-decoration: none;
	vertical-align: bottom;
}
#footermenu a:hover {
	font-weight: bold;
}

#ft_mini_menu {display: none;}			/*▼フッターメニュー（スマホ用）の非表示 */


/*SNSボタン（Facebook, LINE, Twitter）
---------------------------------------------------------------------------*/
#sns_btn {
	clear: both;
/*	overflow:hidden;*/
	margin: auto;
	width: 100%;
	height: 36px;
	text-align: center;
	position: relative;
/*border: 2px solid #333;*/	/*確認枠 */
}
#sns_btn .s_btn {
	width: 100%;
}
#sns_btn .s_btn1 {
	text-align: center;
	position: absolute;
	top:-12px;
	left:14%;
/*	border: 2px solid #333;*/
}
#sns_btn .s_btn2 {
	text-align: center;
	position: absolute;
	left:46%;
/*	border: 2px solid #333;*/
}
#sns_btn .s_btn3 {
	text-align: center;
	position: absolute;
	left:76%;
/*	border: 2px solid #333;*/
}


/*Copyright、著作部分（※意図的に見えなくしたりしないで下さい。規約違反になります。）
---------------------------------------------------------------------------*/
#ft_bottom {
	clear: both;
/*	overflow: hidden;*/
	display: block;
	width: 100%;
	height: 46px;
	background-color: var(--orgn-base-color3);
	font-size: 70%;
	margin: -3px 0 3px 0;
	padding: 0;
	text-align: center;
	line-height: 120%;
/*	vertical-align: top;*/	/*middle;*/
/*border: 2px solid #f00;*/	/*確認枠 */
}
/*著作部分 */
#ft_bottom a {font-size: 100%;}
#ft_bottom .cpr a:hover {font-weight: bold;}
#ft_bottom .pr a:hover {filter: brightness(1.1);}	/*少しだけ明るくする*/
#ft_bottom .pr a::before {
	font-family: "Font Awesome 6 Free";
	content: "\e2ca";
	font-weight: bold;
/*	margin-right: 0.5em;*/
}


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

/*ボタンの設定*/
.pagetop a {
	display: block;text-decoration: none;text-align: center;z-index: 99;
	animation: opa1 1s 0.4s both;
	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%出た状態。*/
background: rgba(0,0,0,0.2);
border: 2px solid #ccc;
	width: 56px;		/*幅60*/
	line-height: 54px;	/*高さ*/
	border-radius: 10%;	/*50%:円形にする */
}
.pagetop a:hover {
background: #fff;
border: 2px solid #999;
color: #999;
}


/*bg1
---------------------------------------------------------------------------*/
.bg1 {
	background: var(--orgn-base-color3);		/*背景色。css冒頭のsecondary-colorを読み込みます。*/
	color: var(--secondary-inverse-color);	/*背景色。css冒頭のsecondary-inverse-colorを読み込みます。*/
}


/*テキストのフェードイン設定
---------------------------------------------------------------------------*/
/*fadeInのキーフレーム設定*/
@keyframes fadeIn {
	0% {opacity: 0;transform: scale(0.1) rotate(-30deg);}
	100% {opacity: 1;transform: scale(1) rotate(0deg);}
}

/* 初期状態でテキストを非表示にする */
.fade-in-text {
    visibility: hidden;
}

/* アニメーションを適用するクラス。
animationの行の「0.2s」が文字の出現のなめらかさで、大きいほどなめらかに出てきます。
１文字ずつの出現する際の時差は、js/main.jsの「テキストのフェードイン効果」の中にある「0.1」で調整できます。*/
.char {
    display: inline-block;
    opacity: 0;
    animation: fadeIn 0.2s linear both;
}


/*マニュアルページ用
---------------------------------------------------------------------------*/
#manual {background-image: none;}
.manual {
	padding: 5rem;
}
.manual h2,.manual h3 {
	margin-top: 3rem;
}
pre {white-space: pre-wrap;word-wrap: break-word;overflow-wrap: break-word;}


/*その他
---------------------------------------------------------------------------*/
.clearfix::after {content: "";display: block;clear: both;}
.color-check, .color-check a {color: #ff0000 !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;}
.mb5rem {margin-bottom: 5rem !important;}
.look {display: inline-block;padding: 0px 10px;background: #eee;border: 1px solid #ccc; color: #888; border-radius: 3px;margin: 5px 0; word-break: break-all;}
.small {font-size: 0.75em;}
.large {font-size: 2em; letter-spacing: 0.1em;}
.pc {display: none;}
.dn {display: none !important;}
.block {display: block !important;}
.colorWN {color: var(--orgn-note-color) !important;}








/* ■PC用（961px以上）
----------------------------------------------------------*/
@media only screen and (min-width:961px) {

html, body {font-size: 100%;}	/*基準文字サイズ */

/*私たちのこだわり */
.list-half .list {
	flex-direction: row;			/*子要素を横並びにする */
	justify-content: space-between;	/*並びかたの種類の指定 */
	align-items: center;			/*垂直揃えの指定。天地中央に配置されるように */
}
.list-half .image-l, .list-half .image-r {
	width: 50%;			/*画像の幅 */
}
.list-half .image-r {
	margin-left: 2rem;	/*画像の左側に空けるスペース */
}
.list-half .image-l {
	order: -1;
	margin-right: 2rem;	/*画像の右側に空けるスペース */
}
.list-half .text {
	flex: 1;
}

/*サービス紹介（PCまで３列、それ以下は１列） */
.list-grid7 {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
				/*3列にする指定。4列にしたければrepeat(4, 1fr)とする */
	gap: 2rem	/*ブロックの間に空けるマージン的な指定。２文字分 */
}

/*その他 */
.ws {width: 48%;display: inline;}
.sh {display: none;}
.pc {display: block;}

}









/* ■PAD用（768px～960px）
----------------------------------------------------------*/
/*@media only screen and (min-width:768px) and (max-width:960px) {*/
@media only screen and (max-width:960px) {

html, body {font-size: 90%;}	/*基準文字サイズ */

/*オープン、募集中メッセージ */
#new-top {top: 72vh;}
#new-top .text {font-size: 265%;}

/*パンくずインデックス */
.panidx li {font-size: 80%;}

/*SNSボタン（Facebook, LINE, Twitter） */
#sns_btn .s_btn1 {top:-6px;}

/*フッター */
#footer {height: 450px;}		/*512px→450px */
#footer1 .sub_menu a {font-size: 120%;}
#footer2 .iframe iframe {height: 300px;}	/*354px→300px */

}








/* ■スマホ用（375px～428pxだが、767px以下に設定）
------------------------------------------------------------*/
/*@media only screen and (min-width:375px) and (max-width:428px) {*/
@media only screen and (max-width:767px) {

/*section余白 */
section {padding: var(--content-space) 4%;}

/*ヘッダートップ */
#hd_top h1 {padding: 4px 4%;}

/*ヘッダーボディ */
#hd_body {
	clear: both;		/*横並び解除し縦並びへ */
	display: block;		/*横並び解除し縦並びへ */
}
#office_info {
	padding-left: 0px;	/*左paddingが残っているのでゼロクリア */
	text-align: center;	/*ヘッダーボディ部：文字中央寄せ */
}
#tel_info {
	padding-right: 0px;	/*右paddingが残っているのでゼロクリア */
	text-align: center;	/*ヘッダーボディ部：文字中央寄せ */
}

#pc_menu_dsp {display: none;}	/*▲PC用メニューの非表示 */
#smp_menu_dsp {display: block;}	/*▼スマホ用メニューの表示 */

/*オープン、募集中メッセージ */
#new-top {
	top: 81vh;
	width: 90%;
	margin-left: 5%;
	padding: 2%;
}
#new-top .text {font-size: 160%;}

/*パンくずインデックス */
.panidx li {font-size: 70%;}

/*SNSボタン（Facebook, LINE, Twitter） */
#sns_btn .s_btn1 {top:-6px; left:4%;}
#sns_btn .s_btn2 {left:41%;}
#sns_btn .s_btn3 {left:76%;}

/*フッター */
#footer {height: 846px;}	/*450px→846px */
#footer1 {
	left: 0;
	clear: left;
	width: 92%;
	padding: 0 1% 0 7%;
	text-align: center;
}
#footer2 {
	top: 420px;
	left: 0;
	clear: right;
	width: 92%;			/*下のpadding合計と合わせて100%になるように！ */
	padding: 0 1% 0 7%;	/*上のwidthと合わせて100%になるように！ */
	text-align: center;
}
#footer2 h3 {font-size: 22px;}
#footer2 .iframe iframe {height: 354px;}	/*300px→354px元に */

/*フッターメニュー（スマホ用）--------*/
#footermenu {display: none;}			/*▲フッターメニュー（PC用）の非表示 */
#ft_mini_menu {display: block;}			/*▼フッターメニュー（スマホ用）表示 */

#ft_mini_menu {
	clear: both;
	overflow: hidden;
	background: var(--orgn-base-color4);
}
#ft_mini_menu .inner {
	width: 90%;
	padding: 0px 5% 48px;
}
#ft_mini_menu .inner a {
	line-height: 1.5;
/*	font-size: 12px;*/
}
#ft_mini_menu .title {
	background: var(--orgn-base-color3);
	border-radius: 2px;
	padding: 1px 4px 0;
}
#ft_mini_menu .title a {color: #fff;}

}
