@charset "utf-8";



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

/*Google Fontsの読み込み
---------------------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c&display=swap');



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



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

	--primary-color: #799e49;			/*テンプレートのメインまたはアクセントとなる色*/
	--primary-inverse-color: #fff;		/*primary-colorの対として使う色*/
	
	--secondary-color: #f1782f;			/*テンプレートのサブまたはアクセントとなる色*/
	--secondary-inverse-color: #fff;	/*secondary-colorの対として使う色*/

	--global-space: 5vw;	/*サイト内の左右へとる余白を一括管理しています。画面幅100%＝100vwです。*/
}

.backgreen{
	background: #799e49 !important;
}

/*animation1のキーフレーム設定（開閉ブロックのアニメーションに使用）
---------------------------------------------------------------------------*/
@keyframes animation1 {
	0% {left: -200px;}
	100% {left: 0px;}
}


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


/*updownのキーフレーム設定
---------------------------------------------------------------------------*/
@keyframes updown {
    0%   { transform: scale(1.0, 1.0) translate(0%, 0%); } 
    50%  { transform: scale(1.0, 1.0) translate(0%, 4%); } 
    100% { transform: scale(1.0, 1.0) translate(0%, 0%); } 
}


/*全体の設定
---------------------------------------------------------------------------*/
body * {box-sizing: border-box;}
body {
	margin: 0;padding:0;
	font-family: "M PLUS Rounded 1c", "ヒラギノ丸ゴ Pro", "Hiragino Maru Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;	/*フォント種類*/
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	-webkit-text-size-adjust: none;
	background: #fff;	/*背景色*/
	color: #777;		/*文字色*/
	line-height: 2;		/*行間*/
}

/*リセット*/
figure {margin: 0;}
dd {margin: 0;}
nav,ul,li,ol {margin: 0;padding: 0;}
nav ul {list-style: none;}
section li {margin-left: 1rem;}
input {font-size: 1rem;}

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

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

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

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

iframe.ifpage {width: 90vw;}

/*sectionが続く場合*/
section + section {
	margin-top: 5vw;
}

a{
	text-decoration: none;
}
/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
	color: #777;		/*リンクテキストの色*/
	transition: 0.3s;	/*マウスオン時の移り変わるまでの時間設定。0.3秒。*/
}
a:hover {
	filter: brightness(1.1);	/*少し明るくする*/
}

/*スクール受け付けボタン
---------------------------------------------------------------------------*/

.schoolbtn a {
    background: #FFF;
    border-radius: 50px;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 30px auto 30px auto;
    max-width: 600px;
    padding: 30px 30px;
    color: #0A5996;
    transition: 0.3s ease-in-out;
    font-weight: 800;
    font-size: 1.0rem;
    line-height:1.1;
}


.schoolbtn a:hover {
    background: #313131;
    color: #FFF;
}
.schoolbtn a:after {
    content: '';
    width: 5px;
    height: 5px;
    border-top: 3px solid #313131;
    border-right: 3px solid #313131;
    transform: rotate(45deg) translateY(-50%);
    position: absolute;
    top: 50%;
    right: 20px;
    border-radius: 1px;
    transition: 0.3s ease-in-out;
}
.schoolbtn a:hover:after {
    border-color: #FFF;
}

	/*画面幅600px以上の追加指定*/
	@media screen and (min-width:700px) {
	
	.schoolbtn a {
 	   font-size: 1.3rem;
	}

	
	}/*追加指定ここまで*/



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

}

@keyframes fadeInTop {
	0% {
	opacity: 0;
	transform: scale(0.8) translateY(0) rotateY(0);
	}
	25% {
	opacity: 2;
	transform: scale(1.0) translateY(-10px) rotateY(0);
	}
	50% {
	opacity: 3;
	transform: scale(1.5) translateY(-20px) rotateY(180deg);
	}
	75% {
	opacity: 4;
	transform: scale(1.0) translateY(-10px) rotateY(0);
	}
	100% {
	opacity: 5;
	transform: scale(1.0) translateY(0) rotateY(0);
	}

}

/*ブロック全体*/
.fade-in-text, .fade-in-text-top {
	visibility: hidden;	/*初期状態で非表示*/

}

/*動画（_movie）タイプで使う場合（※変更不要）*/
.fade-in-text-box {
	position: absolute;
	width: 100%;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}

/*１文字単位の設定。
以下のanimationの行の「0.05s」が文字の出現のなめらかさで、大きいほどなめらかに出てきます。
１文字ずつの出現する際の時差は、js/main.jsの「テキストのフェードイン効果」の中にある「0.2」で調整できます。*/
.fade-in-char {
	display: inline-block;
	opacity: 0;
	animation: fadeIn 0.05s forwards;
}
.fade-in-char-top {
	display: inline-block;
	opacity: 0;
	animation: fadeInTop 0.85s forwards;
}

/*トップページのメイン画像上で使う場合*/
#mainimg .fade-in-char-top {
	background: #0C74C0;	/*背景色。css冒頭で指定しているprimary-colorを読み込みます*/
	color: var(--primary-inverse-color);	/*文字色。css冒頭で指定しているprimary-inverse-colorを読み込みます*/
	text-align: center;
	font-size: 6vw;		/*文字サイズ。100vw=画面幅100%の事です。*/
	width: 9vw;		/*幅。下の高さに揃えておきます。*/
	line-height: 9vw;	/*高さ。上の幅に揃えておきます。*/
	border-radius: 50%;	/*丸くする指定。この行を削除すれば枠が正方形になります。*/
}
#mainimg .fade-in-char-top:nth-of-type(even) {
	background: var(--secondary-color);	/*背景色。css冒頭で指定しているsecondary-colorを読み込みます*/
	color: var(--secondary-inverse-color);	/*文字色。css冒頭で指定しているsecondary-inverse-colorを読み込みます*/
}

	/*画面幅600px以上の追加指定*/
	@media screen and (min-width:700px) {
	
	#mainimg .fade-in-char-top {
		font-size: 3vw;
		width: 6vw;
		line-height: 6vw;
	}
	
	}/*追加指定ここまで*/


/*スクロールダウン
---------------------------------------------------------------------------*/

/* スクロールダウンの位置 */
.scroll {
  position: fixed;
  left: 5%;

  bottom: 15%;
  writing-mode: vertical-rl;
  color: #FFF;
}
.scroll2 {
  display: none;
}

/* 線のアニメーション部分 */
.scroll::before {
  animation: scroll 2s infinite;
  background-color: #FFF;
  bottom: -115px;
  content: "";
  height: 100px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  width: 1px;
}
/* 線のアニメーション */
@keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}


/*container（サイト全般を囲むブロック）
---------------------------------------------------------------------------*/
#container,
#container0 {
	position: relative;z-index: 1;
	overflow-x: hidden;
}

/*トップページのcontainer*/
.home #container {
	margin-top: 0vh;	/*スライドショー分の余白プラスアルファ。大きくすればするほどスライドショーが見え続けます。*/
}
.home #container0 {
	margin-top: 0vh;	/*スライドショー分の余白プラスアルファ。大きくすればするほどスライドショーが見え続けます。*/
}

/*トップページ以外のcontainerに背景画像を配置*/
body:not(.home) #container,
body:not(.home) #container0,
body:not(.home) #container2 {
	background: url('../images/bg3.png') no-repeat center top / 100%;	/*背景画像。お好みで入れ替えて下さい。*/
}


/*header（ロゴが入ったサイト上部のブロック）
---------------------------------------------------------------------------*/
header {
	padding-left: var(--global-space);	/*header内の左側に空けるスペース。css冒頭で指定しているglobal-spaceを読み込みます*/
	padding-right: var(--global-space);	/*header内の右側に空けるスペース。css冒頭で指定しているglobal-spaceを読み込みます*/
	padding-top: 2rem;		/*header内の上左側に空けるスペース*/
	padding-bottom: 2rem;	/*header内の下左側に空けるスペース*/
}



/*トップページのヘッダー*/
.home header {
	height: 21vw;	/*高さ。下の行の飾り分の高さを適当にとって下さい。*/
	background: url('../images/header_kazari.png') no-repeat center bottom / 100%;	/*背景画像*/
}

/*ロゴ画像*/

#logo {
	margin: 0;padding: 0;
	position: fixed;
	margin: 0;padding: 0 10px;
	width: 300px;
	z-index: 2;
}
.is_scroll {
	/*width: 220px;*/
	animation: rogoimage 0.3s linear 0.9 forwards;
}


@keyframes rogoimage {
	0% {
	transform-origin: top left;
	transform: scale(1.0);
	}
	100% {
	transform-origin: top left;
	transform: scale(0.7);
	}

}



/*contents（header以下をまとめたブロック）
---------------------------------------------------------------------------*/
#contents {
	padding-left: var(--global-space);	/*contents内の左側に空けるスペース。css冒頭で指定しているglobal-spaceを読み込みます*/
	padding-right: var(--global-space);	/*contents内の右側に空けるスペース。css冒頭で指定しているglobal-spaceを読み込みます*/
}

/*トップページのcontents*/
.home #contents,
.home #contents0 {
	background: #D2F0FF;	/*背景色*/
}


/*お知らせ（トップページのコンテンツ最上部にある目立つお知らせコーナー）
---------------------------------------------------------------------------*/
/*ブロック全体*/
.oshirase {
	position: relative;
	margin-right: calc(-1 * var(--global-space));	/*変更不要。css冒頭で指定しているglobal-spaceを読み込みます。マイナスをつけてネガティブマージンに。*/
	margin-left: calc(-1 * var(--global-space));	/*変更不要。css冒頭で指定しているglobal-spaceを読み込みます。マイナスをつけてネガティブマージンに。*/
}

.oshirase a {color: inherit;}

/*文字をのせるバーの部分*/
.oshirase div {
	background: #0C74C0;	/*背景色*/
	color: #fff;			/*文字色*/
	padding: 1rem 120px 1rem 2rem;	/*バー内の余白。上、右、下、左へ。ここの70pxの数値は下の装飾用のアイコン(.img1)のサイズに合わせて調整して下さい。*/
}

/*飾り用の画像設定*/
.oshirase .img1 {
	display: block;
	position: absolute;
	top: 0px;
	right: 10px;		/*右からの配置場所指定。上からの配置設定はcss冒頭の「@keyframes updown」のキーフレーム設定で行います。*/
	width: 100px;	/*幅*/
}

	/*画面幅700px以上の追加指定*/
	@media screen and (min-width:700px) {
	
	/*文字をのせるバーの部分*/
	.oshirase div {
		margin-left: auto;	/*右によせる*/
		width: 55vw;		/*幅。100vw=画面幅100%の事*/
		border-radius: 100px 0 0 100px;	/*角を丸くする指定。左上、右上、右下、左下への順番*/
	}

	}/*追加指定ここまで*/


/*updownアニメーションを2s(秒)実行する事を繰り返す*/
.updown {
	animation: updown 3s linear infinite;
}


/*pop1
---------------------------------------------------------------------------*/
.pop1 {
	position: absolute;
	top: -1.5em;;
	width: 120px;
	left: -125px;
}
.pop2 {
	position: absolute;
	top: -1.5em;;
	width: 120px;
	right: -125px;
}
.pop3 {
	position: absolute;
	top: 0em;;
	width: 120px;
	left: -135px;
}

.pop4 {
	position: absolute;
	top: 0em;;
	width: 120px;
	right: -135px;
}

.pop5 {
	position: absolute;
	top: -1.5em;;
	width: 120px;

}

	@media screen and (min-width:700px) {
.pop5 {

	right: 40vw;
}

}



.pop1.left {
	right: auto;
	left: -5vw;
}


/*list-half（左右にわかれたボックス）
---------------------------------------------------------------------------*/
/*画像ブロック*/
.list-half{
	border-bottom: solid 1px #FFFFFF;
}

.list-half .image {
	width: 80vw;	/*幅。60%。*/
	margin: 0 auto;	/*画像を中央に配置*/
	padding: 5vw 0;	/*上下、左右への余白。画像の上下に隙間をあけます。*/
}

	/*画面幅600px以上の追加指定*/
	@media screen and (min-width:600px) {
	
	/*ボックス全体*/
	.list-half {
		display: flex;
		justify-content: space-between;
		align-items: center;
		gap: 6vw;	/*左右の間に空けるマージン的な要素*/
		position: relative;
		border-bottom:none;
	}

	/*テキストブロック*/
	.list-half .text {
		flex: 1;
	}

	/*画像ブロック*/
	.list-half .image {
		padding: 0;		/*余白をリセット*/
		width: 40vw;	/*幅。40%。*/
	}

	/*左右を入れ替える場合用*/
	.list-half.reverse {
		flex-direction: row-reverse;
	}

	}/*追加指定ここまで*/

/*画像の影のスタイル*/
.shadow1 {
	box-shadow: -4vw -4vw 0 rgba(0,0,0,0.1);
}
.shadow2 {
	box-shadow: -2vw -2vw 0 rgba(0,0,0,0.1);
}


/*mask（ラフな円形のマスク＆アニメーション）
---------------------------------------------------------------------------*/
@keyframes mask {  
	  
0% {
	border-radius: 64% 46% 54% 46% / 49% 41% 59% 51%;
	transform: scale(1);
}
35% {
	border-radius: 59% 61% 48% 52% / 43% 55% 45% 57%;
	transform: scale(0.9);
}

70% {
	border-radius: 74% 56% 64% 56% / 42% 61% 59% 66%;
	transform: scale(1.02);
}

100% {
	border-radius: 64% 46% 54% 46% / 49% 41% 59% 51%;
	transform: scale(1);
}
}

/*mask1の設定*/
.mask1 {
	animation: mask 10s linear infinite;	/*10s(秒)がアニメーションにかける秒数です*/
	box-shadow: 2vw 2vw 0px 1vw #eeeee;	/*ボックスの影。右へ、下へ、ぼかし幅、距離、色。*/
}


/*btn1（ボタン１）
---------------------------------------------------------------------------*/
.btn1 {
	text-align: center;
	font-size: 1.2rem;	/*文字サイズを120%に*/
	margin-top: 1rem;	/*上に１文字分のスペースを空ける*/
}
.btn1 a {
	display: inline-block;text-decoration: none;
	background: var(--primary-color);		/*背景色。css冒頭で指定しているprimary-colorを読み込みます*/
	color: var(--primary-inverse-color);	/*文字色。css冒頭で指定しているprimary-inverse-colorを読み込みます*/
	border-radius: 100px;	/*角を丸くする指定*/
	padding: 0.3em 3em;		/*上下、左右へのボタン内の余白*/
}
.bg1 .btn1 a {
	background: var(--primary-inverse-color);	/*背景色。css冒頭で指定しているprimary_text-colorを読み込みます*/
	color: var(--primary-color);				/*文字色。css冒頭で指定しているprimary-colorを読み込みます*/
}



/*矢印アイコン*/
.arrow1::after {
	display: inline-block;
	font-family: "Font Awesome 6 Free";	/*Font Awesomeを使う指定*/
	font-weight: bold;
    content: "\f061";		/*アイコンのコード*/
	padding-left: 0.5em;	/*アイコンとテキストとの間のスペース*/
	transition: 0.3s;
}
.arrow1:hover::after {
	transform: translateX(0.2em);	/*マウスオン時に少しだけ移動する*/
}


/*main
---------------------------------------------------------------------------*/
/*mainブロック（横スライドslick対策）*/
main * {min-width: 0;}

/*mainブロック*/
main {
	padding-bottom: var(--global-space);	/*main内の下側に空けるスペース。css冒頭で指定しているglobal-spaceを読み込みます*/
}

/*h2（見出し）*/
main h2 {
	text-align: center;		/*テキストをセンタリング*/
	font-size: 2.4rem;		/*文字サイズを240%に*/
	line-height: 1.5;		/*行間を少しせまくする*/
	color: #000000;	/*文字色。css冒頭で指定しているprimary-colorを読み込みます*/
	position: relative;
}

/*h3（見出し）*/
main h3 {
	font-size: 1.8rem;
}


main h4 {
	font-size: 1.6rem;
  padding: 10px 0px 0px 0px;
  line-height: 1.3em;
}
main h4 a{
	text-decoration: none;
}

span.bigfont{
	font-size: 2.0rem;
}

span.bigfont2{
	font-size: 1.8rem;
}

span.bigfont3{
	font-size: 1.4rem;
}


/*メニューブロック初期設定
---------------------------------------------------------------------------*/
/*メニューをデフォルトで非表示*/
#menubar {display: none;}
#menubar ul {list-style: none;margin: 0;padding: 0;}
#menubar ul li{	line-height: 1.5;}

/*上で非表示にしたメニューを表示させる為の設定*/
.small-screen #menubar.display-block {display: block;}

/*3本バーをデフォルトで非表示*/
#menubar_hdr.display-none {display: none;}



/*モーダル表示
---------------------------------------------------------------------------*/
/* モーダル全体の背景 */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex; justify-content: center; align-items: center;
    z-index: 9999;
}
/* モーダル本体 */
.modal-content {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    max-width: 90%;
    width: 450px;
    text-align: left;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}
.modal-header {
    color: #d9534f; /* お知らせ色 */
    font-weight: bold;
    font-size: 1.25rem;
    margin-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
}
.modal-body {
    white-space: pre-wrap; /* 改行を反映 */
    text-align: left;
    margin-bottom: 20px;
    line-height: 1.6;
}
.modal-btn {
    background: #007bff;
    color: #fff;
    border: none;
    padding: 10px 30px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
}
.modal-btn:hover { background: #0056b3; }



/*小さな端末用の開閉ブロック
---------------------------------------------------------------------------*/
/*メニューブロック設定*/
.small-screen #menubar.display-block {
	position: fixed;z-index: 100;
	left: 0px;top: 0px;
	width: 100%;
	height: 100vh;
	background: url('../images/bg2.gif') repeat center center / 198px;	/*背景画像の読み込み。最後の数字は画像幅。このサイズでリピートします。*/
	animation: animation1 0.2s both;	/*animation1を実行する。0.2sは0.2秒の事。*/
	display: flex;
	justify-content: center;
}

/*メニュー本体が記載されているボックス*/
.small-screen #menubar > div {
	position: relative;overflow: auto;
	background: #fff;	/*背景色*/
	padding: 10vw;		/*ボックス内の余白*/
	max-width: 70%;		/*最大幅*/
}

/*nav要素*/
.small-screen #menubar nav {
	font-size: 1.3rem;	/*文字サイズを130%に*/
	margin-bottom: 3vw;	/*メニューブロックの下にとるスペース*/
}

/*メニュー１個あたりの設定*/
.small-screen #menubar a {
	display: block;text-decoration: none;
	/*上下、左右へのメニュー内の余白*/
}

/*メニュー横のアイコンの共通設定*/
.small-screen #menubar li a::before {
	font-family: "Font Awesome 6 Free";	/*Font Awesomeを使う指定*/
	padding-right: 0.8em;	/*アイコンとテキストの間の余白*/
	font-weight: bold;		/*この設定がないとアイコンが出ない場合があります*/
	color: var(--primary-color);	/*文字色。css冒頭で指定しているprimary-colorを読み込みます*/
}

/*使いたいアイコン名をここで指定。Font Awesomeに記載されています。詳しくは当テンプレートのマニュアルを読んで下さい。*/
.small-screen #menubar li:nth-of-type(1) a::before {
	content: "\f015";		
}
.small-screen #menubar li:nth-of-type(2) a::before {
	content: "\f05a";		
}
.small-screen #menubar li:nth-of-type(3) a::before {
	content: "\f651";		
}
.small-screen #menubar li:nth-of-type(4) a::before {
	content: "\f815";		
}
.small-screen #menubar li:nth-of-type(5) a::before {
	content: "\f3c5";		
}
.small-screen #menubar li:nth-of-type(6) a::before {
	content: "\f535";		
}
.small-screen #menubar li:nth-of-type(7) a::before {
	content: "\f7c5";		
}
.small-screen #menubar li:nth-of-type(8) a::before {
	content: "\f2b5";		
}
.small-screen #menubar li:nth-of-type(9) a::before {
	content: "\f549";		
}
.small-screen #menubar li:nth-of-type(10) a::before {
	content: "\f0f3";		
}
.small-screen #menubar li:nth-of-type(11) a::before {
	content: "\f086";		
}
.small-screen #menubar li:nth-of-type(12) a::before {
	content: "\f27b";
}
.small-screen #menubar li:nth-of-type(13) a::before {
	content: "\f017";
}
.small-screen #menubar li:nth-of-type(14) a::before {
	content: "\f1ea";
}
.small-screen #menubar li:nth-of-type(15) a::before,
.small-screen #menubar li:nth-of-type(16) a::before,
.small-screen #menubar li:nth-of-type(17) a::before,
.small-screen #menubar li:nth-of-type(18) a::before,
.small-screen #menubar li:nth-of-type(19) a::before,
.small-screen #menubar li:nth-of-type(20) a::before,
.small-screen #menubar li:nth-of-type(21) a::before  {
	content: "\f141";		
}
.small-screen #menubar li.b10{
	margin: 0 0 10px 0;
}
.small-screen #menubar li.min{
	font-size: 1.0rem
}

/*３本バー（ハンバーガー）アイコン設定
---------------------------------------------------------------------------*/
/*３本バーを囲むブロック*/
#menubar_hdr {
	animation: opa1 0s 0.2s both;
	position: fixed;z-index: 101;
	cursor: pointer;
	top: 5px;		/*上からの配置場所*/
	right: 5px;	/*右からの配置場所*/
	width: 60px;	/*幅*/
	height: 60px;	/*高さ*/
	padding: 15px 15px 15px 15px;	/*ブロック内の余白。上、右、下、左への順番*/
	display: flex;
	justify-content: center;
	align-items: center;
	transition: transform 0.5s;

background-color: #00b1f4;
border: solid 6px #fff;

-moz-border-radius: 45px;
-webkit-border-radius: 45px;
border-radius: 45px;
box-shadow: 0 0 0 3px #00b1f4;
-webkit-box-shadow: 0 0 0 3px #00b1f4;
-moz-box-shadow: 0 0 0 3px #00b1f4;
}

/*以下は変更不要*/
#menubar_hdr div {
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

/*バーの設定*/
#menubar_hdr div span {
	display: block;
	width: 100%;
	height: 3px;			/*線の太さ*/
	background-color: #fff;	/*線の色*/
	border-radius: 2px;		/*コーナーを少しだけ丸く*/
	transition: all 0.5s ease-in-out;
	position: absolute;
}

/*以下変更不要*/
#menubar_hdr div span:nth-child(1) {top: 0;}
#menubar_hdr div span:nth-child(2) {top: 50%;transform: translateY(-50%);}
#menubar_hdr div span:nth-child(3) {bottom: 0;}
#menubar_hdr.ham div span:nth-child(1) {top: 50%;transform: translateY(-50%) rotate(45deg);}
#menubar_hdr.ham div span:nth-child(2) {opacity: 0;}
#menubar_hdr.ham div span:nth-child(3) {top: 50%;transform: translateY(-50%) rotate(-45deg);}


/*2カラム
---------------------------------------------------------------------------*/
.main-contents {
	margin-bottom: 5rem;	/*ボックスの下に空けるスペース。subとの間の余白です。5文字分。*/
}

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

	/*カラムで使う為の指定*/
	main.column {
		display: flex;					/*横並びにする*/
		justify-content: space-between;	/*並びかたの種類の指定*/
		gap: 2rem;						/*main-contentsとsub-contentsの間のマージン的な隙間*/
	}
	
	/*main-contentsブロック*/
	.main-contents {
		margin-bottom: 0;
		order: 2;		/*並び順。数字の小さい順番に表示されます。*/
		flex: 1;
	}
	
	/*sub-contentsブロック共通*/
	.sub-contents {
		width: 230px;	/*幅*/
	}
	
	/*1つ目のsub-contents*/
	.sub-contents:nth-child(2) {
		order: 1;	/*並び順。数字の小さい順番に表示されます。*/
	}
	
	/*2つ目のsub-contents（※３カラムで使う場合用）*/
	.sub-contents:nth-child(3) {
		order: 3;	/*並び順。数字の小さい順番に表示されます。３番目という意味なので一番右側に表示されます。*/
	}
	
	}/*追加指定ここまで*/


/*サブコンテンツ設定
---------------------------------------------------------------------------*/
/*サブコンテンツ内のh3要素(見出し)*/
.sub-contents h3 {
	display: block;
	margin: 0;
	text-align: center;	/*テキストをセンタリング*/
	padding: 0.5rem 0;	/*上下、左右への見出し内の余白*/
	border-radius: 5px 5px 0px 0px;	/*角を丸くする指定。左上、右上、右下、左下の順番。*/
	border: 1px solid #ccc;			/*下線の幅、線種、色*/
	background: linear-gradient(#fff, #eee);/*背景グラデーション*/
	color: #555;	/*文字色*/
}


/*サブメニュー設定
---------------------------------------------------------------------------*/
/*サブメニューブロック全体*/
.submenu {
	padding: 0;
	margin: 0 0 1rem;	/*上、左右、下へのマージン*/
}

/*メニュー１個あたり*/
.submenu a {
	display: block;text-decoration: none;
	padding: 0.2rem 1rem;	/*上下、左右へのメニュー内の余白*/
	background: #fff;	/*背景色*/
}

/*メニュー１個あたり（子メニュー以外）*/
.submenu > li {
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
	border-top: none;		/*上の線だけなくす*/
}

/*子メニュー*/
.submenu li li a {
	padding-left: 2rem;	/*左に余白を空ける*/
}

/*h3見出しの下にサブメニューが続く場合にメニューの上の線をなくす*/
.sub-contents h3 + nav .submenu {
	border-top: none;
}


/*フッターのコンテンツ（住所やマップが入っているブロック）
---------------------------------------------------------------------------*/
#footer-contents {
	background: 
	url(../images/bg1_top.png) repeat-x center top / 1000px;	/*ブロック上部の背景画像の指定。1000pxは画像幅。*/
	padding-top: 119px;		/*上部の背景画像の本体の「幅」を1000pxにした際の画像の「高さ-1」をここで設定します*/
	margin-left: calc(-1 * var(--global-space));	/*変更不要。css冒頭で指定しているglobal-spaceを読み込みます。マイナスをつけてネガティブマージンに。*/
	margin-right: calc(-1 * var(--global-space));	/*変更不要。css冒頭で指定しているglobal-spaceを読み込みます。マイナスをつけてネガティブマージンに。*/
}
#footer-contents > div {
	padding: 1px;
	background: var(--primary-color);		/*背景色。css冒頭で指定しているprimary-colorを読み込みます*/
	color: var(--primary-inverse-color);	/*文字色。css冒頭で指定しているprimary-inverse-colorを読み込みます*/
	padding-left: var(--global-space);		/*変更不要。css冒頭で指定しているglobal-spaceを読み込みます。*/
	padding-right: var(--global-space);		/*変更不要。css冒頭で指定しているglobal-spaceを読み込みます。*/
}
#footer-contents a, footer a {
	color: inherit;
}

	/*画面幅700px以上の追加指定*/
	@media screen and (min-width:700px) {
	
	#footer-contents > div {
		display: flex;
	}

	#footer-contents .left,
	#footer-contents .right {
		flex: 1;
	}

	}/*追加指定ここまで*/


/*footer-contents内のマップ。レスポンシブにする為のものなので、基本は編集不要です。
---------------------------------------------------------------------------*/
.iframe-box {
	width: 100%;
	height: 0;
	padding-top: 56.25%;	/*マップの高さを増やしたい場合は、ここの数値を上げてみて下さい。*/
	position: relative;
	overflow: hidden;
}
.iframe-box iframe,
.iframe-box img {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
}


/*フッター設定
---------------------------------------------------------------------------*/
small {font-size: 100%;}
footer {
	font-size: 0.7rem;		/*文字サイズ*/
	text-align: center;		/*内容をセンタリング*/
	padding: 1rem 1rem 40px 1rem;			/*ボックス内の余白*/
	background: var(--primary-color);	/*背景色。css冒頭で指定しているprimary-colorを読み込みます*/
	color: var(--primary-inverse-color);	/*文字色。css冒頭で指定しているprimary-inverse-colorを読み込みます*/
	margin-left: calc(-1 * var(--global-space));	/*変更不要。css冒頭で指定しているglobal-spaceを読み込みます。マイナスをつけてネガティブマージンに。*/
	margin-right: calc(-1 * var(--global-space));	/*変更不要。css冒頭で指定しているglobal-spaceを読み込みます。マイナスをつけてネガティブマージンに。*/
}

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

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


/*フッター内にあるソーシャルメディアのアイコン
---------------------------------------------------------------------------*/
/*アイコン全体を囲むブロック*/
ul.icons {
	list-style: none;
	margin: 0;padding: 0;
	display: flex;
	align-self: center;
	gap: 1rem;	/*アイコン同士に空けるのスペース*/
}

/*Font Awesomeのアイコンサイズ*/
.icons i {
	font-size: 40px;
}


/*お知らせブロック
---------------------------------------------------------------------------*/
/*お知らせブロック*/

#text-content {
  /* Flexコンテナにする */
  display: flex;
  /* 子要素を縦方向に並べる */
  flex-direction: column;
}

#text-content dt,
#text-content dd{
	margin: 2px;padding: 0;
	background:#0C74C0;
	line-height: 1.5;
}

#text-content span{
	border: 1px solid #FFF;	/*枠線の幅、線種、色*/
}
#text-content a.list {
	color:#EEF33A;
}

.new {
	background: rgba(255,255,225,1);	/*背景色。0,0,0は黒のことで0.02は色が2%出た状態。*/
	border-radius: 30px;			/*角を丸くする指定*/
	overflow: hidden;
	margin-bottom: 2rem;	/*ブロックの下に空けるスペース。4文字分。*/
}

/*奇数行目を背景色を少し濃くする。全体同じ色がよければここの数行は削除。*/
.new dt:nth-of-type(odd),
.new dd:nth-of-type(odd) {
	background: rgba(255,255,255,1);
}

/*日付(dt)設定*/
.new dt {
	padding: 1.5rem 1.5rem 0;	/*dt内の余白。上、左右、下への順番。*/
}

/*記事(dd)設定*/
.new dd {
	padding: 1.5rem;	/*dd内の余白*/
}



/*ブロック内のspan。日付の横のアイコン的な部分の共通設定*/
.new dt span {
	display: inline-block;
	text-align: center;
	line-height: 1.8;		/*行間（アイコンの高さ）*/
	border-radius: 3px;		/*角を丸くする指定*/
	padding: 0 0.5rem;		/*上下、左右へのブロック内の余白*/
	width: 8rem;			/*幅。8文字分。*/
	transform: scale(0.8);	/*80%のサイズに縮小*/
	background: #fff;		/*背景色*/
	color:#777;				/*文字色*/
	border: 1px solid #999;	/*枠線の幅、線種、色*/
}

/*icon-bg1*/
.new .icon-bg1 {
	background: #799E49;
	color: #FFFFFF;
	border-color: transparent;
}
.new .icon-bg2 {
	background: #0C74C0;
	color: #FFFFFF;
	border-color: transparent;
}
.new .icon-bg3 {
	background: #993399;
	color: #FFFFFF;
	border-color: transparent;
}
.new .icon-bg4 {
	background: #CC6633;
	color: #FFFFFF;
	border-color: transparent;
}
.new .icon-bg5 {
	background: #FF0000;
	color: #FFFFFF;
	border-color: transparent;
}
.new .icon-bg6 {
	background: #EEEEEE;
	color: #000000;
	border-color: transparent;
}



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

	/*ブロック全体*/
	.new {
		display: grid;	/*gridを使う指定*/
		grid-template-columns: auto 1fr;	/*横並びの指定。日付とアイコン部分の幅は自動で、内容が入るブロックは残り幅一杯とる。*/
	}

	/*日付(dt)設定*/
	.new dt {
		padding: 1.5rem 0 1.5rem 2rem;	/*dt内の余白。上、右、下、左への順番。*/
	}

	/*記事(dd)設定*/
	.new dd {
		padding: 1.5rem 2rem 1.5rem 0;	/*dd内の余白。上、右、下、左への順番。*/
	}

	}/*追加指定ここまで*/


#morebtn{
	margin: 0 auto;
	padding: 0;
	width: 100%;
	text-align: center;
}
#morebtn .more{
  font-size: 18px;
}



/*list-grid1
---------------------------------------------------------------------------*/

.list-grid2 {
		display: grid;
		grid-template-columns: repeat(2, 1fr);	/*2列にする指定。4列にしたければrepeat(4, 1fr)とする。*/
		gap: 2vw;	/*ブロックの間に空けるマージン的な指定*/
		background: #65833D !important;
}

/*list内の全ての要素のmarginとpaddingを一旦リセット*/
.list-grid1 .list *,
.list-grid2 .list *{
	margin: 0;padding: 0;
}




/*ボックス１個あたり*/
.list-grid1 .list {
	display: grid;
	margin-bottom: 5vw;
	padding: 2.0vw;			/*ボックス内の余白*/
	background: #fff;		/*背景色*/
	color: #333;			/*文字色*/
	grid-template-rows: auto 1fr;	/*１つ目（この場合はfigure要素のサイズ）は自動に、２つ目（この場合はtextブロック））を残った幅で使う*/
	box-shadow: 5px 5px 20px rgba(0,0,0,0.1);	/*ボックスの影。右へ、下へ、ぼかし幅、0,0,0は黒の事で0.1は色が10%出た状態。*/
}
.list-grid2 .list {
	display: grid;
	margin-bottom: 5vw;
	padding: 2.0vw;			/*ボックス内の余白*/
	background: #65833D;		/*背景色*/
	color: #FFF;			/*文字色*/
	grid-template-rows: auto 1fr;	/*１つ目（この場合はfigure要素のサイズ）は自動に、２つ目（この場合はtextブロック））を残った幅で使う*/
}


/*ボックス内のfigure画像*/
.list-grid1 .list figure img,
.list-grid2 .list figure img {
	margin-bottom: 2vw;	/*画像の下に空けるスペース*/
}
.list-grid1 .list figure,
.list-grid2 .list figure {
	margin: -1.5vw;
}

/*ボックス内のp要素*/
.list-grid1 .list p,
.list-grid2 .list p {
	font-size: 0.85rem;	/*文字サイズを85%に*/
	line-height: 1.5;	/*行間を少し狭く*/
}

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

	/*listブロック全体を囲むブロック*/
	.list-grid1,
 	.list-grid2{
		display: grid;
		grid-template-columns: repeat(2, 1fr);	/*2列にする指定。4列にしたければrepeat(4, 1fr)とする。*/
		gap: 2vw;	/*ブロックの間に空けるマージン的な指定*/
	}

	/*ボックス１個あたり*/
	.list-grid1 .list,
 	.list-grid2 .list{
		margin-bottom: 0;
	}

	}/*追加指定ここまで*/


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


	/*listブロック全体を囲むブロック*/
	.list-grid1 {
		grid-template-columns: repeat(3, 1fr);	/*3列にする指定。4列にしたければrepeat(4, 1fr)とする。*/
		gap: 2vw;	/*ブロックの間に空けるマージン的な指定*/

	}
	.list-grid2 {
		grid-template-columns: repeat(3, 1fr);	/*3列にする指定。4列にしたければrepeat(4, 1fr)とする。*/
		gap: 2vw;	/*ブロックの間に空けるマージン的な指定*/

	}

	}/*追加指定ここまで*/


/*list-grid1で使うボタン
---------------------------------------------------------------------------*/
.list-grid1 .btn a,
.list-grid2 .btn a {
	display: block;text-decoration: none;
	font-size: 1rem;
	text-align: center;		/*テキストをセンタリング*/
	background: var(--primary-color);	/*背景色。css冒頭で指定しているprimary-colorを読み込みます*/
	color: var(--primary-inverse-color);	/*文字色。css冒頭で指定しているprimary-inverse-colorを読み込みます*/
	border: 1px solid var(--primary-color);	/*枠線の幅、線種、varは色の事でcss冒頭で指定しているprimary-colorを読み込みます*/
	padding: 5px 10px;		/*ボタン内の余白*/
	margin-top: 1rem;		/*ボタンの上に空けるスペース*/
}



/*list-grid1で使うボタン(リンクなし)
---------------------------------------------------------------------------*/
.list-grid1 .btn2,
.list-grid2 .btn2 {
	display: block;text-decoration: none;
	font-size: 1rem;
	text-align: center;		/*テキストをセンタリング*/
	background: var(--primary-color);	/*背景色。css冒頭で指定しているprimary-colorを読み込みます*/
	color: var(--primary-inverse-color);	/*文字色。css冒頭で指定しているprimary-inverse-colorを読み込みます*/
	border: 1px solid var(--primary-color);	/*枠線の幅、線種、varは色の事でcss冒頭で指定しているprimary-colorを読み込みます*/
	padding: 5px 10px;		/*ボタン内の余白*/
	margin-top: 1rem;		/*ボタンの上に空けるスペース*/
}



/*bg1ブロック（色がついた装飾タイプのブロック）
---------------------------------------------------------------------------*/
/*bg1ブロックの設定*/
.bg1 {
	background: 
	url(../images/bg1_top.png) repeat-x center top / 1000px,		/*ブロック上部の背景画像の指定。1000pxは画像幅。*/
	url(../images/bg1_bottom.png) repeat-x center bottom / 1000px;	/*ブロック下部の背景画像の指定。1000pxは画像幅。*/
	padding-top: 119px;		/*上部の背景画像の本体の「幅」を1000pxにした際の画像の「高さ-1」をここで設定します*/
	padding-bottom: 54px;	/*下部の背景画像の本体の「幅」を1000pxにした際の画像の「高さ-1」をここで設定します*/
	margin-left: calc(-1 * var(--global-space));	/*変更不要。css冒頭で指定しているglobal-spaceを読み込みます。マイナスをつけてネガティブマージンに。*/
	margin-right: calc(-1 * var(--global-space));	/*変更不要。css冒頭で指定しているglobal-spaceを読み込みます。マイナスをつけてネガティブマージンに。*/
}




/*backgroundには、上で読み込む背景画像のカラーを抜き出して指定して下さい。*/

.bg1 > div {
	padding: 1px;
	background: var(--primary-color);		/*背景色。css冒頭で指定しているprimary-colorを読み込みます*/
	color: var(--primary-inverse-color);	/*文字色。css冒頭で指定しているprimary-inverse-colorを読み込みます*/
	padding-left: var(--global-space);		/*変更不要。css冒頭で指定しているglobal-spaceを読み込みます。*/
	padding-right: var(--global-space);		/*変更不要。css冒頭で指定しているglobal-spaceを読み込みます。*/
}

/*bg1ブロックのh2見出し*/
.bg1 h2 {
	color: #FFFFFF;	/*文字色*/
	text-shadow: 1px 1px 1px rgba(0,0,0,0.3);	/*テキストの影。右へ、下へ、距離、0,0,0は黒の事で0.3は30%色が出た状態。*/
}

/*bg2ブロックの設定*/

.bg2 {
	background:
	url(../images/bg1_top2.png) repeat-x center top / 1000px,		/*ブロック上部の背景画像の指定。1000pxは画像幅。*/
	url(../images/bg1_bottom2.png) repeat-x center bottom / 1000px;	/*ブロック下部の背景画像の指定。1000pxは画像幅。*/
	padding-top: 69px;		/*上部の背景画像の本体の「幅」を1000pxにした際の画像の「高さ-1」をここで設定します*/
	padding-bottom: 89px;	/*下部の背景画像の本体の「幅」を1000pxにした際の画像の「高さ-1」をここで設定します*/
	margin-left: calc(-1 * var(--global-space));	/*変更不要。css冒頭で指定しているglobal-spaceを読み込みます。マイナスをつけてネガティブマージンに。*/
	margin-right: calc(-1 * var(--global-space));	/*変更不要。css冒頭で指定しているglobal-spaceを読み込みます。マイナスをつけてネガティブマージンに。*/
}

/*backgroundには、上で読み込む背景画像のカラーを抜き出して指定*/
.bg2 > div {
	padding: 1px;
	background: #799e49;		/*背景色。css冒頭で指定しているprimary-colorを読み込みます*/
	color: var(--primary-inverse-color);	/*文字色。css冒頭で指定しているprimary-inverse-colorを読み込みます*/
	padding-left: var(--global-space);		/*変更不要。css冒頭で指定しているglobal-spaceを読み込みます。*/
	padding-right: var(--global-space);		/*変更不要。css冒頭で指定しているglobal-spaceを読み込みます。*/
}

/*bg2ブロックのh2見出し*/
.bg2 h2 {
	color: #FFFFFF;	/*文字色*/
	text-shadow: 1px 1px 1px rgba(0,0,0,0.3);	/*テキストの影。右へ、下へ、距離、0,0,0は黒の事で0.3は30%色が出た状態。*/
}


.mv {
	background: var(--primary-color);
}

/*詳細ページのサムネイル切り替えブロック
---------------------------------------------------------------------------*/
/*大きな画像が表示されるブロック*/
.thumbnail-view {
	max-width: 1600px;		/*最大幅*/
	margin: 0 auto 1rem;	/*ブロック要素を中央に配置。下に1文字分のマージンをとる。*/
	text-align: center;
		/*画像が小さい場合でもセンタリングされるように*/
}

/*テーブルあり背景あり*/
.thumbnail-view2 {
	margin: 0 auto;	/*ブロック要素を中央に配置。下に1文字分のマージンをとる。*/
	text-align: center;
	background: #799e49 !important;
}


/*サムネイル全体を囲むブロック*/
.thumbnail {
	display: flex;				/*flexを使う指定*/
	justify-content: center;	/*並びかたの種類の指定。これはセンタリングする指定。*/
	margin-bottom: 2rem;		/*下に空けるスペース。２文字分。*/
}

/*サムネイル画像*/
.thumbnail img {
	width: 100px;		/*サムネイルの幅*/
	margin: 2px;		/*サムネイル間のスペース*/
	cursor: pointer;	/*リンクタグではないが、クリックできる事をわかりやすくする為にリンクと同じポインターにしておきます。*/
	transition: 0.3s;	/*マウスオンまでにかける時間。3秒。*/
}
.thumbnail img:hover {
	opacity: 0.8;	/*マウスオン時に80%だけ色を出す。つまり薄くなります。*/
}


/*詳細ページ（info_item.html）で使っている「前のページに戻る」ボタン
---------------------------------------------------------------------------*/
.btn-back {
	text-align: center;
}
.btn-back a {
	text-decoration: none;display: inline-block;
	padding: 0.5rem 2rem;	/*ボタン内の余白。上下、左右。*/
	border-radius: 30px;	/*角を丸くする指定。ある程度大きければ適当でいいです。*/
	background: #eee;		/*背景色*/
}
.btn-back a::before {
	font-family: "Font Awesome 6 Free";	/*Font Awesomeを使う指定*/
	content: "\f0d9";		/*使いたいアイコン名をここで指定。Font Awesomeに記載されています。詳しくは当テンプレートのマニュアルを読んで下さい。*/
	padding-right: 0.8em;	/*アイコンとテキストの間の余白*/
	font-weight: bold;		/*この設定がないとアイコンが出ない場合があります*/
	opacity: 0.5;			/*色を50%だけ出す*/
}


/*FAQ
---------------------------------------------------------------------------*/
/*質問*/
.faq dt {
	border-radius: 3px;		/*枠を角丸にする指定*/
	margin-bottom: 1rem;	/*下に空けるスペース*/
	background: #fff;		/*背景色*/
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
	text-indent: -2rem;				/*テキストのインデント。質問が複数行になった際に、テキストの冒頭を揃える為に設定しています。*/
	padding: 5px 1em 5px 3em;		/*ボックス内の余白。ここを変更する場合、上のtext-indentも調整します。*/
}

/*アイコン（Font Awesome）*/
.faq dt::before {
	font-family: "Font Awesome 6 Free";	/*Font Awesomeを使う指定*/
    content: "\f059";	/*アイコンのコード*/
	padding-right: 1rem;	/*アイコンとテキストとの間のスペース*/
	color: var(--primary-color);	/*文字色。css冒頭で指定しているprimary-colorを読み込みます*/
}

/*回答*/
.faq dd {
	padding: 5px 1rem 30px 3rem;		/*ボックス内の余白**/
}

/*opencloseを適用した要素のカーソル*/
.openclose {
	cursor: pointer;	/*カーソルの形状。リンクと同じスタイルにしてクリックできると認識してもらう。*/
}


/*テーブル（ta1）
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta1 caption {
	font-weight: bold;		/*太字に*/
	padding: 0.5rem 1rem;	/*ボックス内の余白*/
	background: #333333;		/*背景色*/
	color: #fff;			/*文字色*/
	margin-bottom: 1rem;	/*下に空けるスペース*/
	border-radius: 5px;		/*角を丸くする指定*/
}

/*ta1テーブルブロック設定*/
.ta1 {
	table-layout: fixed;
	border: 1px solid #EEE;	/*テーブルの一番上の線。幅、線種、色*/
	width: 100%;
	margin: 0 auto;
	max-width: 1000px;		/*最大幅*/				/*幅*/
	background: #799e49;
}

/*tr（１行分）タグ設定*/
.ta1 tr,.ta1 td {
	border: 1px solid #EEE;	/*テーブルの下線。幅、線種、色*/
}

/*th（左側）、td（右側）の共通設定*/
.ta1 th, .ta1 td {
	padding: 0.5rem;		/*ボックス内の余白*/
	word-break: break-all;	/*英語などのテキストを改行で自動的に折り返す設定。これがないと、テーブルを突き抜けて表示される場合があります。*/
}

/*th（左側）のみの設定*/
.ta1 th {
	width: 10%;			/*幅*/
	background: rgba(0,0,0,0.2);	/*背景色*/
}

.ta1 th.kashi {
	width: 30%;			/*幅*/
	background: rgba(0,0,0,0.2);	/*背景色*/
}



td.midashi {
	width: 20%;			/*幅*/
	background: rgba(0,0,0,0.2);	/*背景色*/
}
td.midashi2 {
	width: 8%;			/*幅*/
	background: rgba(0,0,0,0.2);	/*背景色*/
}

img.movimg{
 width: 100%;
}



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

		/*th（左側）のみの設定*/
		.ta1 th {
			width: 10%;		/*幅*/
		}
		td.midashi{
			width: 40%;		/*幅*/
		}
		img.movimg{
		 width: 100%;
		}

	}/*追加指定ここまで*/



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

/*ボタンの設定*/
.pagetop a {
	display: block;text-decoration: none;text-align: center;z-index: 99;
	position: fixed;	/*スクロールに追従しない(固定で表示)為の設定*/
	right: 20px;		/*右からの配置場所指定*/
	bottom: 40px;		/*下からの配置場所指定*/
	color: #fff;		/*文字色*/
	font-size: 1.5rem;	/*文字サイズ*/
	background: rgba(0,0,0,0.2);	/*背景色。0,0,0は黒の事で0.2は色が20%出た状態。*/
	width: 60px;		/*幅*/
	line-height: 60px;	/*高さ*/
	border-radius: 50%;	/*円形にする*/
}


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


/*固定お知らせ*/


#statuswaku{
	display: block;text-decoration: none;text-align: center;z-index: 100;
	position: fixed;	/*スクロールに追従しない(固定で表示)為の設定*/
	bottom: 0px;		/*下からの配置場所指定*/
	color: #fff;		/*文字色*/
	font-size: 0.9rem;	/*文字サイズ*/
	background: rgba(12,116,192,0.8);	/*背景色。0,0,0は黒の事で0.2は色が20%出た状態。*/
	width: 100%;		/*幅*/
	white-space:nowrap;
	overflow: hidden;
	animation: blinking 6s ease-in-out infinite alternate;
    height: 2rem;
}


@keyframes blinking {
   0% {
	background: rgba(12,116,192,0.8);
   }
   50% {
	background: rgba(130,36,68,0.8);
   }
   100% {
	background: rgba(28,146,68,0.8);
   }
}

ul#item-list{
list-style: none;
padding: 0;
margin: 0;
width: 100%;
}

ul#item-list li{
 /* すべてのliを同じ位置に配置 */
position: fixed;	/*スクロールに追従しない(固定で表示)為の設定*/
bottom: 0px;
width: 100%;
	color: #fff;		/*文字色*/
	font-size: 0.9rem;
z-index: 110;
/* テキストを中央揃えにするための設定 */
display: flex;
align-items: center;
justify-content: center;

/* 最初はすべて非表示にする */
opacity: 0;

/* アニメーションを適用 */
/* アニメーション名: fadeInOut, 全体の時間: 16s, 繰り返し: infinite */
animation: fadeInOut 12s infinite;
}

/* アニメーションのキーフレームを定義 */
@keyframes fadeInOut {
0%   { opacity: 0; transform: translateY(10px); }
10% { opacity: 1; transform: translateY(0); } /* フェードイン */
40%  { opacity: 1; transform: translateY(0); } /* 表示 */
50%{ opacity: 0; transform: translateY(-10px); } /* フェードアウト */
100% { opacity: 0; }
}

/* * 各liに遅延（delay）を設定して、表示タイミングをずらす
* 各アイテムは4秒ずつ表示される (16s / 2アイテム)
*/
ul#item-list li:nth-child(1) {
animation-delay: 0s;
}
ul#item-list li:nth-child(2) {
animation-delay: 6s; /* 1つ目の表示が終わる頃に開始 */
}




/*メインボタン
---------------------------------------------------------------------------*/

ul.mainbox {
  display: flex;
   justify-content: center;
}

ul.mainbox li {
  width:100% ;
  list-style: none;
}

ul.mainbox li:nth-child(2) {
  margin: 0 10px;
}


/*Googleカレンダー
---------------------------------------------------------------------------*/
.calendar{
  margin: 0 10px 20px 10px;

}
.calendar2{
  width:100% ;
  background: #799e49;
  text-align: center;
  margin: 0;
  padding: 0;
}

/*その他
---------------------------------------------------------------------------*/
.redtxt{color: #FFFF00;}
.clearfix::after {content: "";display: block;clear: both;}
.color-check, .color-check a {color: #ff0000 !important;}
.l {text-align: left !important;}
.c {text-align: center !important;}
.r {text-align: right !important;}
.ws {width: 95%;display: block;}
.wl {width: 95%;display: block;}
.mb0 {margin-bottom: 0px !important;}
.mb30 {margin-bottom: 30px !important;}
.mt30 {margin-top: 30px !important;}
.mb5rem {margin-bottom: 5rem !important;}
.look {display: inline-block;padding: 0px 10px;background: #eee;color: #333;border: 1px solid #ccc; border-radius: 3px;margin: 5px 0; word-break: break-all;}
.small {font-size: 0.75em;}
.large {font-size: 2em; letter-spacing: 0.1em;}
.pc {display: none;}
.dn {display: none !important;}
.block {display: block !important;}
.inline-block {display: inline-block;}

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

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

	/*固定お知らせ*/
	#linkstatus, #linkstatus2{
	font-size: 1.2rem;	/*文字サイズ*/
	}


	}/*追加指定ここまで*/

/*TOPスライダー
---------------------------------------------------------------------------*/
.swiper-container {
  position: relative;
}
.swiper-pagination {
  bottom: -35px !important;

 .swiper-wrapper {
    /* サイズ調整 */
    width: 100%;
    height: 300px;

  }

  .swiper-slide {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    height: 200px;
  }

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0px 20px 20px;
}
/* ページネーションのサイズと色 */
.swiper-pagination-bullet {
  background-color: #333333;
  height: 12px;
  width: 12px;
}
/* 画像サイズ調整 */
.swiper-slide img {
  height: auto;
  width: 100%;
}


/*文字がジャンプするアニメーション
---------------------------------------------------------------------------*/

.JumpText {
  display: inline-block;
  animation: jumpAnimation 0.4s ease-in;
}

@keyframes jumpAnimation {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0);
  }
}



