@charset "utf-8";

/*虹と彼方へ メインCSS
---------------------------------------------------------------------------*/



/*リセットCSS（sanitize.css）の読み込み
---------------------------------------------------------------------------*/
@import url("https://unpkg.com/sanitize.css");

/*lightbox.cssの読み込み
---------------------------------------------------------------------------*/
@import url(https://cdnjs.cloudflare.com/ajax/libs/lightbox2/2.10.0/css/lightbox.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=Klee+One&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: #121B37 url(../images/bg_main_eve20240412.jpg)  repeat fixed left top / auto 100%;
		background: #E5E9E3 url(../images/bg.jpg) repeat center center/200px;
	background: url(../images/bg_sub.png) no-repeat left top / 100%, url(../images/bg_main_eve20240412.jpg) no-repeat center center  / cover;
		background: url(../images/bg_sub.png) no-repeat left top / 100%, url(../images/bg_main_eve20240412.jpg) no-repeat center center / cover fixed;*/

		background: url(../images/bg_sub.png) no-repeat left top / 100%, url(../images/bg_main_eve20250411.jpg) no-repeat right top / cover fixed;

    
	color: #57524b;		/*全体の文字色*/
	line-height: 2;		/*行間*/

}

/*リセット*/
figure {margin: 0;}
dd {margin: 0;}
nav {margin: 0;padding: 0;}

h4 {margin: 15px 15px 8px 15px;padding: 0px;font-size: 100%;}
h5,h6 { 
  font-weight: 600;
  line-height: 12px;
  padding: 8px 5px 8px 5px; font-size: 80%; margin: 0px 0px 0px 0px}




/*table全般の設定*/
table {border-collapse:collapse;}

/*画像全般の設定*/
img {border: none;max-width: 100%;height: auto;vertical-align: middle;}

/*videoタグ
video {max-width: 100%;}*/


video {
  max-width: 100%;

  position: fixed;
  
  top: 0;
  right:0;

  height: 100%;
  object-fit: cover;
  z-index: -100;
  pointer-events: none;
}
@media screen  and (orientation: landscape) and (min-aspect-ratio: 7/1) {

video {
	max-height: 100%;
	position: fixed;
	top: 50%;
	right: 50%;

	width:100%;
	object-fit: cover;
	z-index: -100;
	pointer-events: none;
}

}




/*iframeタグ*/
iframe {width: 100%;}

/*ul,olタグ*/
ul, ol {margin-bottom: 30px;}


/*リンクテキスト全般の設定
---------------------------------------------------------------------------*/
a {
	color: #57524b;	/*文字色*/
	transition: 0.3s;
}

a:hover {
	opacity: 0.8;	/*マウスオン時に60%の透明度にする*/
}


/*桜吹雪用
---------------------------------------------------------------------------*/


#particles-js{ 
	position:fixed;/*描画固定*/
	z-index:-1    ;/*描画を一番下に*/
	width: 99%;
	height: 99%;
	/*background-color:#FEE7E7;背景色*/
}

#wrapper{
	position: relative;/*描画を#particles-jsよりも上にするためposition:relative;を指定*/
	z-index: 0;/*z-indexの数字を大きくすることで描画を#particles-jsよりも上に*/
	width:99%;
	height: 9%;
}





/*メインイメージ（bg_sub.pngとbg_main.jpgを読み込んでいます）
---------------------------------------------------------------------------*/
#mainimg {
	text-indent: -9999px;
	position: fixed;top: 0px;z-index: -1;
	width: 100%;
	height: 100%;
/*元に戻すときにはこれをコメントアウト20230902HarukaNa スマホ表示にここが必要*/
/*	 background: url(../images/bg_sub.png) no-repeat left top / 100%, url(../images/bg_main.png) no-repeat right top / auto 100%;
*/ 

	 background: url(../images/bg_sub.png) no-repeat left top , url(../images/bg_main_eve20250411.jpg)  no-repeat right center / cover; 

}


/*ヘッダー
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
.header1 {
	height: 100%;	/*高さ*/
}

.header2 {
	height: 0%;	/*高さ*/
}


/*ロゴ画像*/
header #logo img {
	width: 200px;		/*幅*/
	position: fixed;	/*画面に対して固定表示*/
	left: -22%;		/*ウィンドウに対して左からの配置場所*/
	top: -5%;			/*ウィンドウに対して上からの配置場所*/
	background: rgba(148,152,82,0.8);	/*RGBで指定した背景色。最後の0.8は色が80%出た状態のこと。*/
	border-radius: 50%;	/*角丸のサイズ。中の画像が正方形であれば円形になります。*/
}







/*メインメニュー
---------------------------------------------------------------------------*/
/*メニュー１個あたりの設定*/
#menubar li {
	display: inline-block;
	transition: 0.5s;
	border-radius: 50%;			/*円形にする*/
	animation: opa1 1.5s both;	/*animation.cssの、opa1を実行する。1.5sは1.5秒の事。*/
	text-align: center;
	vertical-align: middle;

	position: fixed;	/*画面に対して固定表示*/
}
#menubar li a {
	display: block;
	text-decoration: none;
	color: #fff;		/*文字色*/
}

/*マウスオン時*/
#menubar li:hover {
	transform: scale(1.05);		/*105%に拡大*/
	filter: brightness(1.1);	/*少しだけ明るくする*/
}

/*４つ目(Instagram)を除き、以下のGoogle Fontsを使い、縦書きにする。*/
#menubar li:not(:nth-of-type(0)) {
	font-family: 'Klee One', cursive;
	writing-mode: vertical-rl;
	line-height: 100px;	/*高さ*/

}

/*１つ目のメニュー(About)*/
#menubar li:nth-of-type(1) {
	left: 2%;			/*ウィンドウに対して左からの配置場所*/
	top: 22%;			/*ウィンドウに対して上からの配置場所*/
	animation-delay: 0.2s;	/*0.2秒だけ遅れてアニメーションをスタートさせる設定*/
	background: rgba(184,122,56,0.5);	/*RGBでの背景色指定。最後の0.8は色が80%出た状態のこと。*/
	width: 100px;		/*幅*/
	height: 100px;		/*高さ*/
	line-height: 100px;	/*高さ*/
}


/*２つ目のメニュー(Gallery)  こめおわ
/#menubar li:nth-of-type(2) {
	left: -4%;			こめかいウィンドウに対して左からの配置場所こめおわ
	top: 37%;			こめかいウィンドウに対して上からの配置場所こめおわ
	animation-delay: 0.4s;	こめかい0.4秒だけ遅れてアニメーションをスタートさせる設定こめおわ
	background: rgba(205,96,82,0.8);	こめかいRGBでの背景色指定。最後の0.8は色が80%出た状態のこと。こめおわ
	width: 110px;		こめかい幅こめおわ
	height: 110px;		こめかい高さこめおわ
	line-height: 110px;	こめかい高さこめおわ
}
*/




#menu2 img {
	width: 120px;		/*幅*/
	position: fixed;	/*画面に対して固定表示*/
	left: -4%;			/*ウィンドウに対して左からの配置場所*/
	top: 37%;			/*ウィンドウに対して上からの配置list場所*/
	animation: opa1 1.5s both;
	animation-delay: 0.4s;	/*0.4秒だけ遅れてアニメーションをスタートさせる設定*/
	background: rgba(205,96,82,0.5);	/*82RGBでの背景色指定。最後の0.8は色が80%出た状態のこと。*/
	border-radius: 50%;	/*角丸のサイズ。中の画像が正方形であれば円形になります。*/
	
	
}
#menu2 img:hover {
	transform: scale(1.05);		/*105%に拡大*/
	filter: brightness(1.1);	/*少しだけ明るくする*/

}


/*３つ目のメニュー(Link)*/
#menubar li:nth-of-type(2) {
	left: 1%;			/*ウィンドウに対して左からの配置場所*/
	top: 70%;			/*ウィンドウに対して上からの配置場所*/
	animation-delay: 0.6s;	/*0.6秒だけ遅れてアニメーションをスタートさせる設定*/
	background: rgba(125,101,87,0.5);	/*RGBでの背景色指定。最後の0.8は色が80%出た状態のこと。*/
	width: 80px;		/*幅*/
	height: 80px;		/*高さ*/
	line-height: 80px;	/*高さ*/
}






/*４つ目のメニュー(BOOTH)*/
#menubar li:nth-of-type(3) {
	left: 8%;			/*ウィンドウに対して左からの配置場所*/
	top: 85%;			/*ウィンドウに対して上からの配置場所*/
	animation-delay: 0.8s;	/*0.8秒だけ遅れてアニメーションをスタートさせる設定*/
	background: rgba(138,158,156,0.5);	/*138,158,156,0.8RGBでの背景色指定。最後の0.8は色が80%出た状態のこと。*/
/*	font-size: 1.5em;	文字サイズ*/
	width: 60px;		/*幅*/
	height: 60px;		/*高さ*/
	line-height: 60px;	/*高さ*/
}



#menu4 img {
	width: 140px;		/*幅*/
	position: fixed;	/*画面に対して固定表示*/
	left: 2%;			/*ウィンドウに対して左からの配置場所*/
	top: 50%;			/*ウィンドウに対して上からの配置list場所*/
	animation: opa1 1.5s both;
	animation-delay: 0.8s;	/*0.4秒だけ遅れてアニメーションをスタートさせる設定*/
	background: rgba(238,157,25,0.5);	/*82RGBでの背景色指定。最後の0.8は色が80%出た状態のこと。*/
	border-radius: 50%;	/*角丸のサイズ。中の画像が正方形であれば円形になります。*/
	
	
}
#menu4 img:hover {
	transform: scale(1.05);		/*105%に拡大*/
	filter: brightness(1.1);	/*少しだけ明るくする*/

}



/*5つ目のメニュー(イベントメニュー) 20230902 Harukana 現在未使用？　*/ 
#menubar li:nth-of-type(4) {
	left: 32%;			/*ウィンドウに対して左からの配置場所*/
	top: 10%;			/*ウィンドウに対して上からの配置場所*/
	animation-delay: 0.4s;	/*0.4秒だけ遅れてアニメーションをスタートさせる設定*/
	background: rgba(250,191,19,0.5);	/*RGBでの背景色指定。最後の0.8は色が80%出た状態のこと。*/
	width: 200px;		/*幅*/
	height: 200px;		/*高さ*/
	line-height: 200px;	/*高さ*/
}


/*コンテンツ
---------------------------------------------------------------------------*/
/*コンテンツ共通*/
.contents {
	overflow: hidden;
	padding: 0 4% 50px 90px;	/*ボックス内の余白。上、右、下、左。*/
	margin: 0px 0px 250px 1px;	/*顔が見えやすいようにマージンを付ける。上、右、下、左。*/
}


/*main
---------------------------------------------------------------------------*/
/*h2見出し*/
main h2 {
	font-family: 'Klee One', cursive;

	font-size: 1.5em;			/*文字サイズ*/
	margin-bottom: 10px;	/*下に空ける余白*/
	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 {
	font-family: 'Klee One', cursive;

	margin-bottom: 40px;	/*下に空ける余白*/
	letter-spacing: 0.1em;	/*文字間隔を広くとる設定*/
	background: #fff;		/*背景色（古いブラウザ用）*/
	background: rgba(255,255,255,0.3);	/*255,255,255は白の事で0.3は色が30%出た状態の事。*/
	text-align: center;		/*文字を中央に*/
	border-radius: 40px;	/*角丸のサイズ。大きめに設定しておけばOK。*/
	padding: 0px 15px ;		/*上下、左右への余白*/

	margin: 20px 25px 40px 25px
}

/*段落タグ*/
main p {
	padding: 0 30px 30px;		/*上、左右、下への余白*/
}

/*bg1スタイルのついたコンテンツ*/
.bg1 {
	background: url(../images/bg1.png) repeat center top/ 200px;	/*背景画像*/
}

/*bg2スタイルのついたコンテンツ*/
.bg2 {
	background: url(../images/bg2.png) repeat center top/ 200px;	/*背景画像*/
}

/*bg3スタイルのついたコンテンツ*/
.bg3 {
	background: url(../images/bg3.png) repeat center top/ 200px;	/*背景画像*/
}

/*bg4スタイルのついたコンテンツ*/
.bg4 {
	background: url(../images/bg4.png) repeat center top/ 200px;	/*背景画像*/
}


/*Galleryブロック
---------------------------------------------------------------------------*/
/*listボックスを囲むボックス*/
.list-container {
	display: flex;					/*flexボックスを使う指定*/
	flex-wrap: wrap;				/*折り返す指定*/
	justify-content: space-between;	/*並びかたの種類の指定*/
	margin-bottom: 80px;			/*ボックス同士の上下間の余白*/
}
.list-container::after{
  content:"";
  display: block;
  width:30%;
}


/*listボックス。１個あたりのボックスの指定です。*/
.list-container .list {
/*	display: flex;				*/	/*flexボックスを使う指定*/	flex-direction: column;			/*子要素を縦並びにする*/
/*	justify-content: space-between;	*//*並びかたの種類の指定*/
/*	margin-bottom: 30px;			*//*ボックス同士の上下間の余白*/
	border-radius: 10px;			/*角丸のサイズ。中の画像が正方形であれば、10pxを50%にすることで円形にすることもできます。*/
/*	overflow: hidden;				*/
/*	width: 32%;					*/	/*幅。１行に何個配置したいか、ここの数値を変更してお好みで調整して下さい。*/
}

/*listブロック（works.html内で使用）
---------------------------------------------------------------------------*/
/*ブロック単位の設定*/
.list {
	position: relative;overflow: hidden;
	float: left;	/*左に回り込み*/
	width: 30%;		/*幅*/
	box-shadow: 2px 2px 5px rgba(0,0,0,0.1);	/*ボックスの影。右へ、下へ、広げる幅。0,0,0は黒の事で0.1は10%色がついた状態の事。*/
	line-height: 1.4;	/*行間を少し狭く。デフォルトの値は冒頭の「body」にあります。*/
	margin-left: 2.5%;	/*左に空けるボックスの外側へのスペース。左右間の余白になります。*/
	margin-bottom: 20px;	/*下に空けるボックスの外側へのスペース。上下間の余白になります。*/
	/*margin-left: auto;  追加 */
	/* margin-right: auto; 追加 */
	background: #fff;	/*背景色*/
	height: 350px;	/*下の「.list a」のheightの数字と合わせる*/
}
.list a {
	position: relative;overflow:hidden;text-decoration: none;display: block;
	height: 350px;	/*上のの「.list」のheightの数字と合わせる*/
}
/*マウスオン時のlistブロック*/
.list a:hover {
	background: #000;	/*背景色*/
	color: #fff;		/*文字色*/
}
/*リンクを設定した際に出るボックス内の「→」マーク*/
.list a::after {
	content: "→";	/*このテキストを表示させます。変更しても構いませんが機種依存文字は化けるので使わないように。*/
	display: inline-block;text-align: center;
	width: 15px;	/*幅*/
	line-height: 15px;	/*高さ*/
	position: absolute;
	right: 10px;	/*listブロックに対して右から10pxの場所に配置*/
	bottom: 10px;	/*listブロックに対して下から10pxの場所に配置*/
	font-size: 10px;	/*文字サイズ*/
	background: #000;	/*背景色*/
	color: #fff;		/*文字色*/
}
/*「→」マークのマウスオン時*/
.list a:hover::after {
	background: #fff;	/*背景色*/
	color: #000;		/*文字色*/
}
/*listブロック内のh4タグとpタグ共通設定*/jpg
.list h4, .list p {
	padding: 0 !important;
	margin: 0 !important;
}
/*listブロック内のh4タグ*/
.list h4 {
	color: #000;	/*文字色*/s
	padding: 10spx !important;	/*余白*/
}
/*マウスオン時のh4タグ*/
.list a:hover h4,h5,h6 {
	color: #fff;	/*文字色*/
}

/*listブロック内のh5タグ*/
.list h5,h6 {
position: relative;overflow:hidden;text-decoration: none;display: block;
	color: #fff;	/*文字色*/s
	padding: 10spx !important;	/*余白*/

	font-family: 'Klee One', cursive;
	text-align: center;
}



.list h5 {	
	background: #6c848d;	/*背景色*/
}
.list h6 {	
	background: #b3a4a1;	/*背景色*/
}


/*listブロック内のpタグ*/
.list p {
	font-size: 11px;	/*文字サイズ*/
	padding: 0 10px 10px !important;	/*上、左右、下への余白*/
}



/*「お知らせ」ブロック
---------------------------------------------------------------------------*/
/*お知らせブロック*/
#new {
	padding: 0 20px;	/*上下、左右へのボックス内の余白*/
}
/*日付の横のマーク（共通設定）*/
#new dt span {
	display: none;	/*小さな端末では非表示にしておく。*/
}


/*フッター設定
---------------------------------------------------------------------------*/
footer small {font-size: 100%;}

footer {
	font-size: 0.6em;		/*文字サイズ*/
	text-align: center;		/*内容をセンタリング*/
	padding: 20px;			/*ボックス内の余白*/
}

/*リンクテキスト*/
footer a {text-decoration: none;}

/*著作部分*/
footer .pr {display: block;}


/*テーブル
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※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-theme, .color-theme a {color: #74791b !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: 0px 10px;background: #666; color: #fff; border-radius: 3px;margin: 5px 0;}
.look .color-check {color: #ffcc00 !important;}
.small {font-size: 0.6em;}


/*---------------------------------------------------------------------------
ここから下は画面幅500px以上の追加指定(縁壱さんを右寄せ）
---------------------------------------------------------------------------*/
@media screen and (min-width:500px) {

#mainimg {

/*元に戻すときにはこれをコメントアウト20230902HarukaNa*/
/*	 background: url(../images/bg_sub.png) no-repeat left top / 100%, url(../images/bg_main.png) no-repeat right top / auto 100%; */
}

}

/*---------------------------------------------------------------------------
ここから下は画面幅370px以上の追加指定
---------------------------------------------------------------------------*/
@media screen and (min-width:370px) {




/*「お知らせ」ブロック
---------------------------------------------------------------------------*/
/*お知らせブロック*/
#new {
	margin: 0;
	display: flex;		/*flexボックスを使う指定*/
	flex-wrap: wrap;	/*折り返す指定*/
}



/*日付(dt)、記事(dd)共通設定*/
#new dt,
#new dd {
	padding: 5px 0;		/*上下、左右へのボックス内の余白*/
}

/*日付(dt)設定*/
#new dt {
	width: 8em;	/*幅。8文字(em)分。※下の「900px以上」の端末用の設定に再設定があります。*/
}

/*記事(dd)設定*/
#new dd {
	width: calc(100% - 8em);	/*「8em」は上の「#new dt」のwidthの値です。※下の「900px以上」の端末用の設定に再設定があります。*/
}


/*harukana設定 リスト対応*/

video {
  position: fixed;
  
  top: 0;
  right:0;
  /*left:0;*/


  height: 100%;
  object-fit: cover;
  z-index: -100;
  pointer-events: none;
    /* 追加 */

}
}




/*---------------------------------------------------------------------------
◇◆◇◇◆◇◇◆◇◇◆◇◇◆◇◇◆◇◇◆◇◇◆◇◇◆◇◇◆◇◇◆◇◇◆◇◇◆◇
ここから下は画面幅600px以下、かつ画面が「横長」の場合の追加指定
---------------------------------------------------------------------------*/



@media screen and (max-width:750px)  {

#mainimg {

/*元に戻すときにはこれをコメントアウト20230902HarukaNa*/
/*	 background: url(../images/bg_sub.png) no-repeat left top / 100%, url(../images/bg_main.png) no-repeat right top / auto 100%; */
/*		background: url(../images/bg_sub.png) no-repeat left top / 100%, url(../images/bg_main_eve20240412.jpg) no-repeat center center / cover fixed;

	 background: url(../images/bg_sub.png) no-repeat left top / 100%, url(../images/bg_main_eve20240412.jpg) no-repeat right top / auto 100%; */


}


/*ブロック単位の設定*/
.list {
	float: none;
	width: auto;
	height: auto;
}
.list a {
	height: auto;
}
/*画像の設定*/
.list figure {
	float: left;	/*左に回り込み*/
	width: 35%;		/*幅*/
	margin-right: 10px;	/*画像の右側に空けるスペース*/
}



/*　※注意！　下の閉じカッコ　}　はこのブロックに必要なので、削除しないで下さい。　*/

}




/*---------------------------------------------------------------------------
ここから下は画面幅900px以下、かつ画面が「横長」の場合の追加指定
---------------------------------------------------------------------------*/
@media screen and (max-width:600px) and (orientation: landscape) {


#mainimg {

/*元に戻すときにはこれをコメントアウト20230902HarukaNa*/
/*		background: url(../images/bg_sub.png) no-repeat left top / 100%, url(../images/bg_main_eve20240412.jpg) no-repeat center center / cover fixed;

	 background: url(../images/bg_sub.png) no-repeat left top / 100%, url(../images/bg_main_eve20240412.jpg) no-repeat right top / auto 100%; */
}

/*コンテンツ
---------------------------------------------------------------------------*/
/*コンテンツ共通*/
.contents {
	padding-left: 170px;	/*ボックス内の左側にとる余白*/
}



/*　※注意！　下の閉じカッコ　}　はこのブロックに必要なので、削除しないで下さい。　*/

}

/*---------------------------------------------------------------------------
ここから下は画面幅600px以上の追加指定　＊Harukana
---------------------------------------------------------------------------*/
@media screen and (min-width:600px) {

#mainimg {

/*元に戻すときにはこれをコメントアウト20230902HarukaNa*/
/*	 background: url(../images/bg_sub.png) no-repeat left top / 100%, url(../images/bg_main.png) no-repeat right top / auto 100%; */


}


/*全体の設定
---------------------------------------------------------------------------*/
html, body {
	font-size: 14px;	/*基準となるフォントサイズの上書き*/
}

/*「背景画像」ブロック
---------------------------------------------------------------------------*/


/*ヘッダー
---------------------------------------------------------------------------*/
/*ロゴ画像*/
header #logo img {
	width:410px;	/*幅*/
	top: -10%;		/*ウィンドウに対して左からの配置場所*/

	left: -12%;		/*ウィンドウに対して左からの配置場所*/
}

# menu2 img {
	width: 210px;	/*幅*/
	left: -2%;		/*ウィンドウに対して左からの配置場所*/
}

# menu4 img {
	width: 140px;	/*幅*/
	left: -5%;		/*ウィンドウに対して左からの配置場所*/
}
/*メインメニュー
---------------------------------------------------------------------------*/
/*１つ目のメニュー(About)*/
#menubar li:nth-of-type(1) {
	left: 20%;			/*ウィンドウに対して左からの配置場所*/
	top: 27%;			/*ウィンドウに対して上からの配置場所*/
	width: 120px;		/*幅*/
	height: 120px;		/*高さ*/
	line-height: 120px;	/*高さ*/
}

/*２つ目のメニュー(Gallery)こめおわ
#menubar li:nth-of-type(2) {
	left: 4%;			こめかいウィンドウに対して左からの配置場所こめおわ
	top: 45%;			こめかいウィンドウに対して上からの配置場所こめおわ
	width: 150px;		こめかい幅こめおわ
	height: 150px;		こめかい高さこめおわ
	line-height: 150px;	こめかい高さこめおわ
}*/

#menu2 img {
	width: 150px;		/*幅*/
	position: fixed;	/*画面に対して固定表示*/
	left: 4%;			/*ウィンドウに対して左からの配置場所*/
	top: 45%;			/*ウィンドウに対して上からの配置場所*/
	animation-delay: 0.4s;	/*0.4秒だけ遅れてアニメーションをスタートさせる設定*/
	background: rgba(205,96,82,0.8);	/*RGBでの背景色指定。最後の0.8は色が80%出た状態のこと。*/
	border-radius: 50%;	/*角丸のサイズ。中の画像が正方形であれば円形になります。*/
}

/*３つ目のメニュー(Link)*/
#menubar li:nth-of-type(3) {
	left: 18%;			/*ウィンドウに対して左からの配置場所*/
	top: 70%;			/*ウィンドウに対して上からの配置場所*/
	width: 130px;		/*幅*/
	height: 130px;		/*高さ*/
	line-height: 130px;	/*高さ*/
}

/*４つ目のメニュー(Instagram)*/
#menubar li:nth-of-type(4) {
	left: 32%;			/*ウィンドウに対して左からの配置場所*/
	top: 10%;			/*ウィンドウに対して上からの配置場所*/
	width: 100px;		/*幅*/
	height: 100px;		/*高さ*/
	line-height: 100px;	/*高さ*/
}

#menu4 img {
	width: 120px;		/*幅*/
	position: fixed;	/*画面に対して固定表示*/
	left: 20%;			/*ウィンドウに対して左からの配置場所*/
	top: 48%;			/*ウィンドウに対して上からの配置場所*/
	animation-delay: 1.0s;	/*0.4秒だけ遅れてアニメーションをスタートさせる設定*/
	background: rgba(238,157,25,0.8);	/*RGBでの背景色指定。最後の0.8は色が80%出た状態のこと。*/
	border-radius: 50%;	/*角丸のサイズ。中の画像が正方形であれば円形になります。*/
}

/*コンテンツ
---------------------------------------------------------------------------*/
/*コンテンツ共通*/
.contents {
	padding: 0 4% 50px 40%;	/*ボックス内の余白。上、右、下、左。*/
}

} /* これは削除しない */



/*---------------------------------------------------------------------------
アスペクト比が3/4を超えて縦長になったときに、横100%で表示
---------------------------------------------------------------------------*/





/*---------------------------------------------------------------------------
ここから下は画面幅900px以上の追加指定
---------------------------------------------------------------------------*/
@media screen and (min-width:900px) {

#mainimg {

/*元に戻すときにはこれをコメントアウト20230902HarukaNa*/
/*	 background: url(../images/bg_sub.png) no-repeat left top / 100%, url(../images/bg_main.png) no-repeat right top / auto 100%; */

}

/*全体の設定
---------------------------------------------------------------------------*/
html, body {
	font-size: 16px;	/*基準となるフォントサイズの上書き*/
}

 ]
/*ヘッダー
---------------------------------------------------------------------------*/
/*ロゴ画像*/
header #logo img {
	width: 280px;	/*幅*/
	left: 50%;		/*ウィンドウに対して左からの配置場所*/
}

/*背景画像*/


/*メインメニュー
---------------------------------------------------------------------------*/
/*１つ目のメニュー(About)*/
#menubar li:nth-of-type(1) {
	left: 20%;			/*ウィンドウに対して左からの配置場所*/
	top: 27%;			/*ウィンドウに対して上からの配置場所*/
	width: 150px;		/*幅*/
	height: 150px;		/*高さ*/
	line-height: 150px;	/*高さ*/
}

/*２つ目のメニュー(Gallery)こめおわ
#menubar li:nth-of-type(2) {
	left: 4%;			こめかいウィンドウに対して左からの配置場所こめおわ
	top: 45%;			こめかいウィンドウに対して上からの配置場所こめおわ
	width: 190px;		こめかい幅こめおわ
	height: 190px;		こめかい高さこめおわ
	line-height: 190px;	こめかい高さこめおわ
}*/

#menu2 img {
	width: 190px;		/*幅*/
	position: fixed;	/*画面に対して固定表示*/
	left: 4%;			/*ウィンドウに対して左からの配置場所*/
	top: 45%;			/*ウィンドウに対して上からの配置場所*/
	animation-delay: 0.4s;	/*0.4秒だけ遅れてアニメーションをスタートさせる設定*/
	background: rgba(205,96,82,0.8);	/*RGBでの背景色指定。最後の0.8は色が80%出た状態のこと。*/
	border-radius: 50%;	/*角丸のサイズ。中の画像が正方形であれば円形になります。*/
}




/*３つ目のメニュー(Link)*/
#menubar li:nth-of-type(2) {
	left: 18%;			/*ウィンドウに対して左からの配置場所*/
	top: 65%;			/*ウィンドウに対して上からの配置場所*/
	width: 130px;		/*幅*/
	height: 130px;		/*高さ*/
	line-height: 130px;	/*高さ*/
}

/*４つ目のメニュー(Instagram)*/
#menubar li:nth-of-type(3) {
	left: 7%;			/*ウィンドウに対して左からの配置場所*/
	top: 80%;			/*ウィンドウに対して上からの配置場所*/
	width: 100px;		/*幅*/
	height: 100px;		/*高さ*/
	line-height: 100px;	/*高さ*/
}

/*イベントメニュー */
#menu4 img {
	width: 210px;		/*幅*/
	position: fixed;	/*画面に対して固定表示*/
	left: 22%;			/*ウィンドウに対して左からの配置場所*/
	top: 48%;			/*ウィンドウに対して上からの配置場所*/
	animation-delay: 1.0s;	/*0.4秒だけ遅れてアニメーションをスタートさせる設定*/
	background: rgba(238,157,25,0.8);	/*RGBでの背景色指定。最後の0.8は色が80%出た状態のこと。*/
	border-radius: 50%;	/*角丸のサイズ。中の画像が正方形であれば円形になります。*/
}






/*コンテンツ
---------------------------------------------------------------------------*/
/*コンテンツ共通*/
.contents {
	padding: 0 4% 50px 35%;	/*ボックス内の余白。上、右、下、左。*/
}


/*「お知らせ」ブロック
---------------------------------------------------------------------------*/
/*日付(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設定。サンプルテンプレートでは「Gallery」と書いてあるマーク*/
#new dt span.icon-bg1 {
	background: #74791b;	/*背景色*/
}

/*記事(dd)設定*/
#new dd {
	width: calc(100% - 14em);	/*「14em」は上の「#new dt」のwidthの値です。*/
}


/*テーブル
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta1 caption {
	padding: 5px 15px;		/*上下、左右へのボックス内の余白*/
}

/*th（左側）、td（右側）の共通設定*/
.ta1 th, .ta1 td {
	padding: 20px 15px;		/*上下、左右へのボックス内の余白*/
}

/*th（左側）のみの設定*/
.ta1 th {
	width: 20%;		/*幅*/
}


/*その他
---------------------------------------------------------------------------*/
.ws {width: 48%;display: inline;}




/*　※注意！　下の閉じカッコ　}　はこのブロックに必要なので、削除しないで下さい。　*/

}



