@charset "utf-8";




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

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

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

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




/*全端末共通設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/

/*全体の設定
---------------------------------------------------------------------------*/
html,body {height: 100%;}
body {
	margin: 0px;
	padding: 0px;
	color: #FFF;	/*全体の文字色*/
	font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;	/*フォント種類*/
	font-size: 16px;	/*文字サイズ*/
	line-height: 2;		/*行間*/
	background: #444;	/*背景色*/
	-webkit-text-size-adjust: none;
}
h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,form,figure,form {margin: 0px;padding: 0px;font-size: 100%;font-weight: normal;}
ul {list-style-type: none;}
ol {padding-left: 40px;padding-bottom: 15px;}
img {border: none;max-width: 100%;height: auto;vertical-align: middle;}
table {border-collapse:collapse;font-size: 100%;border-spacing: 0;}
iframe {width: 100%;}

@keyframes opa1 {
0% {opacity: 0;}
100% {opacity: 1;}
}

/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
	color: #333;		/*リンクテキストの色*/
	transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
}
a:hover {
	color: #ff4765;			/*マウスオン時の文字色*/
	text-decoration: none;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}

/*ヘッダー（一番上の、ロゴやメニューが入っているブロック）
---------------------------------------------------------------------------*/
header {
	height: 100%;
	overflow: auto;
	position: relative;
	background: url(../images/back01.jpg) no-repeat center center / cover;	 /*背景画像の読み込み*/
}
/*ロゴ画像*/
header #logo img {
	display: block;
//	width: 26%;	/*画像の幅*/
	width: 300px;	/*画像の幅*/
	position: absolute;
	left: 50%;		/*ロゴやメニューが入っているブロックに対して、左からの配置場所の指定。*/
	bottom: 45%;	/*ロゴやメニューが入っているブロックに対して、下からの配置場所の指定。*/
	transform: translate(-50%, -50%);
	animation-name: opa1;
	animation-delay: 0.5S;
	animation-duration: 2.5S;
	animation-fill-mode: both;
}

header #words {
	display: block;
	width: 60%;	/*画像の幅*/
	position: absolute;
	left: 20%;		/*ロゴやメニューが入っているブロックに対して、左からの配置場所の指定。*/
	bottom: 40%;	/*ロゴやメニューが入っているブロックに対して、下からの配置場所の指定。*/
	text-align: center;
	animation-name: opa1;
	animation-delay: 1S;
	animation-duration: 2.5S;
	animation-fill-mode: both;
}

/*メニュー
---------------------------------------------------------------------------*/
/*メニューブロック全体への指定*/
#menubar1 {
	position: absolute;
	bottom: 10%;	/*ロゴやメニューが入っているブロックに対して、下からの配置場所の指定。*/
	left: 0px;
	width: 100%;
	text-align: center;
}
/*メニュー１個あたりの指定*/
#menubar1 li {
	display: inline-block;
	margin: 0 1%;
	animation-name: opa1;
	animation-delay: 1.3S;
	animation-duration: 2.5S;
	animation-fill-mode: both;
}
#menubar1 li a {
	text-decoration: none;display: block;text-align: center;
	width: 240px; /*140px;*/	/*メニューの幅*/
	color: #fff;	/*文字色*/
	border-bottom: 2px solid transparent;	/*下線の幅、線種、色。transparentは透明の事。*/
	padding-bottom: 7px;	/*下線と文字の間にとる余白*/
}
/*マウスオン時の指定*/
#menubar1 li a:hover {
	border-bottom: none; /*2px solid #fff;*/	/*下線の幅、線種、色*/
	letter-spacing: 0.1em;			/*文字間隔を少しだけ広くする指定。そのままがいいならこの１行を削除。*/
}

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

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

/*開閉用のスタイル*/
#menubar.db {display: block;}
#menubar.dn {display: none;}


/*メニューブロックの設定
---------------------------------------------------------------------------*/
#menubar {
	position: fixed;overflow: auto;z-index: 100;
	left: 0px;top: 0px;
	width: 100%;
	height: 100%;
	padding: 100px 50px 15px;	/*上、左右、下*/
	background: rgba(200,200,200,0.95);	
	text-align: left;
	animation: animation1 0.2s both;	/*animation.cssの、animation1を実行*/
	box-shadow: 0px 0px 20px rgba(0,0,0,0.2);	/*ボックスの影。右、下、ぼかし幅。*/
}

#menubar {
	font-weight: bold;
}

/*各メニューの設定*/
#menubar a {
	display: block;text-decoration: none;
	text-align: left;
	padding: 15px;
	font-weight: bold;
}


/* サブメニューの開閉
---------------------------------------------------------------------------*/
#nav-open { display: none; }

.nav-open{
	padding: 15px;
	color: #333;
	/* font-size: 20px;
	/* background: #2073c8; */
	font-weight: bold;
	position: relative;
}
.nav-open::before{/* 閉じている時 */
	content: "＋";
	position: absolute;
	right: 20px;
}
.nav-open.active::before{/* 開いている時 */
	content: "－";
}


/*３本線アイコンの設定
---------------------------------------------------------------------------*/
/*開閉メニューのスタイル*/
#menubar_hdr.db {display: flex;}
#menubar_hdr.dn {display: none;}

/*３本線とMENUテキスト*/
#menubar_hdr {
	position: fixed;
	z-index: 101; 
	cursor: pointer;
	left: 15px;	
	top: 15px;	
	background: rgba(0,0,0,0.3);	/*背景色*/
	padding: 20px 0px;		/*上下、左右への余白*/
	width: 60px;			/*幅*/
	text-align: center;		/*中身をセンタリング*/
/*	color: #fff;	*/		/*文字色*/
	transform: scale(0.6);	/*作ったサイズの60%にする*/
	transform-origin: left top;	/*transformの起点*/
	transition: 0.3s;
	border: 1px solid rgba(255,255,255,0.6);	/*枠線*/
}

/*マウスオン時*/
#menubar_hdr:hover {
/*	filter: brightness(1.1);	*/
/*	background: rgba(0,0,0,0.8); */ /*暗くする*/
}

/*３本線*/
#menubar_hdr div {
	display: flex;					/*flexボックス*/
	flex-direction: column;			/*縦並び*/
	justify-content: space-between;	/*並びかた*/
	width: 20px;		/*線の幅*/
	height: 20px;		/*高さ*/
	margin: 0 auto;
}

/*「MENU」の表示*/
#menubar_hdr p {
	display: none;	/*画面が小さい場合は非表示*/
}

/*３本の線の設定*/
#menubar_hdr span {
	display: block;
	transition: 0.3s;	/*アニメーションの時間*/
	border-top: 3px solid #fff;	
}

/*X　上と下のラインの設定*/
#menubar_hdr.ham span:nth-of-type(1),
#menubar_hdr.ham span:nth-of-type(3) {
	transform-origin: center center;	/*変形の起点。センターに。*/
	width: 30px;						/*バーの幅*/
}

/*X　上のラインを移動させる*/
#menubar_hdr.ham span:nth-of-type(1){
	transform: rotate(45deg) translate(4px, 8px);	/*回転45°と、X軸Y軸への移動距離の指定*/
}

/*X　下のラインを移動させる*/
#menubar_hdr.ham span:nth-of-type(3){
	transform: rotate(-45deg) translate(4px, -8px);	/*回転-45°と、X軸Y軸への移動距離の指定*/
}

/*X　真ん中のラインは非表示*/
#menubar_hdr.ham span:nth-of-type(2){
	display: none;	/*２本目は使わないので非表示にする*/
}


/*コンテンススペース
---------------------------------------------------------------------------*/
#container {
	max-width: 1400px;	/* 最大幅 */
	margin: 0 auto;
}

/*コンテンツ
---------------------------------------------------------------------------*/
#contents {
	overflow: hidden;
/*
	padding: 50px 3%;
*/
	padding: 0px 0%;
}
#contents section + section {
/*
	padding-top: 50px;
*/
	padding-top: 0px;
}
/*コンテンツ内にあるh2(見出し)タグの指定*/
#contents h2 {
	margin-bottom: 20px;
	clear: both;
	padding: 0 20px;
	font-size: 20px;		/*文字サイズ*/
	text-align: center;		/*文字をセンタリング*/
	letter-spacing: 0.1em;	/*文字間隔を少しだけ広くする指定*/
	background: #222;		/*背景色*/
	color: #fff;			/*文字色*/
	border-radius: 100px;	/*角を丸くする指定。大きめであれば適当で構いません。*/
}
/*コンテンツ内にあるh3(見出し)タグの指定*/
#contents h3 {
	margin-bottom: 20px;
	clear: both;
	padding: 0 20px;
	font-size: 18px;		/*文字サイズ*/
	text-align: center;		/*文字をセンタリング*/
	letter-spacing: 0.1em;	/*文字間隔を少しだけ広くする指定*/
	border: 2px solid #222;	/*枠線の幅、線種、色*/
	border-radius: 100px;	/*角を丸くする指定。大きめであれば適当で構いません。*/
}
/*コンテンツ内にあるp(段落)タグ設定*/
#contents p {
	padding: 0px 20px 20px;	/*上、左右、下への余白*/
}
/*他。微調整。*/
#contents p + p {
	margin-top: -5px;
}
#contents h2 + p,
#contents h3 + p {
	margin-top: -10px;
}

/*Serviceページ
---------------------------------------------------------------------------*/
/*各ブロックごとの設定*/
.list {
	overflow: hidden;
	line-height: 1.5;
	border-bottom: 1px solid #999;	/*下線の幅、線種、色*/
	padding: 20px;	/*ボックス内の余白*/
}
/*１番目のlistブロックへの追加指定。上に線を入れる。*/
.list:first-of-type {
	border-top: 1px solid #999;
}
/*h4見出しの設定*/
.list h4 {
	font-size: 20px;	/*文字サイズ*/
	margin-bottom: 10px;
}
/*画像の設定*/
.list img {
	width: 20%;			/*画像幅*/
	float: left;		/*画像を左に回り込み*/
	margin-right: 3%	/*画像の右側に空けるスペース*/
}
/*段落タグ*/
.list p {
	padding: 0 !important;
}

/*フッター設定
---------------------------------------------------------------------------*/
footer {
	clear: both;
	text-align: center;
	background: #222;	/*背景色*/
	color: #fff;		/*文字色*/
	font-size: 85%;		/*文字サイズ*/
}
footer a {
	color: #fff;	/*リンクテキストの文字色*/
	text-decoration: none;
}
footer a:hover {
	color: #fff;	/*マウスオン時の文字色*/
}
footer .pr {
	display: block;
	font-size: 80%;
}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#new dl {
/*
	padding-left: 20px;
	margin-bottom: 15px;
*/
	padding-top: 50px;
	padding-left: 50px;
	padding-right: 50px;
	padding-bottom: 50px;
	margin-bottom: 0px;
}
/*日付設定*/
#new dt {
	float: left;
	width: 9em;
	letter-spacing: 0.1em;
}
/*記事設定*/
#new dd {
	padding-left: 9em;
}

/*テーブル
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta1 caption {
	border: 1px solid #999;	/*テーブルの枠線の幅、線種、色*/
	border-bottom: none;	/*下線だけ消す*/
	text-align: center;		/*文字をセンタリング*/
	background: #dfdfdf;	/*背景色*/
//	background: #222;	/*背景色*/
	font-weight: bold;		/*太字に*/
	padding: 10px;			/*ボックス内の余白*/
}
/*テーブル１行目に入った見出し部分（※tamidashi）*/
.ta1 th.tamidashi {
	width: auto;
	text-align: center;	/*文字をセンタリング*/
	background: #dfdfdf;	/*背景色*/
//	background: #222;	/*背景色*/
}
/*ta1テーブルブロック設定*/
.ta1 {
	table-layout: fixed;
	width: 100%;
	margin: 0 auto 20px;
}
.ta1, .ta1 td, .ta1 th {
	word-break: break-all;
	border: 1px solid #999;	/*テーブルの枠線の幅、線種、色*/
	padding: 10px;			/*テーブル内の余白*/
}
/*テーブルの左側ボックス*/
.ta1 th {
	text-align: center;	/*センタリング*/
	width: 30%;			/*幅*/
}

/*PAGE TOP（↑）設定
---------------------------------------------------------------------------*/
.scroll-show {display: block;}
.scroll a {
	display: block;text-decoration: none;text-align: center;
	width: 50px;		/*幅*/
	line-height: 50px;	/*高さ*/
	position: fixed;
	right: 30px;		/*右からの配置場所指定*/
	bottom: 30px;		/*下からの配置場所指定*/
	color: #fff;		/*文字色*/
	background: rgba(0,0,0,0.4);	/*背景色。0,0,0は黒色の指定で0.4は色が40%出た状態。*/
	border: 1px solid #fff;	/*枠線の幅、線種、色*/
}
/*マウスオン時*/
.scroll a:hover {
/*	background: rgba(0,0,0,0.8); */	/*背景色。0,0,0は黒色の指定で0.8は色が80%出た状態。*/
}

/*トップページのNEWアイコン
---------------------------------------------------------------------------*/
.newicon {
	background: #F00;	/*背景色*/
	color: #FFF;		/*文字色*/
	font-size: 70%;
	line-height: 1.5;
	padding: 2px 5px;
	border-radius: 2px;
	margin: 0px 5px;
	vertical-align: text-top;
}

/*ul.disc,olタグ
---------------------------------------------------------------------------*/
ul.disc {
	list-style: disc;
	padding: 0 20px 20px 55px;
}
ol {
	padding: 0 20px 20px 42px;
}

/*その他
---------------------------------------------------------------------------*/
//.look {background: #fff;border: 1px solid #ccc;padding: 5px 10px;border-radius: 4px;}
.look {background: #666;border: 1px solid #ccc;padding: 5px 10px;border-radius: 4px;}
.mb15,.mb1em {margin-bottom: 15px;}
.clear {clear: both;}
ul.disc {padding: 0em 25px 15px 40px;list-style: disc;}
.color1, .color1 a {color: #ff4765;}
.pr {font-size: 10px;}
.wl {width: 96%;}
.ws {width: 50%;}
.c {text-align: center;}
.r {text-align: right;}
.l {text-align: left;}
.big1 {font-size: 40px;letter-spacing: 0.2em;}
.mini1 {font-size: 11px;display: inline-block;line-height: 1.5;}
.sh {display: none;}




/*画面幅800px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:800px){

/*ヘッダー（一番上の、ロゴやメニューが入っているブロック）
---------------------------------------------------------------------------*/
/*ロゴ画像*/
header #logo img {
/*	width: 36%;	*/ /*画像の幅*/
/*	left: 32%;	*/ /*ロゴやメニューが入っているブロックに対して、左からの配置場所の指定。*/
/*	bottom: 50%; */
}

}



/*画面幅480px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:480px){

/*ヘッダー（一番上の、ロゴやメニューが入っているブロック）
---------------------------------------------------------------------------*/
/*ロゴ画像*/
header #logo img {
/*	width: 56%;	*/ /*画像の幅*/
/*	left: 22%;	*/ /*ロゴやメニューが入っているブロックに対して、左からの配置場所の指定。*/
/*	bottom: 50%; */
}

/*コンテナー（headerとfooterをのぞくブロックを囲むブロック）
---------------------------------------------------------------------------*/
#container {
	font-size: 12px;
	font-size: 2.93vw;
}

/*コンテンツ（上のcontainerの中のブロック）
---------------------------------------------------------------------------*/
/*コンテンツ内にあるh2(見出し)タグの指定*/
#contents h2 {
	font-size: 16px;	/*文字サイズ*/
}
/*コンテンツ内にあるh3(見出し)タグの指定*/
#contents h3 {
	font-size: 14px;	/*文字サイズ*/
}

/*Serviceページ
---------------------------------------------------------------------------*/
/*h4見出しの設定*/
.list h4 {
	font-size: 16px;	/*文字サイズ*/
}

/*ul.disc,olタグ
---------------------------------------------------------------------------*/
ul.disc {
	padding: 0 0px 20px 35px;
}
ol {
	padding: 0 0px 20px 35px;
}

/*その他
---------------------------------------------------------------------------*/
.ws {width: 96%;}
.big1 {font-size: 22px;letter-spacing: normal;}

}


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


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


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

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

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


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

}
