@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");



/*■■全体の設定
---------------------------------------------------------------------------*/
html,body {
	height: 100%;
	}

body {
	font-family:"Hiragino Kaku Gothic ProN","Hiragino Maru Gothic ProN","メイリオ","Meiryo","ＭＳ Ｐゴシック","MS PGothic",Sans-Serif, verdana;	/*フォント種類（ゴシック）*/
	-webkit-text-size-adjust: none;
	background: #fff;	/*背景色*/
	color: #000;		/*文字色*/
	line-height: 1.5em;		/*行間*/
	border-top: 5px solid #3863BA;	/*上の線の幅、線種、色*/
	opacity: 0;
	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 {font-size: 1rem;}
section + section {
	margin-top: 3rem;
	}


/*■■文字の設定
---------------------------------------------------------------------------*/
.t1{ text-align: right;}

/*「大」ボタンを押した時の文字サイズ*/
body.f-large {
	font-size: 18px;
}
h1 {font-size: 24px; }
h2 {font-size: 16px; }
h3 {font-size: 16px }
h4 {font-size: 16px } 
h5 {font-size: 16px } 

/*「小」ボタンを押した時の文字サイズ*/
body.f-small {
	font-size: 15px;
	}
/*字句修正*/
ins {
  color: red;
  text-decoration: none;
  border-bottom: 1px dotted red;
}

/*■■リンク文字の設定
---------------------------------------------------------------------------*/
a {
	color: #3863BA;
	transition: 0.3s;	/*hoverまでにかける時間。0.3秒。*/
	text-decoration: none;
	}

/*マウスオン時*/
a:hover {
	filter: brightness(1.5);	/*★明るくする*/
	}


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


/*■■コンテンツ（フッター関連以外のブロック）
---------------------------------------------------------------------------*/
#contents {
	flex: 1;
	padding: 0 3% 100px;	/*上、左右、下への余白。下の余白は、ここのbackgroundの画像読み込み分に、適当な余白をプラスして指定しています。*/
	background: url(../images/footer_bg.png) repeat-x center bottom / auto 120px;	/*下部の背景画像の読み込み。最後の120pxというのが画像の高さの指定部分です。*/
	}


/*■■header（ロゴおよび文字サイズ選択ボタンの領域）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	padding: 10px 0;	/*上下、左右へのブロック内の余白*/
	position: relative;	/*文字サイズボタンや、言語ボタンを絶対配置する為に必用な指定*/
	min-height: 100px;	/*最低限の高さ*/
	}

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

	/*ヘッダーブロック*/
	header {
		display: flex;			/*flexボックスを使う指定*/
		align-items: center;	/*垂直揃えの指定。天地中央に配置されるように。*/
		padding-right: 230px;	/*文字サイズや言語ボタンと重ならないようにする為、適当に余白をとっておきます*/
	}
	
	}/*画面幅900px以上の追加指定ここまで*/


/*ロゴ*/
#logo {
	margin: 0;
	margin-bottom: 10px;	/*下に空けるスペース*/
	width: 300px;	/*幅*/
	}

/*大きな端末用のロゴを非表示に*/
.pc-logo {
	display: none;
	}


/*画面幅500px「以下」の追加指定。言語バーにロゴが重ならないようにする為。*/
	@media screen and (max-width:500px) {
	
	/*ロゴ*/
	#logo {
		width: calc(100% -220px);
		}
	/*ロゴの幅。-220pxというのは、言語サイズのボックスと、ハンバーガーアイコンを合わせたおおよその幅で、
	それを差し引いたサイズをロゴの幅とする。*/
	
	
	}/*画面幅500px「以下」の追加指定ここまで*/


/*画面幅650px以上の追加指定*/
	@media screen and (min-width:650px) {
	
	/*ロゴ*/
	#logo {
		margin-bottom: 0;
		margin-right: 3%;
		width: 300px;	/*幅*/
	}
	
	/*小さな端末用のロゴを非表示に*/
	.sh-logo {
		display: none;
	}
	
	/*大きな端末用のロゴを表示する*/
	.pc-logo {
		display: block;
	}

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


/*ヘッダーの中央に配置するブロック*/
#header-center {
	display: none;	/*非表示にする*/
	text-align: center;
}

	/*画面幅900px以上の追加指定*/
	@media screen and (min-width:900px) {
	
	/*ヘッダーの中央に配置するブロック*/
	#header-center {
		display: flex;				/*flexボックスを使う指定*/
		align-items: center;		/*垂直揃えの指定。天地中央に配置されるように。*/
		width: calc(100% - 300px);	/*pxの数値はロゴのwidth*/
		}
	#header-center * {
		margin: 3px;	/*サンプルテンプレートでは、バナー同士に空けるスペースで使っています。*/
		}
	
}/*画面幅900px以上の追加指定ここまで*/

/*■■文字サイズ変更ボタン
---------------------------------------------------------------------------*/
/*ボタンブロック全体*/
#f-size {
	background: #fff;	/*背景色*/
	box-shadow: 0px 0px 8px rgba(0,0,0,0.2);	/*影の設定。右へ、下へ、ぼかし幅。rgbaは色設定で0,0,0は黒。0.2は20%色がついた状態の事。*/
	border-radius: 0px 0px 5px 5px;	/*角丸のサイズ。左上、右上、右下、左下への順。*/
	display: flex;			/*flexボックスを使う指定*/
	align-items: center;	/*垂直揃えの指定。天地中央に配置されるように。*/
	padding: 10px 15px;		/*ブロック内の余白。上下、左右へ。*/
	position: absolute;		/*headerに対して絶対配置する*/
	right: 0px;				/*右からの配置場所*/
	top: 0px;				/*上からの配置場所*/
}

	/*画面幅900px「以下」の追加指定。ハンバーガーアイコンが出る分、位置をずらす。*/
	@media screen and (max-width:900px) {
	
	#f-size {
		right: 80px;
	}
	
	}/*画面幅900px「以下」の追加指定ここまで*/


/*「文字サイズ」のテキスト*/
#f-size p {
	margin: 0;
	margin-right: 10px;	/*右側に空けるスペース。ボタンとの間にとるスペースです。*/
	font-size: 0.85rem;	/*文字サイズ*/
	}

	/*画面幅500px「以下」の追加指定。*/
	@media screen and (max-width:500px) {
	
	#f-size p {
		display: none;	/*画面が狭くなるので、非表示にする*/
	}
	
	}/*画面幅500px「以下」の追加指定ここまで*/


/*文字の「大」「小」ボタン選択*/
#f-size ul {
	list-style: none;margin: 0;padding: 0;
	display: flex;			/*flexボックスを使う指定*/
	align-items: center;	/*垂直揃えの指定。天地中央に配置されるように。*/
	}
	
/*「大」ボタン*/
#f-size ul li#f-large::before {
	display: block;
	content: "大";		/*「大」の文字を出力*/
	font-size: 25px;	/*文字サイズ*/
	width: 50px;		/*幅*/
	line-height: 50px;	/*高さ*/
	text-align: center;	/*内容をセンタリング*/
	background: #eee;	/*背景色*/
	}

/*「小」ボタン*/
#f-size ul li#f-small::before {
	display: block;
	content: "小";		/*「小」の文字を出力*/
	font-size: 16px;	/*文字サイズ*/
	width: 40px;		/*幅*/
	line-height: 40px;	/*高さ*/
	text-align: center;	/*内容をセンタリング*/
	background: #eee;	/*背景色*/
	}

#f-size ul li#f-small {
	margin-right: 5px;	/*「小」ボタンの右に空けるスペース。「大」との間隔*/
	}

/*選択中の設定*/
#f-size li#f-large.current::before,
#f-size li#f-small.current::before {
	background: #3863BA;	/*背景色*/
	color: #fff;			/*文字色*/
	}

/*テキスト設定*/
.indent {
    padding-left: 3em;
    text-indent: -0.5em; 
	}

.hanging-indent {
    text-indent: 50em;  /* 10em分だけ字下げする */
    }
. no-indent {
    text-indent: 0;    /* 字下げしない */
    }
.txt{
    padding-left: 3em;
    text-indent: -1.5em; 
    }
.emphasize {
            font-weight: bold;       /* 太字 */
           /* color: red;               赤色 */
            font-size: 1.2em;        /* フォントサイズを大きくする */
            /*background-color: yellow; /* 背景色を黄色にする */
            /*text-decoration: underline; /* 下線を追加する */
        }

/*■■メニューブロック設定
---------------------------------------------------------------------------*/
#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;}

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

/*ddmenuを指定しているメニューに矢印アイコンをつける設定*/
a.ddmenu::before {
	content: "\f078";	/*使いたいアイコン名をここで指定。Font Awesomeに記載されています。詳しくは当テンプレートのマニュアルを読んで下さい。*/
	font-weight: bold;	/*この設定がないとアイコンが出ない場合がある*/
	margin-right: 0.3em;	/*アイコンとテキストとの間に空けるスペース*/
}


/*■■大きな端末用のメニューブロック設定
---------------------------------------------------------------------------*/
.p #menubar > nav > ul {
	display: flex;					/*flexボックスを使う指定*/
	justify-content: space-between;	/*並びかたの種類の指定*/
	margin: 0 auto;
	}

/*メニュー１個あたりの設定*/
.p #menubar li {
	text-align: center;	/*テキストをセンタリング*/
	flex: 1;			/*個々のメニューを均等にし、幅いっぱいまで使う設定*/
	position: relative;	/*ドロップダウンの幅となる基準を作っておく*/
	}
.p #menubar a {
	padding: 10px;			/*メニュー内の余白*/
	background: #3863BA;	/*背景色*/
	color: #fff;			/*文字色*/
	}

/*「大」の文字の選択時のメニューブロック*/
.f-large #menubar nav ul {
	/flex-wrap: wrap;	/*メニューの折り返し許可wrap*/
	}

/*「大」の文字の選択時のメニュー１個あたり*/
.f-large #menubar nav > ul > li {
	flex: auto;
	width: 50%;	/*６つのメニューを２段にする為に幅を指定。１段あたり2個になるので、この数字です。*/
	}

/*大きな端末用のドロップダウンメニュー
---------------------------------------------------------------------------*/
/*ドロップダウンメニューブロック全体*/
.p #menubar ul ul {
	position: absolute;z-index: 100;
	width: 100%;
	}

/*小さな端末用の開閉ブロック
---------------------------------------------------------------------------*/
/*メニューブロック設定*/
.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(0,0,0,0.9);		/*背景色。0,0,0は黒の事で0.9は色が90%出た状態。*/
	text-align: center;					/*内容をセンタリング*/
	animation: animation1 0.2s both;	/*animation.cssのanimation1を実行する。0.2sは0.2秒の事。*/
	}

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


/*■■3本バー（ハンバーガー）アイコン設定
---------------------------------------------------------------------------*/
/*大きな端末では非表示*/
.p #menubar_hdr {display: none;}

/*3本バーを囲むブロック*/
.s #menubar_hdr {
	position: fixed;z-index: 101;
	cursor: pointer;
	right: 30px;		/*右からの配置場所指定*/
	top: 25px;			/*上からの配置場所指定*/
	padding: 16px 14px;	/*上下、左右への余白*/
	width: 46px;		/*幅（3本バー表示幅）*/
	height: 46px;		/*高さ*/
	display: flex;					/*flexボックスを使う指定*/
	flex-direction: column;			/*子要素（3本バー）を縦並びにする*/
	justify-content: space-between;	/*並びかたの種類の指定*/
	background: #3863BA;	/*背景色*/
	color: #fff;			/*文字色*/
	transform: scale(1.3);	/*実寸の130%に。直接pxなどのサイズを調整すると、アニメーションの場所がずれる場合があるのでここで調整。*/
	}

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

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

/*×印が出ている状態の設定。※１本目のバー。*/
#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;	/*２本目は使わないので非表示にする*/
	}


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

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

	/*2カラムで使う為の指定*/
	main.c2 {
		display: flex;	/*flexボックスを使う指定*/
		justify-content: space-between;	/*並びかたの種類の指定*/
	}
	
	/*2カラムの中にある.main要素（頭にドットがない「main」とは異なるので注意して下さい）*/
	main.c2 .main {
		width: calc(100% - 260px);	/*幅。ここの280pxの数字は下の.subの幅(230px)と、左右ブロックの間の余白(30px)を追加したものです。*/
		order: 1;
	}
	
	/*2カラムの中にある.sub要素*/
	main.c2 .sub {
		width: 230px;	/*幅*/
	}

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


/*■■見出し設定
---------------------------------------------------------------------------*/
h2 {	margin: 0em;		/*h2の外側にとるスペース。上、左右、下への順番。*/
	/*padding-left: 1rem;		左側に１文字分の余白を作る*/
	letter-spacing: 0.1em;	/*文字間隔を少しだけ広くとる*/
	background: #3863BA;	背景色*/
	color: #fff;			/*文字色*/
	padding: 0.1em 0em 0.1em 1em;
	}
h3 {   font-size: 18px;
	font-weight: bolder;
	margin: 3rem 0 1rem;				/*h3の外側にとるスペース。上、左右、下への順番。*/
	color: #2B4D91;
	padding: 5px 0px 5px 5px;
	border-left: solid 20px #2B4D91;
	border-top: solid thin #2B4D91;
	}
h4 {
	/*margin: 0 1rem 1rem;*//*h4の外側にとるスペース。上、左右、下への順番。*/
	margin: 1rem 2rem 3rem 4rem;
	/*padding: 0rem 0rem 0rem 1rem;*/
	}
h5 {   font-size: 16px;
	font-weight: bolder;
	/margin: 3rem 0 1rem;				/*h5の外側にとるスペース。上、左右、下への順番。*/
	color: #2B4D91;
	/padding: 5px 0px 5px 5px;
	/border-left: solid 20px #2B4D91;
	/border-top: solid thin #2B4D91;
	}



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



/*■■.listブロック共通
---------------------------------------------------------------------------*/
.list {
	position: relative;	/*子要素のアイコンを絶対配置する為の設定*/
	}

/*ボックス内のアイコン*/
.list .list-icon {
	font-size: 0.6rem;		/*文字サイズ*/
	background: #ff0000;	/*背景色*/
	color: #fff;			/*文字色*/
	width: 50px;			/*幅*/
	line-height: 50px;		/*高さ*/
	border-radius: 50%;		/*角丸のサイズ。円形になります。*/
	text-align: center;		/*テキストをセンタリング*/
	position: absolute;		/*親のブロックのrelative（この場合は.list）に対して絶対配置する*/
	left: -10px;			/*listブロックに対して左からの配置場所の指定*/
	top: -10px;				/*listブロックに対して上からの配置場所の指定*/
	}

/*figure画像*/
.list figure {
	margin-bottom: 2rem;	/*下に空けるスペース。２文字分。*/
	}


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

/*dl（下のdtとddを囲むブロック）*/
.list-grid .list dl {
	height: 8em;	/*高さ*/
	overflow: auto;	/*高さを超えるコンテンツである場合に、自動でスクロールバーを出す*/
	}

/*dt（タイトル、日付が入っている所）*/
.list-grid .list dl dt {
	color: #333;		/*文字色*/
	font-weight: bold;	/*太字にする*/
	}

/*dd（サンプルテキストが入っている所）*/
.list-grid .list dl dd {
	margin-bottom: 0.5em;	/*下に空けるスペース*/
	}

/*ボックス内のh4タグ*/
.list-grid .list h4 {
	margin: 0;
	padding: 5px 5px 5px 10px;
	/*padding: 1rem;	余白。１文字分。*/
	}

/*ボックス内のh4タグ内のiタグ（アイコンの事）*/
.list-grid .list h4 i {
	transform: scale(1.2);	/*デフォルトの1.2倍に*/
	margin-right: 0.7rem;		/*右側に空けるスペース。テキストとアイコンの隙間*/
	}

/*タイトルの背景色バリエーション（共通）*/
.bg-color0, .bg-color1, .bg-color2, .bg-color3, .bg-color4, .bg-color5, .bg-color6, .bg-color7 {
	color: #fff;	/*文字色*/
	margin-bottom: 1rem !important;	/*下に空けるスペース*/
	
	}
.bg-color0 a, .bg-color1 a, .bg-color2 a, .bg-color3 a, .bg-color4 a, .bg-color5 a, .bg-color6 a, .bg-color7 a {
	display: block;
	color: inherit;
	}

/*bg-color0への追加指定*/
.bg-color0 {
	background: #3863BA;	/*背景色*/
}
/*bg-color1への追加指定*/
.bg-color1 {
	background: #38BA8F;	/*背景色*/
}
/*bg-color2への追加指定*/
.bg-color2 {
	background: #FF9A18;	/*背景色#C46A88*/
}
/*bg-color3への追加指定*/
.bg-color3 {
	background: #BA3863;	/*背景色*/
}

/*bg-color4への追加指定*/
.bg-color4 {
	background: #6f3eb9;	/*背景色*/
}
/*bg-color5への追加指定*/
.bg-color5 {
	background: #1b7a1e;	/*背景色*/
}
/*bg-color6への追加指定*/
.bg-color6 {
	background: #7a3a1b;	/*背景色*/
}
/*bg-color7への追加指定*/
.bg-color7 {
	background: #3863BA;	/*背景色*/
}

/*ボックス内のpタグ*/
.list-grid .list p {
	margin: 0 0 0 2.5rem;
}
.list-grid.c5 .list p {
	margin: 0 0 0 2.5rem;
}
/*ボックス内のfigure画像*/
.list-grid .list figure {
	margin-bottom: 1rem;	/*下に空けるスペース*/
}
.list-grid.c5 .list figure {
	margin-bottom: 1rem;	/*下に空けるスペース*/
}
	/*画面幅900px以上の追加指定*/
	@media screen and (min-width:900px) {

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

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

	/*1カラムにしたい場合*/
	.list-grid.c1 .list {
		width: 100%;
		margin-right: 0;
	}
	/*1カラムにしたい場合のdl（dtとddを囲むブロック）*/
	.list-grid.c1 .list dl {
		height: auto;
	}

	/*3の倍数目のボックスの右側のマージンをなくす*/
	.list-grid .list:nth-of-type(3n) {
		margin-right: 0;
	}
		
	/*ボックス内のtextブロック*/
	.list-grid .list .text {
		flex: 1;
		background-color: #fff;
	}
	/*ボックス内のtextブロック*/
	.list-grid.c5 .list .text {
		flex: 1;
		background-color: #fff;
	}

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

/*■■スライドショー（slickを使用）
---------------------------------------------------------------------------*/
/*画像を囲むブロック*/
.mainimg {
	margin-bottom: 40px;	/*画像の下に空けるスペース　ボタンとの距離*/
	}

/*ナビボタン全体を囲むブロック*/
ul.slick-dots {
	margin:0;padding: 0;
	line-height: 1;
	width: 100%;
	text-align: center;
	position: absolute;
	bottom: -30px;	/*下からの配置場所指定。ボタンを画像の下に移動します。*/
	}

/*ナビボタン１個の設定*/
ul.slick-dots li {
	display: inline-block;
	margin: 0 10px;
	cursor: pointer;
	}

/*buttonタグ*/
ul.slick-dots li button {
	border: none;padding: 0;
	display: block;
	text-indent: -9999px;	/*デフォルトで文字が出るので画面の外に追い出す指定*/
	width: 12px;			/*ボタンの幅*/
	height: 12px;			/*ボタンの高さ*/
	border-radius: 50%;		/*丸くする指定*/
	cursor: pointer;		/*クリックで画像へジャンプするので、わかりやすいようhover時にpointerになるように。*/
	background: #ccc;		/*背景色。白。*/	
	}

/*buttonのアクティブ時（現在表示されている画像を示すボタン）*/
ul.slick-dots li.slick-active button {
	background: #3863BA;	/*色*/
	}

/*■■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.5em;	/*文字サイズ*/
	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: #ff0000 !important;}
.color-theme, .color-theme a {color: #3863BA !important;}
.c {text-align: center !important;}
.r {text-align: right !important;}
.ws {width: 98%;display: block;}
.wl {width: 98%;display: block;}
.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: 3em; letter-spacing: 0.1em;}
.pc {display: none;}
.dn {display: none !important;}
.img {margin: 0 0 1rem;}
.block {display: block !important;}

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

		.ws {width: 48%;display: inline;}
		.sh {display: none;}
		.pc {display: block;}

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

/*■■問い合わせ
---------------------------------------------------------------------------*/
.form-container {
    background-color: #fff;
    padding: 20px 40px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
     max-width: 800px;
     width: 100%;
   
    }
    
.form-container h1 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
    }

.form-group {
    margin-bottom: 15px;
    }

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #333;
    }

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    }

.form-group input:focus,
.form-group textarea:focus {
    border-color: #007BFF;
    outline: none;
    }


.form-group input.error, textarea.error {
    border-color: red;
}

.error-message {
    color: red;
    font-size: 0.875em;
    margin-top: -15px;
    margin-bottom: 15px;
    display: block;
}

button {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 4px;
    background-color: #007BFF;
    color: white;
    font-size: 16px;
    cursor: pointer;
    }

button:hover {
    background-color: #0056b3;
    }

.required {
    color: red;
    }

/*■■フッター設定
---------------------------------------------------------------------------*/
footer {
	font-size: 0.8rem;		/*文字サイズ。bodyのfont-sizeの80%です。*/
	background: #fff;		/*背景色*/
	color: #656565;			/*文字色*/
	text-align: center;		/*内容をセンタリング*/
	padding: 0px;			/*ボックス内の余白*/
	}

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

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




/* サムネイル画像のスタイル
---------------------------------------------------------------------------*/
.thumbnail {
  width: 100px; /* サムネイルのサイズ */
  cursor: pointer;
}

/* モーダルウィンドウのスタイル */
.modal {
  display: none;
  position: fixed;
  z-index: 1;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
}

.close {
  position: absolute;
  top: 50px;
  right: 100px;
  font-size: 40px;
  color: white;
  cursor: pointer;
}
