@charset "utf-8";



/*リセットCSS（sanitize.css）の読み込み 
→ 2023/02/21 DLしてCSSフォルダに保管した。間違えて削除した時はDLして保存すること。
リセットCSSとは、
ブラウザがWebページを表示する際に使うスタイルを打ち消し、
ブラウザによる見え方の差をなくしてくれるのがリセットCSSです。
---------------------------------------------------------------------------*/
@import url("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");

/*Google Fontsの読み込み
---------------------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Kalam:wght@700&family=Kaushan+Script&family=Qwitcher+Grypen:wght@700&display=swap');

/*Google Font 'Yuji Syuku' の読み込み(「人と自然を創造する-誰もが健康であるために」などに適用）
『趣のある和文向きの筆書体、アルファベット（文字間は少し広め）でも良い感じだと思う』
---------------------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Yuji+Syuku&display=swap');

/*テンプレート専用cssファイルの読み込み
---------------------------------------------------------------------------*/
@import url("animation.css");






/*全体の設定
---------------------------------------------------------------------------*/
html,body {
	margin: 0;padding: 0;
	height: 100vh;
	font-size: 14px;	/*基準となるフォントサイズ。下の方にある「画面幅900px以上」で基準を大きなサイズに再設定しています。*/
}

body {
	font-family: "ヒラギノ丸ゴ Pro", "Hiragino Maru Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;	/*フォント種類*/
	-webkit-text-size-adjust: none;
	/*background: url(../images/csr/bg_sub.png) no-repeat left top / 100%, url(../images/csr/bg_main.jpg) no-repeat center center / cover;*/
	color: #fff;		/*全体の文字色*/
	line-height: 2;		/*行間*/

	/*画面に映し出されるときにフェードイン*/
	animation: fadeIn 2s ease 0s 1 normal;
	-webkit-animation: fadeIn 2s ease 0s 1 normal;
}

@keyframes fadeIn {
	0% {opacity: 0}
	100% {opacity: 1}
}

@-webkit-keyframes fadeIn {
	0% {opacity: 0}
	100% {opacity: 1}
}

/*リセット*/
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%;}

/*ul,olタグ 少し左にマイナスマージン*/
ul, ol {margin: 0 10px 30px -8px;}



/*リンクテキスト全般の設定
---------------------------------------------------------------------------*/
a {
	color: #fff;	/*文字色*/
	/*transition: 0.3s;*/ /*リンクにこのプロパティを設定すると highslide のコントロールの挙動(hover)がおかしくなる*/
}

a:hover {
	opacity: 0.8;	/*マウスオン時に60%の透明度にする*/
}


/*PC用のメインイメージを読み込んでいます（bg_sub.pngとbg_main1.jpgは背景、bg_main2.pngは気球）
---------------------------------------------------------------------------*/
/*背景*/
#mainimg2 {
	text-indent: -9999px;	/*ここでは意味が無いと思う。*/
	position: fixed;
	top: 0px;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: url(../images/csr/bg_sub.png) fixed no-repeat center / cover, 
	url(../images/csr/bg_main1.jpg) fixed no-repeat center bottom 35% / cover;
}

/*気球(手前)*/
#mainimg {
	text-indent: -9999px;	/*ここでは意味が無いと思う。*/
	position: fixed;
	top: 0px;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: url(../images/csr/bg_main2.png) local no-repeat center center;
	background-size: 85%;
}

/*ヘッダー
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	height: 100%;	/*高さ*/
}

.logo{							/*ページ右上にある社名*/
	display: block;				/*ブロック要素*/
	width: 25%;					/*表示幅の指定*/
	position: relative;			/*画面左上を基点になる*/
	top: 5%;					/*画面上からの距離*/
	left: 75%;					/*画面左からの距離*/
	position: fixed;			/*要素を固定*/
	/*z-index: -1;				/*重なりの順序を指定*/
}

#slogan{						/*地域の皆さまと共に・・・*/
	display: block;				/*ブロック要素*/
	position: relative;			/*画面左上を基点になる*/
	color: #000;			   /*文字の色*/
	font-size: 3em;				/*表示幅の指定*/
	top: 15%;					/*画面上からの距離*/
	left: 45%;					/*画面左からの距離*/
	line-height: 1.5em;			/*行間*/
	-ms-writing-mode: tb-rl;	/*縦書きの文字*/
	writing-mode: vertical-rl;	/*縦書きの文字*/
	position: fixed;			/*要素を固定*/		
	z-index: -1;				/*重なりの順序を指定*/
	font-family: 'Yuji Syuku', serif;
	text-shadow:2px 1px 0 #FFF, -1px -1px 0 #FFF,
	-1px 1px 0 #FFF, 1px -1px 0 #FFF,
	0px 1px 0 #FFF,  0-1px 0 #FFF,
	-1px 0 0 #FFF, 1px 0 0 #FFF;
}

/*#sloganスローガンを上昇させます。*/
.fadeUp{
	animation-name:fadeUpAnime;
	animation-duration: 4s;
	animation-fill-mode:forwards;
	opacity:0;
}

@keyframes fadeUpAnime{
	from {
		opacity: 0;
		transform: scale(1, 1);
		transform: translatey(25px);
	}

	to {
		opacity: 1;
		transform: scale(1, 1);
		transform: translatey(-10);
	}
}

/*メインメニュー 　※注意：最初の設定はメディアクエリの指定がない場合に適用される
---------------------------------------------------------------------------*/
/*メニュー１個あたりの設定*/
#menubar li {
	display: block;
	transition: 0.5s;
	border-radius: 50%;			/*円形にする*/
	animation: opa1 1.5s both;	/*animation.cssの、opa1を実行する。1.5sは1.5秒の事。*/
	text-align: center;
	font-size: 1.5em;	/*文字サイズ*/
	position: fixed;	/*画面に対して固定表示*/
}

#menubar li a {
	display: block;
	text-decoration: none;
	color: #0066c8;		/*文字色*/
}

/*４つ目(Instagram)を除き、以下のGoogle Fontsを使う。*/
/*#menubar li:not(:nth-of-type(4)) {
	font-family: 'Kaushan Script', cursive;
}*/

/*全てに以下のGoogle Fontsを使う。*/
#menubar li:nth-of-type(n) {
	font-family: 'Kaushan Script', cursive;
}

/*マウスオン時*/
#menubar li:hover {
	transform: scale(1.05);		/*105%に拡大*/
	filter: brightness(1.1);	/*少しだけ明るくする*/
	background-color:#84909b;
	z-index: 1;
}



/*現在のリンクに設定（スクロールの位置に応じてjsでaddclass(メニュー効果をつける））
---------------------------------------------------------------------------*/
.link-current {
	z-index: 99;							 /*← 効かない*/
	border-radius: 50%;						 /*元々は四角形なので円にする*/
	box-shadow: inset 0 -10px 25px 0 rgba(0, 0, 0, .5),/*insetで内側にエンボスの様な効果*/
	2px 2px 10px #ffffff,					/*外側への光彩*/
	0 0 10px 0px rgba( 100, 100, 100, 0.5),/*少し色付け*/
	inset 0 0 0 2px #cae0f3;				/*少し色付け*/
	transition: all 0.05s ease-out;			 /*効果をつける時間（イーニング含む）*/
}

/*１つ目のメニュー(mission)*/
#menubar li:nth-of-type(1) {
	z-index: 5;
	font-size: 2.2em;		/*少し大きく*/
	left: 1%;				/*ウィンドウに対して左からの配置場所*/
	top: 0px;				/*ウィンドウに対して上からの配置場所*/
	background: #fff;	   /*背景色*/
	width: 185px;			/*幅*/
	line-height: 185px;		/*高さ*/
}

/*２つ目のメニュー(community)*/
#menubar li:nth-of-type(2) {
	left: 1%;			/*ウィンドウに対して左からの配置場所*/
	top: 25%;			/*ウィンドウに対して上からの配置場所*/
	animation-delay: 0.5s;	/*0.2秒だけ遅れてアニメーションをスタートさせる設定*/
	background: #fff;	/*背景色*/
	width: 130px;		/*幅*/
	line-height: 130px;	/*高さ*/
}

/*３つ目のメニュー(efforts)*/
#menubar li:nth-of-type(3) {
	left: 5%;			/*ウィンドウに対して左からの配置場所*/
	top: 45%;			/*ウィンドウに対して上からの配置場所*/
	animation-delay: 0.8s;	/*0.4秒だけ遅れてアニメーションをスタートさせる設定*/
	background: #fff;	/*背景色*/
	width: 110px;		/*幅*/
	line-height: 110px;	/*高さ*/
}

/*４つ目のメニュー(activities)*/
#menubar li:nth-of-type(4) {
	left: 1%;			/*ウィンドウに対して左からの配置場所*/
	top: 65%;			/*ウィンドウに対して上からの配置場所*/
	animation-delay: 1.2s;	/*0.6秒だけ遅れてアニメーションをスタートさせる設定*/
	background: #fff;	/*背景色*/
	width: 104px;		/*幅*/
	line-height: 104px;	/*高さ*/
}

/*５つ目のメニュー(history)*/
#menubar li:nth-of-type(5) {
	left: 8%;			/*ウィンドウに対して左からの配置場所*/
	top: 85%;			/*ウィンドウに対して上からの配置場所*/
	animation-delay: 1.5s;	/*0.8秒だけ遅れてアニメーションをスタートさせる設定*/
	background: #fff;	/*背景色*/
	width: 97px;		/*幅*/
	line-height: 97px;	/*高さ*/
}


/*コンテンツ
---------------------------------------------------------------------------*/
/*コンテンツ共通*/
.contents {
	overflow: hidden;
	padding: 0 4% 50px 170px;	/*ボックス内の余白。上、右、下、左。*/
	/*border: solid 1px #f00;	/*確認用*/
}

/*main
---------------------------------------------------------------------------*/
/*h2見出し*/
main h2 {
	font-size: 1.35em;			/*文字サイズ*/
	margin-bottom: 20px;	/*下に空ける余白*/
	text-align: center;		/*文字をセンタリング*/
	letter-spacing: 0.2em;	/*文字間隔を広くとる設定*/
}

/*h2見出しの上の装飾*/
main h2::before {
	content: "●";	/*好きな装飾文字に変えてもよい。機種依存文字は化けるので使わない*/
	display: block;
	text-shadow: 20px 10px 0px rgba(255,255,255,0.5);	/*影。右に、下に、ぼかし幅。255,255,255は白の事で0.5は色が50%出た状態の事。*/
}

/*h2見出し内のspanタグ*/
main h2 span {
	display: block;
	font-size: 0.7em;	/*文字サイズ*/
}

/*h3見出し*/
main h3 {
	margin-bottom: 20px;	/*下に空ける余白*/
	letter-spacing: 0.1em;	/*文字間隔を広くとる設定*/
	background: #fff;		/*背景色（古いブラウザ用）*/
	background: rgba(255,255,255,0.3);	/*255,255,255は白の事で0.3は色が30%出た状態の事。*/
	text-align: center;		/*文字を中央に*/
	border-radius: 10px;	/*角丸のサイズ。大きめに設定しておけばOK。*/
	padding: 0px 20px;		/*上下、左右への余白*/
}

/*段落タグ*/
main p {
	padding: 0 14px 30px;		/*上、左右、下への余白*/
	/*border: solid 1px #f00;	/*確認用*/
}

/*bg1スタイルのついたコンテンツ*/
.bg1 {
	background: url(../images/csr/bg1.jpg) repeat center top/ 200px;	/*背景画像　backgroundとurlのセットで背景画像を指定できます。背景画像を繰り返さない場合は、urlの後にno-repeatを指定します。*/
}

/*bg2スタイルのついたコンテンツ*/
.bg2 {
	background: url(../images/csr/bg2.jpg) repeat center top/ 200px;	/*背景画像　backgroundとurlのセットで背景画像を指定できます。*/
}

/*bg3スタイルのついたコンテンツ*/
.bg3 {
	background: url(../images/csr/bg3.jpg) repeat center top/ 200px;	/*背景画像　backgroundとurlのセットで背景画像を指定できます。*/
}

/*bg4スタイルのついたコンテンツ*/
.bg4 {
	background: url(../images/csr/bg4.jpg) repeat center top/ 200px;	/*背景画像　backgroundとurlのセットで背景画像を指定できます。*/
}

/*bg5スタイルのついたコンテンツ*/
.bg5 {
	background: url(../images/csr/bg5.jpg) repeat center top/ 200px;	/*背景画像　backgroundとurlのセットで背景画像を指定できます。*/
}

/*画像はブロック要素として中央揃え*/
section img{
	display: block;
	border-radius: 10px;
	margin: 0 auto;
	width: 93%;
}



/*activitiesブロック
---------------------------------------------------------------------------*/
/*listボックスを囲むボックス*/

.list-container {
	display: flex;					/*flexボックスを使う指定*/
	flex-wrap: wrap;				/*折り返す指定*/
	/*border: solid 1px #fff;	   /*確認用*/
	justify-content: space-between;	/*並びかたの種類の指定*/
}


/*listボックス。１個あたりのボックスの指定です。*/
.list-container .list {
	display: block;					/*flexボックスを使う指定*/
	/*flex-direction: column;			/*子要素を縦並びにする*/
	justify-content:space-between;	/*並びかたの種類の指定*/
	margin-bottom: 30px;			/*ボックス同士の上下間の余白*/
	border-radius: 10px;			/*角丸のサイズ。中の画像が正方形であれば、10pxを50%にすることで円形にすることもできます。*/
	overflow: hidden;
	width: 22%;						/*幅。１行に何個配置したいか、ここの数値を変更してお好みで調整して下さい。*/
}

/*疑似要素を挿入しないと端数の画像列が乱れる。*/
/*４カラムの場合 beforeを追加、orderで順序を指定*/
.list-container::before {
	display: block;	
	content:"";
	width: 22%;
	order: 1;
}

/*疑似要素を挿入しないと端数の画像列が乱れる。*/
/*３カラムの場合は after だけで良い。*/
/*補足：３カラム、４カラムの場合は疑似要素を駆使して対処可能ですが、
５カラムになると、疑似要素の数が足りないため、HTMLで空のボックスを入れておくか
Javascriptを使う必要があります。*/
.list-container::after {
	display: block;	
	content:"";
	width: 22%;
}

.list-container img{
	transition:1s all;	/*ホバーしてから1秒後に変化を開始*/
	border-radius: 10px;
}

/*hoverの時、画像の大きさを固定するための枠*/
.img-box{
	max-height: 220px;		/*枠の大きさをはそのまま*/
	max-width: 220px;		/*枠の大きさをはそのまま*/
	overflow: hidden;		/*はみ出した部分は隠す*/
	padding: 0;
	border-radius: 10px;	/*hover時にも角が丸くなるために必要*/
	/*border: solid 1.5px #464141;	   /*確認用*/
}

.list-container img:hover{
	transform: scale(1.1,1.1);	/*マウスオン時に1.1倍にズームする*/
	overflow: hidden;		/*はみ出した部分は隠す*/
	transition: 1s all;			/*transition: all 0.5s ease-in-out;のような記載もある*/

}

/*写真の説明*/
.list-container p{
	display: flex;					/*flexボックスを使う指定*/
	flex-wrap: wrap;				/*折り返す指定*/	
	width: 100%;				/*画像幅に準拠*/
	height: 40px;				/*高さ指定　およそ３行分*/
	padding: 0;					/*周囲の余白なし*/
	margin-right: 0;
	/*border: solid 1px #fff;*/
	font-size: 0.8em;			/*文字サイズは少し小さめ*/
	line-height: 1.1em;			/*行間*/
	text-align: feft;			/*左揃え*/
}

/*「お知らせ」ブロック
---------------------------------------------------------------------------*/
/*お知らせブロック*/
#new {
	display: flex;		/*これがないとdtに後続するddが改行される*/		
	flex-wrap: wrap;	/*これがないとdtに後続するddが改行される*/
	justify-content: space-between;	/*日付とアイコンをそれぞれ端に寄せる*/
	padding: 0 15px;	/*上下、左右へのボックス内の余白*/
}

/*日付の横のマーク（共通設定）*/
#new dt span {
	display: none;	/*小さな端末では非表示にしておく。*/
}

/*フッター設定
---------------------------------------------------------------------------*/
footer small {font-size: 100%;}

footer {
	background-color: rgba(255, 255, 255, 0.4);	/*背景を白にして半透明（40%）にする*/
	font-size: 0.6em;		/*文字サイズ*/
	text-align: center;		/*内容をセンタリング*/
	padding: 20px;			/*ボックス内の余白*/
	color: #000;
	text-shadow: 2px 2px 10px #ffff ,
	-2px 2px 10px #fff ,
	2px -2px 10px #fff ,
	-2px -2px 10px #fff;
}

footer a {
	color: #000;
}

/*リンクテキスト*/
footer a {text-decoration: none;}


/*著作部分*/
footer .pr {display: block;}

/*追記：footerの class="pr" のフォントを'Yuji Syuku'に*/
footer .pr {	/*「人と自然を創造する-誰もが健康であるために」をブロック要素として。*/
	font-family: 'Yuji Syuku', serif;
}


/*テーブル
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta1 caption {
	font-weight: bold;		/*太字に*/
	padding: 10px 5px;		/*上下、左右へのボックス内の余白。基本的に数行下の「.ta1 th, .ta1 td」のpaddingと揃えておけばOKです。*/
	background: rgba(255,255,255,0.2);
	margin-bottom: 15px;
	border-radius: 5px;
}

/*ta1テーブルブロック設定*/
.ta1 {
	border-top: 1px solid rgba(255,255,255,0.5);	/*テーブルの一番上の線。幅、線種、色*/
	width: 100%;
	margin: 0 auto 30px;		/*最後の「30px」がテーブルの下に空けるスペースです*/
}

/*tr（１行分）タグ設定*/
.ta1 tr {
	border-bottom: 1px solid rgba(255,255,255,0.5);	/*テーブルの下線。幅、線種、色*/
}

/*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;	/*左よせにする*/
}


/*PAGE TOP（↑）設定
---------------------------------------------------------------------------*/
.pagetop-show {display: block;}

/*ボタンの設定*/
.pagetop a {
	display: block;text-decoration: none;text-align: center;
	position: fixed;	/*スクロールに追従しない(固定で表示)為の設定*/
	z-index: 99;
	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-efforts, .color-efforts a {color: #ffcc00 !important;}
.color-check, .color-check a {color: #f00 !important;}
.c {text-align: center !important;}
.ws {width: 95%;display: block;}
.wl {width: 95%;display: block;}
.mb30 {margin-bottom: 30px !important;}
.look {display: inline-block;padding: 3px 10px 0 18px;background: #666; color: #fff; border-radius: 3px;margin: 18px 0 0 2px;font-size:1.2em; font-weight: bold;letter-spacing: 0.5em;}
.look .color-check {color: #ffcc00 !important;}
.small {font-size: 0.6em;}



/*---------------------------------------------------------------------------
ここから下は画面が「縦長」の場合の追加指定
---------------------------------------------------------------------------*/
@media screen and (orientation: portrait) {


/*メインイメージを縦長向き端末用に準備した画像（bg_main_portrait.jpg）に入れ替える。
---------------------------------------------------------------------------*/
#mainimg2 {
	background: url(../images/csr/bg_sub_portrait.png) no-repeat left top / 100%, url(../images/csr/bg_main_portrait.jpg) no-repeat bottom right / cover;

	/*スマホのURLバーが表示/非表示する際、微妙なカクつきが起きる。その時の対処
	height: 0px;
	padding-bottom: 175%;*/
}

#mainimg {
	display: none;
}
    
/*　※注意！　下の閉じカッコ　}　はこのブロックに必要なので、削除しないで下さい。　*/
    
}

/*---------------------------------------------------------------------------
ここから下は画面が「縦長」「大型タブレット」の場合の追加指定
---------------------------------------------------------------------------*/
@media screen and (orientation: portrait) and (min-width:1000px){

/*社名の設定*/
.logo{
	display: block;				/*ブロック要素*/
	width: 45%;					/*表示幅の指定*/
	position: relative;			/*画面左上を基点になる*/
	top: 1%;					/*画面上からの距離*/
	left: 52%;					/*画面左からの距離*/
}

/*#sloganを大きく*/
#slogan{
	display: block;				/*ブロック要素*/
	position: relative;			/*画面左上を基点になる*/
	line-height: 1em;
	color: #000;			   /*文字の色*/
	font-size: 4.5em;				/*表示幅の指定*/
	top: 18%;					/*画面上からの距離*/
	left: 44%;					/*画面左からの距離*/
	position: fixed;			/*要素を固定*/
}
		
	/*　※注意！　下の閉じカッコ　}　はこのブロックに必要なので、削除しないで下さい。　*/
		
	}

/*---------------------------------------------------------------------------
ここから下は画面幅370px以下の追加指定
---------------------------------------------------------------------------*/
@media screen and (max-width:370px) {
/*全体の設定
---------------------------------------------------------------------------*/
html,body {
	margin: 0;padding: 0;
	height: 100vh;
	line-height: 1.6em;	/*少し狭くする*/
	font-size: 13px;	/*基準となるフォントサイズ。下の方にある「画面幅900px以上」で基準を大きなサイズに再設定しています。*/
}

/*社名の設定*/
.logo{
	display: block;				/*ブロック要素*/
	width: calc(100vw/1.7);		/*表示幅の指定*/
	position: relative;			/*画面左上を基点になる*/
	top: -1%;					/*画面上からの距離*/
	left: 45%;					/*画面左からの距離*/
}

#slogan{						/*地域の皆さまと共に・・・*/
	display: block;				/*ブロック要素*/
	position: relative;			/*画面左上を基点になる*/
	color: #000;			   /*文字の色*/
	font-size: 3em;				/*表示幅の指定*/
	top: 10%;					/*画面上からの距離*/
	left: 49%;					/*画面左からの距離*/
	line-height: 1.5em;			/*行間*/
	-ms-writing-mode: tb-rl;	/*縦書きの文字*/
	writing-mode: vertical-rl;	/*縦書きの文字*/
}

/*１つ目のメニュー(mission)*/
#menubar li:nth-of-type(1) {
	left: -2.5%;			/*ウィンドウに対して左からの配置場所*/
	top: -2%;			/*ウィンドウに対して上からの配置場所*/
	font-size: 1.4em;
	animation-delay: 0.2s;	/*0.2秒だけ遅れてアニメーションをスタートさせる設定*/
	background: #fff;	/*背景色*/
	width: 115px;		/*幅*/
	line-height: 115px;	/*高さ*/
}

/*２つ目のメニュー(community)*/
#menubar li:nth-of-type(2) {
	left: -2%;			/*ウィンドウに対して左からの配置場所*/
	top: 22%;			/*ウィンドウに対して上からの配置場所*/
	font-size: 1.4em;
	animation-delay: 0.2s;	/*0.2秒だけ遅れてアニメーションをスタートさせる設定*/
	background: #fff;	/*背景色*/
	width: 110px;		/*幅*/
	line-height: 110px;	/*高さ*/
}

/*３つ目のメニュー(efforts)*/
#menubar li:nth-of-type(3) {
	left: 2%;			/*ウィンドウに対して左からの配置場所*/
	top: 45%;			/*ウィンドウに対して上からの配置場所*/
	animation-delay: 0.8s;	/*0.4秒だけ遅れてアニメーションをスタートさせる設定*/
	background: #fff;	/*背景色*/
	width: 95px;		/*幅*/
	line-height: 95px;	/*高さ*/
}

/*４つ目のメニュー(activities)*/
#menubar li:nth-of-type(4) {
	left: 1%;			/*ウィンドウに対して左からの配置場所*/
	top: 65%;			/*ウィンドウに対して上からの配置場所*/
	font-size: 1.4em;
	animation-delay: 1.2s;	/*0.6秒だけ遅れてアニメーションをスタートさせる設定*/
	background: #fff;	/*背景色*/
	width: 93px;		/*幅*/
	line-height: 93px;	/*高さ*/
}

/*５つ目のメニュー(history)*/
#menubar li:nth-of-type(5) {
	left: 5%;			/*ウィンドウに対して左からの配置場所*/
	top: 85%;			/*ウィンドウに対して上からの配置場所*/
	animation-delay: 1.5s;	/*0.8秒だけ遅れてアニメーションをスタートさせる設定*/
	background: #fff;	/*背景色*/
	width: 88px;		/*幅*/
	line-height: 88px;	/*高さ*/
}

/*コンテンツ共通*/
.contents {
	overflow: hidden;
	padding: 0 2% 50px 120px;	/*ボックス内の余白。上、右、下、左。*/
}

/*h2見出し*/
main h2 {
	font-size: 1em;			/*文字サイズ*/
	margin-bottom: 10px;	/*下に空ける余白*/
	text-align: center;		/*文字をセンタリング*/
	letter-spacing: 0.1em;	/*文字間隔を広くとる設定*/
}

/*h2見出しの上の装飾*/
main h2::before {
	content: "●";	/*好きな装飾文字に変えてもらって構いませんが機種依存文字は化けるので使わない*/
	display: block;
	text-shadow: 7px 3px 0px rgba(255,255,255,0.5);	/*影。右に、下に、ぼかし幅。255,255,255は白の事で0.5は色が50%出た状態の事。*/
}

/*h3見出し*/
main h3 {
	font-size: 0.9em;
	margin-bottom: 10px;	/*下に空ける余白*/
	padding: 4px 2px 4px 2px;	/*内側の上左下右の順にあける余白*/
	letter-spacing: 0.1em;	/*文字間隔を広くとる設定*/
}

/*５つ目のメニュー(history)*/
#menubar li:nth-of-type(5) {
	left: 5%;			/*ウィンドウに対して左からの配置場所*/
	top: 84%;			/*ウィンドウに対して上からの配置場所*/
	width: 85px;		/*幅*/
	line-height: 85px;	/*高さ*/
}

/*段落タグ*/
main p {
	padding: 0 24px 10px;		/*上、左右、下への余白*/
}

main li{
	font-size: 0.8em;
	padding-right: 5px;
	/*border: solid 1px #ffcc00;*/
}

/*日付(dt)設定*/
#new dt {
	width: 7em;	/*幅*/
	display: flex;	/*flexボックスを使う指定*/
	justify-content: space-between;	/*日付とアイコンをそれぞれ端に寄せる*/
}
#new dt,
#new dd {
	font-size: 80%;		/*上下、左右へのボックス内の余白*/
}

/*記事(dd)設定*/
#new dd {
	width: calc(100% - 7em);	/*「7em」は上の「#new dt」のwidthの値です。*/
}

/*テーブル th（左側）、td（右側）の共通設定*/
.ta1 th, .ta1 td {
	font-size: 72%;		/*文字サイズ*/
	line-height: 1.5em;
}

/*th（左側）のみの設定*/
.ta1 th {
	width: 36%;			/*幅*/
	text-align: left;	/*左よせにする*/
}

/*listボックス。１個あたりのボックスの指定です。
この場合、ボックスは３行になります。*/
.list-container .list {
	width: 30%;						/*幅。１行に何個配置したいか、ここの数値を変更してお好みで調整して下さい。*/
	margin-bottom: 2px;
}


/*画像はブロック要素として中央揃え*/
section img{
	display: block;
	border-radius: 10px;
	margin: 0 auto;
	width: 80%;
}


/*　※注意！　下の閉じカッコ　}　はこのブロックに必要なので、削除しないで下さい。　*/

}


/*---------------------------------------------------------------------------
ここから下は画面幅370以上430px以下の追加指定
---------------------------------------------------------------------------*/
@media screen and (min-width:370px) and (max-width:430px) {
html,body {
	line-height: 1.6em;	/*少し狭くする*/
	font-size: 15px;	/*基準となるフォントサイズ。下の方にある「画面幅900px以上」で基準を大きなサイズに再設定しています。*/

}
	
/*社名の設定*/
.logo{
	display: block;				/*ブロック要素*/
	width: calc(100vw/1.7);		/*表示幅の指定*/
	position: relative;			/*画面左上を基点になる*/
	top: 3%;					/*画面上からの距離*/
	left: 40%;					/*画面左からの距離*/
	position: fixed;			/*要素を固定*/
}

/*１つ目のメニュー(mission)*/
#menubar li:nth-of-type(1) {
	font-size: 1.5em;		/*少し大きく*/
	left: -2.3%;			/*ウィンドウに対して左からの配置場所*/
	top: 0%;			/*ウィンドウに対して上からの配置場所*/
	background: #fff;	   /*背景色*/
	width: 140px;			/*幅*/
	line-height: 140px;		/*高さ*/
}

/*２つ目のメニュー(commumity)*/
#menubar li:nth-of-type(2) {
	left: -1%;				/*ウィンドウに対して左からの配置場所*/
	top: 24%;				/*ウィンドウに対して上からの配置場所*/
	animation-delay: 0.2s;	/*0.2秒だけ遅れてアニメーションをスタートさせる設定*/
	background: #fff;	   /*背景色*/
	width: 124px;			/*幅*/
	line-height: 124px;		/*高さ*/
}

/*５つ目のメニュー(history)*/
#menubar li:nth-of-type(5) {
	left: 5%;			/*ウィンドウに対して左からの配置場所*/
	top: 84%;			/*ウィンドウに対して上からの配置場所*/
	width: 85px;		/*幅*/
	line-height: 85px;	/*高さ*/
}


/*コンテンツ
---------------------------------------------------------------------------*/
/*コンテンツ共通*/
.contents {
	overflow: hidden;
	padding: 0 4% 50px 120px;	/*ボックス内の余白。上、右、下、左。*/
	/*border: solid 1px #f00;	/*確認用*/
}

/*main
---------------------------------------------------------------------------*/
/*h2見出し*/
main h2 {
	font-size: 1em;			/*文字サイズ*/
	margin-bottom: 5px;	/*下に空ける余白*/
}

/*h2見出しの上の装飾*/
main h2::before {
	content: "●";	/*好きな装飾文字に変えてもらって構いませんが機種依存文字は化けるので使わない*/
	display: block;
	text-shadow: 13px 5px 0px rgba(255,255,255,0.2);	/*影。右に、下に、ぼかし幅。255,255,255は白の事で0.5は色が50%出た状態の事。*/
}

/*h3見出し*/
main h3 {
	margin-bottom: 10px;	/*下に空ける余白*/
	padding: 5px 2px 5px 2px;	/*内側の上左下右の順にあける余白*/
	letter-spacing: 0.1em;	/*文字間隔を広くとる設定*/
}



/*「お知らせ」ブロック
---------------------------------------------------------------------------*/
/*お知らせブロック*/
#new {
	margin: 0;
	display: flex;		/*flexボックスを使う指定*/
	flex-wrap: wrap;	/*折り返す指定*/
	justify-content: space-between;	/*日付とアイコンをそれぞれ端に寄せる*/
}

/*日付(dt)、記事(dd)共通設定*/
#new dt,
#new dd {
	font-size: 80%;		/*文字サイズ*/
	padding: 5px 0;		/*上下、左右へのボックス内の余白*/
}

/*日付(dt)設定*/
#new dt {
	width: 7em;	/*幅。8文字(em)分。※下の「900px以上」の端末用の設定に再設定があります。*/
}

/*記事(dd)設定*/
#new dd {
	width: calc(100% - 7em);	/*「8em」は上の「#new dt」のwidthの値です。※下の「900px以上」の端末用の設定に再設定があります。*/
}


/*テーブル
---------------------------------------------------------------------------*/
/*th（左側）、td（右側）の共通設定*/
.ta1 th, .ta1 td {
	font-size: 73%;		/*文字サイズ*/
}

/*th（左側）のみの設定*/
.ta1 th {
	width: 34%;			/*幅*/
	text-align: left;	/*左よせにする*/
}

/*listボックス。１個あたりのボックスの指定です。
この場合、ボックスは３行になります。*/
.list-container .list {
	width: 32%;						/*幅。１行に何個配置したいか、ここの数値を変更してお好みで調整して下さい。*/
	margin-bottom: 2px;				/*ボックスの下の間隔*/
}

/*画像はブロック要素として中央揃え*/
section img{
	display: block;
	border-radius: 10px;
	margin: 0 auto;
	width: 80%;
}

/*　※注意！　下の閉じカッコ　}　はこのブロックに必要なので、削除しないで下さい。　*/

}



/*---------------------------------------------------------------------------
ここから下は画面幅700以上940px以下の追加指定
※タブレットの縦置き
---------------------------------------------------------------------------*/
@media screen and (min-width:700px) and (max-width:940px) and (orientation: portrait){
/*１つ目のメニュー(mission)*/
#menubar li:nth-of-type(1) {
	font-size: 1.8em;		/*少し大きく*/
	left: 10px;				/*ウィンドウに対して左からの配置場所*/
	top: 15px;				/*ウィンドウに対して上からの配置場所*/
	background: #fff;	   /*背景色*/
	width: 190px;			/*幅*/
	line-height: 190px;		/*高さ*/
}

/*２つ目のメニュー(community)*/
#menubar li:nth-of-type(2) {
	font-size: 1.7em;		/*少し大きく*/
	left: 3%;			/*ウィンドウに対して左からの配置場所*/
	top: 25%;			/*ウィンドウに対して上からの配置場所*/
	width: 170px;		/*幅*/
	line-height: 170px;	/*高さ*/
}

/*３つ目のメニュー(efforts)*/
#menubar li:nth-of-type(3) {
	left: 5%;			/*ウィンドウに対して左からの配置場所*/
	top: 48%;			/*ウィンドウに対して上からの配置場所*/
	width: 130px;		/*幅*/
	line-height: 130px;	/*高さ*/
}

/*４つ目のメニュー(activities)*/
#menubar li:nth-of-type(4) {
	left: 2%;			/*ウィンドウに対して左からの配置場所*/
	top: 65%;			/*ウィンドウに対して上からの配置場所*/
	width: 105px;		/*幅*/
	line-height: 105px;	/*高さ*/
}

/*５つ目のメニュー(history)*/
#menubar li:nth-of-type(5) {
	left: 8%;			/*ウィンドウに対して左からの配置場所*/
	top: 80%;			/*ウィンドウに対して上からの配置場所*/
	width: 85px;		/*幅*/
	line-height: 85px;	/*高さ*/
}


#slogan{
	display: block;				/*ブロック要素*/
	position: relative;			/*画面左上を基点になる*/
	color: #000;			   /*文字の色*/
	font-size: 4.8em;				/*表示幅の指定*/
	top: 18%;					/*画面上からの距離*/
	left: 40%;					/*画面左からの距離*/
	position: fixed;			/*要素を固定*/
}

/*社名の設定*/
.logo{
	display: block;				/*ブロック要素*/
	width: 50%;					/*表示幅の指定*/
	position: relative;			/*画面左上を基点になる*/
	top: 5%;					/*画面上からの距離*/
	left: 50%;					/*画面左からの距離*/
	z-index: -1;				/*重なりの順序を指定*/
	position: fixed;			/*要素を固定*/
}


/*コンテンツ
---------------------------------------------------------------------------*/
/*コンテンツ共通*/
.contents {
	overflow: hidden;
	padding: 0 4% 50px 180px;	/*ボックス内の余白。上、右、下、左。*/
	/*border: solid 1px #f00;	/*確認用*/
}

/*main
---------------------------------------------------------------------------*/
/*h2見出し*/
main h2 {
	font-size: 1.1em;			/*文字サイズ*/
	margin-bottom: 5px;	/*下に空ける余白*/
}

/*h3見出し*/
main h3 {
	margin-bottom: 10px;	/*下に空ける余白*/
	letter-spacing: 0.1em;	/*文字間隔を広くとる設定*/
}

/*日付(dt)設定*/
#new dt {
	width: 14em;	/*幅。14文字(em)分。*/
	display: flex;	/*flexボックスを使う指定*/
	justify-content: space-between;	/*日付とアイコンをそれぞれ端に寄せる*/
}

/*日付(dt)、記事(dd)共通設定*/
#new dt,
#new dd {
	font-size: 80%;		/*文字サイズ*/
}

/*日付の横のマーク（共通設定）*/
#new dt span {
	display: inline-block;	/*表示させる*/
	width: 6em;				/*幅。6文字(em)分。*/
	background: #999;		/*背景色*/
	color: #fff;			/*文字色*/
	font-size: 0.9em;		/*文字サイズを90%に。*/
	text-align: center;		/*文字をセンタリング*/
	border-radius: 3px;		/*角を少しだけ丸くする*/
	margin-right: 1.2em;	/*アイコンの右側に空けるスペース*/
	align-self: flex-start;	/*高さを間延びさせない指定*/
	line-height: 1.8;		/*行間を少し狭く*/
	position: relative;top: 0.4em;	/*上下の配置バランスの微調整*/
}

/*bg1設定。サンプルテンプレートでは「Gallery」と書いてあるマーク*/
#new dt span.icon-bg1 {
	background: #002d59;	/*背景色*/
}

/*記事(dd)設定*/
#new dd {
	width: calc(100% - 14em);	/*「14em」は上の「#new dt」のwidthの値です。*/
}

/*テーブル
---------------------------------------------------------------------------*/
/*th（左側）、td（右側）の共通設定*/
.ta1 th, .ta1 td {
	font-size: 80%;		/*文字サイズ*/
}


/*　※注意！　下の閉じカッコ　}　はこのブロックに必要なので、削除しないで下さい。　*/

}
	
	
/*---------------------------------------------------------------------------
ここから下は画面幅940px以下、かつ画面が「横長」の場合の追加指定 
※スマホの横置き
---------------------------------------------------------------------------*/
@media screen and (max-width:940px) and (orientation: landscape) {

#mainimg {
	text-indent: -9999px;	
	position: fixed;
	top: 0px;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: url(../images/csr/bg_sub.png) no-repeat left top / 100%, url(../images/csr/bg_main.jpg) no-repeat bottom center / cover;
}


#slogan{						/*地域の皆さまと共に・・・*/
	font-size: 2em;				/*表示幅の指定*/
	top: 17%;					/*画面上からの距離*/
	left: 45%;					/*画面左からの距離*/
	line-height: 1.5em;			/*行間*/
}

/*コンテンツ共通*/
.contents {
	padding-left: 130px;	/*ボックス内の左側にとる余白*/
}

/*h2見出し*/
main h2 {
	font-size: 1.3em;			/*文字サイズ*/
}

.link-current {/*本来はここのメディアクエリに記載しなくても良いはずだけど、書かないとクラスの割り当てがおかしくなったので記載する*/
	z-index: 99;							 /*← 効かない*/
	border-radius: 50%;						 /*元々は四角形なので円にする*/
	box-shadow: inset 0 -10px 25px 0 rgba(0, 0, 0, .5),/*insetで内側にエンボスの様な効果*/
	2px 2px 10px #ffffff,					/*外側への光彩*/
	0 0 10px 0px rgba( 100, 100, 100, 0.5),/*少し色付け*/
	inset 0 0 0 2px #cae0f3;				/*少し色付け*/
	transition: all 0.05s ease-out;			 /*効果をつける時間（イーニング含む）*/
}


/*１つ目のメニュー(mission)*/
#menubar li:nth-of-type(1) {
	font-size: 1.8em;		/*少し大きく*/
	left: 0%;				/*ウィンドウに対して左からの配置場所*/
	top: -22px;				/*ウィンドウに対して上からの配置場所*/
	background: #fff;	   /*背景色*/
	width: 130px;			/*幅*/
	line-height: 130px;		/*高さ*/
}

/*２つ目のメニュー(community)*/
#menubar li:nth-of-type(2) {
	left: 0%;			/*ウィンドウに対して左からの配置場所*/
	top: 23%;			/*ウィンドウに対して上からの配置場所*/
	width: 112px;		/*幅*/
	line-height: 112px;	/*高さ*/
}

/*３つ目のメニュー(efforts)*/
#menubar li:nth-of-type(3) {
	left: 5%;			/*ウィンドウに対して左からの配置場所*/
	top: 45%;			/*ウィンドウに対して上からの配置場所*/
	width: 98px;		/*幅*/
	line-height: 98px;	/*高さ*/
}

/*４つ目のメニュー(activities)*/
#menubar li:nth-of-type(4) {
	left: 1%;			/*ウィンドウに対して左からの配置場所*/
	top: 66%;			/*ウィンドウに対して上からの配置場所*/
	width: 90px;		/*幅*/
	line-height: 90px;	/*高さ*/
}

/*５つ目のメニュー(history)*/
#menubar li:nth-of-type(5) {
	left: 8%;			/*ウィンドウに対して左からの配置場所*/
	top: 82%;			/*ウィンドウに対して上からの配置場所*/
	width: 75px;		/*幅*/
	line-height: 75px;	/*高さ*/
}

/*日付の横のマーク（共通設定）*/
#new dt span {
	display: inline-block;	/*表示させる*/
	width: 6em;				/*幅。6文字(em)分。*/
	background: #999;		/*背景色*/
	color: #fff;			/*文字色*/
	font-size: 0.9em;		/*文字サイズを90%に。*/
	text-align: center;		/*文字をセンタリング*/
	border-radius: 3px;		/*角を少しだけ丸くする*/
	margin-right: 1.2em;	/*アイコンの右側に空けるスペース*/
	align-self: flex-start;	/*高さを間延びさせない指定*/
	line-height: 1.8;		/*行間を少し狭く*/
	position: relative;top: 0.4em;	/*上下の配置バランスの微調整*/
}

/*bg1設定*/
#new dt span.icon-bg1 {
	background: #002d59;	/*背景色*/
}

#new {
	display: flex;		/*これがないとdtに後続するddが改行される*/		
	flex-wrap: wrap;	/*これがないとdtに後続するddが改行される*/
	justify-content: space-between;	/*日付とアイコンをそれぞれ端に寄せる*/
	padding: 0 15px;	/*上下、左右へのボックス内の余白*/
}

/*記事(dd)設定*/
#new dd {
	width: calc(100% - 14em);	/*「14em」は上の「#new dt」のwidthの値です。*/
}

/*日付(dt)設定*/
#new dt {
	width: 14em;	/*幅。14文字(em)分。*/
	display: flex;	/*flexボックスを使う指定*/
	justify-content: space-between;	/*日付とアイコンをそれぞれ端に寄せる*/
}

/*日付(dt)、記事(dd)共通設定*/
#new dt,
#new dd {
	font-size: 80%;		/*文字サイズ*/
}


/*　※注意！　下の閉じカッコ　}　はこのブロックに必要なので、削除しないで下さい。　*/

}



/*---------------------------------------------------------------------------
ここから下は画面幅940px以上の追加指定
ポインター属性を追記、PCのような正確なマウスポインタ―がある媒体はロード画面を実行させる。
--------------------------------------------------------------------------*/
@media screen and (min-width:940px) and (pointer:fine){
/*ローディング部分の回転エフェクト定義*/
@-webkit-keyframes loading {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }
@keyframes loading {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } 
}

/*　※注意！　下の閉じカッコ　}　はこのブロックに必要なので、削除しないで下さい。　*/

}


/*---------------------------------------------------------------------------
ここから下は画面幅940px以上の追加指定
おなじ940以上でも、タブレットの場合はロードを実行させない。
---------------------------------------------------------------------------*/
@media screen and (min-width:940px) {
	
/*ローディング画面の背景部分*/
#loading {
  width: 100vw;
  height: 100vh;
  background-color: #f6f7f8;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100; 
}

/*ローディング回転部分*/
#loading-main:after, #loading-main:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  margin-left: -50%;
  position: absolute;
  top: 40%;
  left: 50%;
  border-radius: 110%; 
}

#loading-main {
  display: block;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 105; }
  #loading-main:after {
    -webkit-animation: loading 0.75s linear infinite;
    animation: loading 0.75s linear infinite;
    border: 1px solid transparent;
    border-top-color: #666; }
  #loading-main:before {
    border: 1px solid rgba(51, 51, 51, 0.15); 
}


/*全体の設定
---------------------------------------------------------------------------*/
html, body {
	font-size: 16px;	/*基準となるフォントサイズの上書き*/
}

/*気球を上昇させる*/
.up-moving {
	width: 100%;
	background: url(../images/csr/bg_main2.png);
	animation-name: up-moving;
	animation-duration: 4s;
	animation-timing-function: linear;
	animation-fill-mode: forwards;
}

@keyframes up-moving {
	0% {
		background-position: 0 -50px;
	}

	100% {
		background-position: 0 -110px;
	}
}


/*社名の設定(画面幅940px以上は全てこの設定が繁栄される*/
.logo{
	display: block;				/*ブロック要素*/
	width: calc(100vw/3.8);		/*表示幅の指定*/
	position: relative;			/*画面左上を基点になる*/
	top: 5%;					/*画面上からの距離*/
	left: calc((100vw/4)*2.8);	/*画面左からの距離*/
	z-index: -1;				/*重なりの順序を指定*/
	position: fixed;			/*要素を固定*/
}

/*メインメニュー
---------------------------------------------------------------------------*/
/* 気球が上昇するPC画面は背景画像がロードされてから画面表示が行われるため、
配置や文字サイズ以外に、ナビメニューの表示、他の端末よりも遅くして段階的なナビ表示効果を演出する。*/

/*メニュー１個あたりの設定*/
#menubar li {
	font-size: 2em;		/*文字サイズ*/
	animation: opa1 5.5s both;	/*animation.cssの、opa1を実行する。5.5sは5.5秒の事。*/
}

/*１つ目のメニュー(mission)*/
#menubar li:nth-of-type(1) {
	font-size: 2.3em;		/*少し大きく*/
	left: 1%;				/*ウィンドウに対して左からの配置場所*/
	top: 0px;				/*ウィンドウに対して上からの配置場所*/
	background: #fff;	   /*背景色*/
	width: 250px;			/*幅*/
	line-height: 250px;		/*高さ*/
	/*ここには遅延アニメーションを記載しない。*/
}

/*２つ目のメニュー(community)*/
#menubar li:nth-of-type(2) {
	left: 20%;			/*ウィンドウに対して左からの配置場所*/
	top: 27%;			/*ウィンドウに対して上からの配置場所*/
	width: 190px;		/*幅*/
	line-height: 190px;	/*高さ*/
	animation-delay: 1.0s;	/*0.2秒だけ遅れてアニメーションをスタートさせる設定*/
}

/*３つ目のメニュー(efforts)*/
#menubar li:nth-of-type(3) {
	left: 4%;			/*ウィンドウに対して左からの配置場所*/
	top: 45%;			/*ウィンドウに対して上からの配置場所*/
	width: 190px;		/*幅*/
	line-height: 190px;	/*高さ*/
	animation-delay: 1.8s;	/*0.2秒だけ遅れてアニメーションをスタートさせる設定*/
}

/*４つ目のメニュー(activities)*/
#menubar li:nth-of-type(4) {
	left: 18%;			/*ウィンドウに対して左からの配置場所*/
	top: 65%;			/*ウィンドウに対して上からの配置場所*/
	width: 145px;		/*幅*/
	line-height: 145px;	/*高さ*/
	animation-delay: 2.3s;	/*0.2秒だけ遅れてアニメーションをスタートさせる設定*/
}

/*５つ目のメニュー(history)*/
#menubar li:nth-of-type(5) {
	left: 7%;			/*ウィンドウに対して左からの配置場所*/
	top: 80%;			/*ウィンドウに対して上からの配置場所*/
	width: 125px;			/*幅*/
	line-height: 125px;		/*高さ*/
	animation-delay: 2.6s;	/*0.2秒だけ遅れてアニメーションをスタートさせる設定*/
}

/*main
---------------------------------------------------------------------------*/
/*h2見出し*/
main h2 {
	font-size: 2em;			/*文字サイズ*/
	margin-bottom: 20px;	/*下に空ける余白*/
	text-align: center;		/*文字をセンタリング*/
	letter-spacing: 0.2em;	/*文字間隔を広くとる設定*/
}

/*h2見出しの上の装飾*/
main h2::before {
	content: "●";	/*好きな装飾文字に変えてもらって構いませんが機種依存文字は化けるので使わない*/
	display: block;
	text-shadow: 20px 10px 0px rgba(255,255,255,0.2);	/*影。右に、下に、ぼかし幅。255,255,255は白の事で0.5は色が50%出た状態の事。*/
}

/*h2見出し内のspanタグ*/
main h2 span {
	display: block;
	font-size: 0.7em;	/*文字サイズ*/
}

/*h3見出し*/
main h3 {
	margin-bottom: 20px;	/*下に空ける余白*/
	letter-spacing: 0.1em;	/*文字間隔を広くとる設定*/
	background: #fff;		/*背景色（古いブラウザ用）*/
	background: rgba(255,255,255,0.3);	/*255,255,255は白の事で0.3は色が30%出た状態の事。*/
	text-align: center;		/*文字を中央に*/
	border-radius: 10px;	/*角丸のサイズ。大きめに設定しておけばOK。*/
	padding: 0px 20px;		/*上下、左右への余白*/
}

/*段落タグ*/
main p {
	padding: 0 30px 30px;		/*上、左右、下への余白*/
}

/*コンテンツ
---------------------------------------------------------------------------*/
/*コンテンツ共通、ここで左側に余白を設け、左側にあるメニュー（ヘッダーメニュー）に文字が被らないようにしている*/
.contents {
	padding: 0 4% 50px 40%;	/*ボックス内の余白。上、右、下、左。*/
}


/*「お知らせ」ブロック
---------------------------------------------------------------------------*/
/*日付(dt)設定*/
#new dt {
	width: 14em;	/*幅。14文字(em)分。*/
	display: flex;	/*flexボックスを使う指定*/
	justify-content: space-between;	/*日付とアイコンをそれぞれ端に寄せる*/
}

/*日付の横のマーク（共通設定）*/
#new dt span {
	display: inline-block;	/*表示させる*/
	width: 6em;				/*幅。6文字(em)分。*/
	background: #999;		/*背景色*/
	color: #fff;			/*文字色*/
	font-size: 0.9em;		/*文字サイズを90%に。*/
	text-align: center;		/*文字をセンタリング*/
	border-radius: 3px;		/*角を少しだけ丸くする*/
	margin-right: 1.2em;	/*アイコンの右側に空けるスペース*/
	align-self: flex-start;	/*高さを間延びさせない指定*/
	line-height: 1.8;		/*行間を少し狭く*/
	position: relative;top: 0.4em;	/*上下の配置バランスの微調整*/
}

/*bg1設定*/
#new dt span.icon-bg1 {
	background: #002d59;	/*背景色*/
}

/*記事(dd)設定*/
#new dd {
	width: calc(100% - 14em);	/*「14em」は上の「#new dt」のwidthの値です。*/
}


/*テーブル
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta1 caption {
	padding: 5px 15px;		/*上下、左右へのボックス内の余白*/
}

/*th（左側）、td（右側）の共通設定*/
.ta1 th, .ta1 td {
	padding: 10px 15px;		/*上下、左右へのボックス内の余白*/
}

/*th（左側）のみの設定*/
.ta1 th {
	width: 25%;		/*幅*/
}


/*その他
---------------------------------------------------------------------------*/
.ws {width: 48%;display: inline;}


/*　※注意！　下の閉じカッコ　}　はこのブロックに必要なので、削除しないで下さい。　*/

}


/*---------------------------------------------------------------------------
ここから下は画面幅700以上940px以下の追加指定
※タブレットの縦置き
---------------------------------------------------------------------------*/
@media screen and (min-width:700px) and (max-width:940px) and (orientation: portrait){
/*１つ目のメニュー(mission)*/
#menubar li:nth-of-type(1) {
	font-size: 1.8em;		/*少し大きく*/
	left: 10px;				/*ウィンドウに対して左からの配置場所*/
	top: 15px;				/*ウィンドウに対して上からの配置場所*/
	background: #fff;	   /*背景色*/
	width: 190px;			/*幅*/
	line-height: 190px;		/*高さ*/
}

/*２つ目のメニュー(community)*/
#menubar li:nth-of-type(2) {
	font-size: 1.7em;		/*少し大きく*/
	left: 3%;			/*ウィンドウに対して左からの配置場所*/
	top: 25%;			/*ウィンドウに対して上からの配置場所*/
	width: 170px;		/*幅*/
	line-height: 170px;	/*高さ*/
}

/*３つ目のメニュー(efforts)*/
#menubar li:nth-of-type(3) {
	left: 5%;			/*ウィンドウに対して左からの配置場所*/
	top: 48%;			/*ウィンドウに対して上からの配置場所*/
	width: 130px;		/*幅*/
	line-height: 130px;	/*高さ*/
}

/*４つ目のメニュー(activities)*/
#menubar li:nth-of-type(4) {
	left: 2%;			/*ウィンドウに対して左からの配置場所*/
	top: 65%;			/*ウィンドウに対して上からの配置場所*/
	width: 105px;		/*幅*/
	line-height: 105px;	/*高さ*/
}

/*５つ目のメニュー(history)*/
#menubar li:nth-of-type(5) {
	left: 8%;			/*ウィンドウに対して左からの配置場所*/
	top: 80%;			/*ウィンドウに対して上からの配置場所*/
	width: 85px;		/*幅*/
	line-height: 85px;	/*高さ*/
}


#slogan{
	display: block;				/*ブロック要素*/
	position: relative;			/*画面左上を基点になる*/
	color: #000;			   /*文字の色*/
	font-size: 4.8em;				/*表示幅の指定*/
	top: 18%;					/*画面上からの距離*/
	left: 40%;					/*画面左からの距離*/
	position: fixed;			/*要素を固定*/
}

/*社名の設定*/
.logo{
	display: block;				/*ブロック要素*/
	width: 50%;					/*表示幅の指定*/
	position: relative;			/*画面左上を基点になる*/
	top: 5%;					/*画面上からの距離*/
	left: 50%;					/*画面左からの距離*/
	z-index: -1;				/*重なりの順序を指定*/
	position: fixed;			/*要素を固定*/
}

/*　※注意！　下の閉じカッコ　}　はこのブロックに必要なので、削除しないで下さい。　*/

}


/*---------------------------------------------------------------------------
ここから下は画面幅1800以上の追加指定
---------------------------------------------------------------------------*/
@media screen and (min-width:1800px) {
	/*１つ目のメニュー(mission)*/
#menubar li:nth-of-type(1) {
	font-size: 2.9em;		/*少し大きく*/
	left: 10px;				/*ウィンドウに対して左からの配置場所*/
	top: 10px;				/*ウィンドウに対して上からの配置場所*/
	background: #fff;	   /*背景色*/
	width: 320px;			/*幅*/
	line-height: 320px;		/*高さ*/
}

/*２つ目のメニュー(community)*/
#menubar li:nth-of-type(2) {
	font-size: 2.6em;		/*更に大きく*/
	left: 16%;			/*ウィンドウに対して左からの配置場所*/
	top: 27%;			/*ウィンドウに対して上からの配置場所*/
	width: 250px;		/*幅*/
	line-height: 250px;	/*高さ*/
}

/*３つ目のメニュー(efforts)*/
#menubar li:nth-of-type(3) {
	font-size: 2.3em;		/**/
	left: 3%;			/*ウィンドウに対して左からの配置場所*/
	top: 43%;			/*ウィンドウに対して上からの配置場所*/
	width: 230px;		/*幅*/
	line-height: 230px;	/*高さ*/
}

/*４つ目のメニュー(activities)*/
#menubar li:nth-of-type(4) {
	font-size: 2.2em;		/**/
	left: 14%;			/*ウィンドウに対して左からの配置場所*/
	top: 65%;			/*ウィンドウに対して上からの配置場所*/
	width: 180px;		/*幅*/
	line-height: 180px;	/*高さ*/
}

/*５つ目のメニュー(history)*/
#menubar li:nth-of-type(5) {
	font-size: 2.1em;		/*更に大きく*/
	left: 5%;			/*ウィンドウに対して左からの配置場所*/
	top: 82%;			/*ウィンドウに対して上からの配置場所*/
	width: 145px;		/*幅*/
	line-height: 145px;	/*高さ*/
}

	
#slogan{
	display: block;				/*ブロック要素*/
	position: relative;			/*画面左上を基点になる*/
	color: #000;			   /*文字の色*/
	font-size: 3.7em;				/*表示幅の指定*/
	top: 18%;					/*画面上からの距離*/
	left: 44%;					/*画面左からの距離*/
	position: fixed;			/*要素を固定*/
}



/*　※注意！　下の閉じカッコ　}　はこのブロックに必要なので、削除しないで下さい。　*/

}


/*---------------------------------------------------------------------------
ここから下は画面幅640px以上、かつ画面が「横長」の場合の追加指定 
※タブレットの横置き
---------------------------------------------------------------------------*/
@media screen and (min-width: 640px) and (hover: none) and (pointer: coarse) and (orientation: landscape) {
#mainimg2 {
	text-indent: -9999px;	
	position: fixed;
	top: 0px;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: url(../images/csr/bg_sub.png) no-repeat left top / 100%, url(../images/csr/bg_main.jpg) no-repeat center center / cover;
}

#mainimg{
	display: none;
}

/*　※注意！　下の閉じカッコ　}　はこのブロックに必要なので、削除しないで下さい。　*/

}



