@charset "utf-8";


/*全端末（PC・タブレット・スマホ）共通設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/

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

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

/*inner共通（header内と、contents内で使っています）
---------------------------------------------------------------------------*/
.inner {
	max-width: 1200px;	/*最大幅*/
	margin: 0 auto;
}

/*ヘッダー（サイト名が入ったブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	background: url(.);	/*背景画像の読み込み*/
}
/*ヘッダーのinnerへの追加設定*/
header .inner {
	position: relative;
	height: 200px;	/*高さ*/
}
/*ヘッダーのinnerへの追加設定（トップページへの追加設定）*/
/*ヘッダーのinnerへの追加設定（トップページへの追加設定）*/
.top header .inner {
	height: 550px;
	background: url(../images/bhheader.png) no-repeat center center;			/*背景画像の読み込み（古いブラウザ用）*/
	background: url(../images/bhheader.png) no-repeat center center /100%;	/*背景写真の読み込み。幅100%。*/
}
/*ロゴ画像の設定*/
header #logo {
	position: absolute;
	right: 3%;		/*ヘッダーブロックに対して左から3%の位置に配置*/
	top: 100px;		/*ヘッダーブロックに対して上から40pxの位置に配置*/
	width: 300px;	/*画像の幅*/
}


/*コンテンツ（mainとsubを囲むブロック）
---------------------------------------------------------------------------*/
#contents {
	clear: both;
	overflow: hidden;
	background: #FFF;	/*背景色*/
	box-shadow: 0px 0px 6px rgba(0,0,0,0.2);	/*影の設定。右へ、下へ、広げる幅、0,0,0は黒の事で0.2は20%色がついた状態。*/
	border-radius: 10px;	/*角丸のサイズ*/
	padding: 30px;		/*ボックス内の余白*/
	margin: 40px 3% 0;	/*ボックスの外への余白。上、左右、下。*/
}

/*メインコンテンツ
---------------------------------------------------------------------------*/
#main {

	padding-bottom: 30px;
}
/*１カラム時のmainコンテンツ*/
.c1 #main {
	float: none;
	width: auto;
}
/*mainコンtンツのh2タグの設定*/
#main h1 {
	clear: both;
	margin-bottom: 20px;
	background: #FFF;	/*背景色*/
	padding: 4px 20px;	/*上下、左右への余白*/
	border-bottom:1px solid #bbb;
}
/*mainコンテンツのh2タグの設定*/
#main h2 {
	clear: both;
	margin-bottom: 20px;
	color: #0009c1;		/*文字色*/
	border-bottom: 3px solid #0009c1;	/*下線の幅、線種、色の設定*/
	padding-left: 20px;	/*左にあける余白*/
	font-size: 20px;	/*文字サイズ*/
}
/*mainコンテンツのh3タグの設定*/
#main h3 {
	clear: both;
	margin-bottom: 20px;
	background: #FFF;	/*背景色*/
	padding: 4px 20px;	/*上下、左右への余白*/
	border-radius: 30px;		/*角丸のサイズ*/
	border: 1px solid #ccc;		/*枠線の幅、線種、色*/
}
/*mainコンテンツの段落タグ設定*/
#main p {
	padding: 0 20px 20px;	/*上、左右、下への余白*/
}
/*他*/
#main h2 + p,
#main h3 + p {
	margin-top: -5px;
}
#main p + p {
	margin-top: -10px;
}

/*メインコンテンツ内の「list」ボックス
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
#main .list {
	position: relative;overflow: hidden;
	margin-bottom: 20px;	/*ボックスの外（下）に空けるスペース*/
}
#main .list a {
	display: block;text-decoration: none;overflow: hidden;
	padding: 20px;	/*ボックス内の余白*/
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
}
/*マウスオン時*/
#main .list a:hover {
	border: 1px solid #0009c1;	/*枠線の幅、線種、色*/
	background: #f4fafb;		/*背景色*/
}
/*写真*/
#main .list figure img {
	width: 25%;			/*写真の幅*/
	float: left;		/*左に回り込み*/
	border-radius: 50%;	/*円形にくり抜く指定。通常通りに表示させたいならこの１行削除。*/
}
/*h4タグ*/
#main .list h4 {
	margin-left: 28%;	/*左に空けるスペース。写真(figure)のwidth指定とバランスをとって指定する。*/
	color: #0009c1;		/*文字色*/
	font-size: 18px;	/*文字サイズ*/
	border-bottom: dashed 1px #0009c1;	/*枠線の幅、線種、色*/
	margin-bottom: 10px;	/*下に空けるスペース*/
}
/*段落(p)タグ*/
#main .list p {
	padding: 0 !important;
	margin-left: 28%;	/*左に空けるスペース。写真(figure)のwidth指定とバランスをとって指定する。*/
}

/*メインコンテンツ内の「list2」ボックス
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
#main .list2 {
	overflow: hidden;
	position: relative;
	width: 22%;		/*幅*/
	float: left;	/*左に回り込み*/
	text-align: center;	/*内容をセンタリング*/
	margin-left: 2.4%;	/*ボックス同士に空ける左右間のスペース*/
	font-size: 12px;	/*文字サイズ*/
	margin-bottom: 20px;	/*ボックスの下に空ける上下間のスペース*/
}
#main .list2 a {
	display: block;text-decoration: none;overflow: hidden;
}
/*h4タグ*/
#main .list2 h4 {
	height: 1.5em;	/*高さ。レイアウトが崩れるのを防ぐ為、２行目以降は非表示になります。*/
}
/*写真のマウスオン時*/
#main .list2 a:hover figure img {
	opacity: 0.7;	/*透明度*/
}

/*サブコンテンツ
---------------------------------------------------------------------------*/
#sub {
	width: 21%;		/*ボックスの幅*/
	float: left;	/*左に回り込み*/
	padding-bottom: 30px;
}
/*１カラム時のsubコンテンツ*/
.c1 #sub {
	display: none;	/*非表示*/
}
/*h2タグ*/
#sub h2 {
	background: #999;	/*背景色*/
	color: #fff;		/*文字色*/
	text-align: center;	/*文字をセンタリング*/
	padding: 8px 0;		/*上下、左右へのh2内の余白*/
	border-radius: 10px 10px 0px 0px;	/*角丸のサイズ。左上、右上、右下、左下への順。*/
}

/*サブコンテンツ内のメニュー
---------------------------------------------------------------------------*/
/*メニュー全体の設定*/
ul.submenu {
	margin-bottom: 20px;	/*メニューブロックの下に空けるスペース*/
	border: solid 1px #ccc;	/*枠線の幅、線種、色*/
	border-bottom: none;	/*下の線だけ消す設定*/
	text-align: center;		/*文字をセンタリング*/
}
/*メニュー１個ごとの設定*/
ul.submenu li {
	border-bottom: solid 1px #ccc;	/*下の線の線種、幅、色*/
}
ul.submenu li a {
	text-decoration: none;display: block;
	padding: 5px;	/*メニュー内の余白*/
}

/*サブコンテンツ内のlistボックス
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
#sub .list {
	position: relative;overflow: hidden;
	font-size: 11px;	/*文字サイズを少し小さくする（デフォルトは最上段のbody内にあります）*/
	line-height: 1.3;	/*行間を少し狭くする（デフォルトは最上段のbody内にあります）*/
}
#sub .list a {
	display: block;text-decoration: none;overflow: hidden;
	padding: 8px 0;	/*上下、左右へのメニュー内の余白*/
	border-bottom: 1px solid #ccc;	/*下線の幅、線種、色	*/
}
/*写真*/
#sub .list figure img {
	width: 25%;		/*写真の幅*/
	float: left;	/*左に回り込み*/
	margin-right: 5px;	/*写真の右に空けるスペース*/
}


/*フッター設定
---------------------------------------------------------------------------*/
footer {
	clear: both;
	text-align: center;
	padding: 15px;
	color: #fff;
}
footer .pr {
	display: block;
	font-size: 80%;
}
footer a {
	text-decoration: none;
	color: #fff;
}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*お知らせブロック*/
#new {
	margin-bottom: 20px;
}
/*見出しを含まないお知らせブロック*/
#new dl {
	padding: 0px 20px;		/*上下、左右へのブロック内の余白*/
}
/*日付設定*/
#new dt {
	float: left;
	width: 9em;		/*幅*/
	color: #666;	/*文字色*/
	letter-spacing: 0.1em;
}
/*記事設定*/
#new dd {
	padding-left: 9em;
}

/*テーブル１
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta1 caption {
	border: 1px solid #ccc;	/*テーブルの枠線の幅、線種、色*/
	border-bottom: none;	/*下線だけ消す*/
	text-align: left;		/*文字を左寄せ*/
	background: #eee;		/*背景色*/
	font-weight: bold;		/*太字に*/
	padding: 10px;			/*ボックス内の余白*/
}
/*テーブル設定*/
.ta1 {
	width: 100%;
	margin: 0px auto 20px;
}
.ta1, .ta1 td, .ta1 th {
	border: 1px solid #ccc;	/*テーブルの枠線の幅、線種、色*/
	padding: 10px;	/*ボックス内の余白*/
	word-break: break-all;
}
/*左側ボックス*/
.ta1 th {
	width: 180px;	/*幅*/
	text-align: center;	/*背景色*/
}
/*テーブル１行目に入った見出し部分*/
.ta1 th.tamidashi{
	width: auto;
	text-align: left;
	background: #eee;		/*背景色*/
}
/*こだわり検索のフロート指定(CMS用)*/
.ta1 td .specialbox {
	float: left;
	width: 45%;
}

/*inputボタン
---------------------------------------------------------------------------*/
#contents input[type="submit"].btn,
#contents input[type="button"].btn,
#contents input[type="reset"].btn {
	padding: 5px 20px;		/*上下、左右へのボックス内の余白*/
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
	font-size: 20px;		/*文字サイズ*/
	border-radius: 3px;		/*角丸のサイズ*/
	background: #eee;		/*背景色*/
}
/*マウスオン時の設定*/
#contents input[type="submit"].btn:hover,
#contents input[type="button"].btn:hover,
#contents input[type="reset"].btn:hover {
	border: 1px solid #999;	/*枠線の幅、線種、色*/
	background: #fff;		/*背景色*/
}

/*ページの上部に戻る「↑」ボタン
---------------------------------------------------------------------------*/
@keyframes scroll {
0% {opacity: 0;}
100% {opacity: 1;}
}
/*通常時のボタンは非表示*/
body .nav-fix-pos-pagetop a {
	display: none;
}
/*fixmenu_pagetop.jsで設定している設定値になったら出現するボタンスタイル*/
body.is-fixed-pagetop .nav-fix-pos-pagetop a {
	display: block;text-decoration: none;text-align: center;
	width: 50px;	/*ボタンの幅*/
	line-height: 50px;	/*ボタンの高さ*/
	z-index: 100;
	position: fixed;
	bottom: 50px;	/*ウィンドウの下から50pxの場所に配置*/
	right: 5%;		/*ウィンドウの右から5%の場所に配置*/
	background: #000;	/*背景色（古いブラウザ用）*/
	background: rgba(0,0,0,0.6);	/*背景色。0,0,0は黒の事で0.6は60%色がついた状態。*/
	color: #fff;	/*文字色*/
	border-radius: 50%;	/*角丸指定。50%にすると円形になる。四角形がいいならこの１行削除。*/
	animation-name: scroll;	/*上のアニメーションで指定しているkeyframesの名前（scroll）*/
	animation-duration: 1S;	/*アニメーションの実行時間*/
	animation-fill-mode: forwards;	/*アニメーションの完了後、最後のキーフレームを維持する*/
}
/*マウスオン時の背景色*/
body.is-fixed-pagetop .nav-fix-pos-pagetop a:hover {
	background: #999;
}

/*一覧ページのボックス内のアイコン
（CMSの場合は管理ページの「オプション1」～のプルダウンと、setup.phpの「オプション選択肢」に関連します）
---------------------------------------------------------------------------*/
/*option1,option2共通*/
span.option1, span.option2 {
	text-align: center;
	display: block;
	font-size: 10px;	/*文字サイズ*/
	width: 120px;		/*幅*/
	position: absolute;
	right: 0px;	/*ボックスに対して右から0pxの場所に配置*/
	top: 0px;	/*ボックスに対して上から0pxの場所に配置*/
	transform: rotate(45deg) translate(36px,-15px);	/*45度回転、右へ,下へ(マイナス設定なので上へ向けての指定)の移動距離*/
	color: #FFF;	/*文字色*/
	background: #ccc;	/*背景色*/
}
/*option1への追加設定*/
span.option1 {
	color: #FFF;		/*文字色*/
	background: #F00;	/*背景色*/
}
/*h2タグ内で使った場合のoption1とoption2*/
h2 span.option1, h2 span.option2 {
	width: auto;
	position: static;
	transform: none;
	display: inline-block;
	font-size: 15px;
	margin-left: 10px;
	padding: 0px 5px;
}

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

/*checkブロック。赤い注意書きブロックです。
---------------------------------------------------------------------------*/
p.check {
	background: #ff0000;	/*背景色*/
	color:#fff;				/*文字色*/
	padding: 10px 25px !important;	/*上下、左右へのボックス内余白*/
	margin-bottom: 20px;
}
p.check a {color: #fff;}

/*その他
---------------------------------------------------------------------------*/
.look {background: #ccc;padding: 5px 10px;border-radius: 4px;}
.mb15,.mb1em {margin-bottom: 15px !important;}
.mb20 {margin-bottom: 20px !important;}
.clear {clear: both;}
ul.disc {padding: 0em 25px 15px;list-style: disc;}
.color1, .color1 a {color: #f95f9c !important;}
.pr {font-size: 10px;}
.wl {width: 96%;}
.ws {width: 50%;}
.c {text-align: center !important;}
.r {text-align: right !important;}
.l {text-align: left !important;}
.fl {float: left;}
img.fl {float: left;width:30%;margin-right: 20px;margin-bottom: 20px;}
.fr {float: right;}
img.fr {float: right;width:30%;margin-left: 20px;margin-bottom: 20px;}
.mini1 {font-size: 11px;display: inline-block;line-height: 1.5;}
.sh {display: none;}



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

/*ヘッダー（サイト名が入ったブロック）
---------------------------------------------------------------------------*/
/*ヘッダーのinnerへの追加設定*/
header {
	height: fit-content;
}
header .inner {
	height: 120px;	/*高さ*/
}
/*ヘッダーのinnerへの追加設定（トップページへの追加設定）*/
.top header .inner {
	height: 250px;	/*高さの再指定*/
}
/*ロゴ画像の設定*/
header #logo {
	width: 200px;	/*画像の幅*/
}

/*メインメニュー
---------------------------------------------------------------------------*/
/*アニメーションのフレーム設定。全100コマアニメーションだと思って下さい。透明(0%)から色を100%出すアニメーション指定。*/
@keyframes menu1 {
	0% {opacity: 0;}
	100% {opacity: 1;}
}
/*スマホ用メニューブロック*/
#menubar-s {
	display: block;overflow: hidden;
	position: absolute;
	top: 120px;	/*上から120pxの場所に配置*/
	border-top: 1px solid #fff;		/*上の線の幅、線種、色*/
	width: 100%;
	z-index: 10;
	animation-name: menu1;		/*上のkeyframesの名前*/
	animation-duration: 0.5S;	/*アニメーションの実行時間。0.5秒。*/
	animation-fill-mode: both;	/*アニメーションの完了後、最後のキーフレームを維持する*/
}
/*メニュー１個あたりの設定*/
#menubar-s li a {
	display: block;text-decoration: none;
	padding: 15px 10px 15px 20px;	/*上、右、下、左へのメニュー内の余白*/
	border-bottom: 1px solid #fff;	/*下の線の幅、線種、色*/
	background: rgba(0,0,0,0.8);	/*背景色*/
	font-size: 20px;
	color: #fff;	/*文字色*/
}
/*PC用メニューを非表示にする*/
#menubar {display: none;}

/*３本バーアイコン設定
---------------------------------------------------------------------------*/
/*３本バーブロック*/
#menubar_hdr {
	display: block;
	position: absolute;
	top: 30px;	/*上から30pxの場所に配置*/
	right: 3%;	/*右から3%の場所に配置*/
	border: 1px solid #000;	/*枠線の幅、線種、色*/
}
/*アイコン共通設定*/
#menubar_hdr.close,
#menubar_hdr.open {
	width: 50px;	/*幅*/
	height: 50px;	/*高さ*/
}
/*三本バーアイコン*/
#menubar_hdr.close {
	background: #fff url(../images/icon_menu.png) no-repeat center top/50px;
}
/*閉じるアイコン*/
#menubar_hdr.open {
	background: #fff url(../images/icon_menu.png) no-repeat center bottom/50px;
}

/*main,sub,side,contents-in
---------------------------------------------------------------------------*/
#main, #sub, .inner {
	float: none;
	width: auto;
}

/*sub,sideコンテンツ内のおすすめ一覧ブロック
---------------------------------------------------------------------------*/
/*ボックス内の写真設定*/
#sub .list figure img, #side .list figure img {
	width: 20%;		/*写真の幅*/
}

/*その他
---------------------------------------------------------------------------*/
body.s-n #sub,body.s-n #side,body.s-n #footermenu {display: none;}
.sh {display:block;}
.pc {display:none;}

}



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

/*全体の設定
---------------------------------------------------------------------------*/
body {
	font-size: 12px;	/*文字サイズ*/
	line-height: 1.5;	/*行間*/
}

/*ヘッダー（サイト名が入ったブロック）
---------------------------------------------------------------------------*/
/*ヘッダーのinnerへの追加設定（トップページへの追加設定）*/
.top header .inner {
	height: 200px;	/*高さの再指定*/
}

/*コンテンツ（mainとsubを囲むブロック）
---------------------------------------------------------------------------*/
#contents {
	padding: 15px;		/*ボックス内の余白*/
	margin: 20px 3% 0;	/*ボックスの外への余白。上、左右、下。*/
}

/*mainコンテンツ（中央のブロック）
---------------------------------------------------------------------------*/
/*mainコンテンツのh2,h3タグ設定*/
#main h2, #main h3 {
	font-size: 14px;	/*文字サイズ*/
	padding-left: 10px;
}
/*mainコンテンツの段落タグ設定*/
#main p {
	padding: 0 10px 20px;	/*上、左右、下への余白*/
}

/*メインコンテンツ内の「list」ボックス
---------------------------------------------------------------------------*/
#main .list a {
	padding: 10px;	/*ボックス内の余白*/
}
/*h4タグ*/
#main .list h4 {
	font-size: 12px;	/*文字サイズ*/
}

/*メインコンテンツ内の「list2」ボックス
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
#main .list2 {
	width: 45%;			/*幅*/
	margin-left: 3%;	/*ボックス同士に空ける左右間のスペース*/
}

/*テーブル
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta1 caption {
	padding: 5px;
}
/*テーブル内の左側*/
.ta1 th {
	width: 100px;
	padding: 5px;
}
/*テーブル内の右側*/
.ta1 td {
	width: auto;
	padding: 5px;
}

/*その他
---------------------------------------------------------------------------*/
.ws,.wl {width: 94%;}
img.fr,img.fl {float: none;margin: 0;width: 100%;}

}



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

/*ヘッダー（サイト名が入ったブロック）
---------------------------------------------------------------------------*/
/*ヘッダーのinnerへの追加設定*/
header .inner {
	height: 100px;	/*高さ*/
}
/*ロゴ画像の設定*/
header #logo {
	width: 100px;	/*画像の幅*/
}

}
body,
header,
html {
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", Hiragino Mincho ProN, "メイリオ", Meiryo, "MSP明朝", "MS PMincho", "MS 明朝", serif !important;
	height: 100%;
	font-weight: 400
}

.boxNagaminekai {
	padding: 0.5em 1em;
	margin: 2em 0;
	color: #474747;
	background: whitesmoke;
	/*背景色*/
	border-left: double 7px #4ec4d3;
	/*左線*/
	border-right: double 7px #4ec4d3;
	/*右線*/
}

.boxNagaminekai p {
	margin: 0;
	padding: 0;
}

/* 
.NagaminekaiImg {
	width:100%;
}

.NagaminekaiImg img {
	width:100%;
} */

.f-min {
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", Hiragino Mincho ProN, "メイリオ", Meiryo, "MSP明朝", "MS PMincho", "MS 明朝", serif !important
}

a {
	color: #009aed
}

.navbar {
	background-color: #009aed;
	opacity: 0.1;
}

.top-nav-collapse {
	background-color: #ffffff;
	opacity: 1
}

.title {
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1.5rem
}

.title img {
	height: 1.5rem;
	margin-bottom: 8px
}

.top-nav-collapse h1 {
	font-size: 1.5rem;
	font-weight: 700
}

.page-footer {
	background-color: #009aed
}

.footer-copyright a {
	color: rgba(255, 255, 255, 0.6) !important;
}

#time-counter {
	font-size: 1rem
}

/* .view {
	height: 70vh
} */

.full-intro h1 {
	font-size: 2.5rem;
	font-weight: 900
}

.full-intro p {
	font-size: 1.5rem
}

.mt1 {
	margin-top: 36px !important
}

.mb1 {
	margin-bottom: 36px !important
}

.mt2 {
	margin-top: 72px !important
}

.mb2 {
	margin-bottom: 72px !important
}

.mt3 {
	margin-top: 106px !important
}

.mb3 {
	margin-bottom: 106px !important
}

h2 {
	font-size: 1.8rem;
	font-weight: 500;
	margin-top: 40px
}

h3 {
	font-size: 1.2rem;
	font-weight: 700
}

.navbar-brand {
	font-size: 1.3rem;
	font-weight: 400
}

@media(min-width: 768px){
	a[href^="tel:"]{
	  pointer-events: none;
	}
  }

@media (max-width:559px) {

	body,
	header,
	html {
		height: 1000px
	}

	#topMoji {
		font-size: 4.6vmin !important;
	}

	h1 {
		font-size: 1.7rem !important;
	}

	h2 {
		font-size: 1.5rem !important;
	}

	/* .view {
		height: 100vh
	} */

	.full-intro h1 {
		font-size: 1.5rem
	}

	.title {
		font-size: .8rem;
		font-weight: 700;
		line-height: 1.5rem
	}

	.title img {
		height: .8rem;
		margin-bottom: 8px
	}

	.navbar-brand {
		font-size: 3.6vmin;
	}

	.full-intro p {
		font-size: 1.1rem
	}

	.navbar-toggler {
		padding: 0%;
	}

	.navbar-toggler-icon {
		width: 1em;
	}

	#topMoji {
		font-size: 1rem;
		font-weight: 100%;
		margin-top: 20px;
	}

	nav {
		min-height: 55px;
	}

	.photUploadBtn {
		display: flex;
		align-items: center;
		justify-content: center;
		line-height: 1;
		text-decoration: none;
		color: #ffffff;
		font-size: 10px !important;
		border-radius: 10px;
		width: 150px !important;
		height: 40px !important;
		font-weight: bold;
		border-bottom: 3px solid #179e43 !important;
		transition: 0.3s;
		background-color: #33c363;
	}

}

@media (min-width:560px) and (max-width:740px) {

	body,
	header,
	html {
		height: 700px
	}

	/* .view {
		height: 80vh
	} */

	.full-intro h1 {
		font-size: 1.5rem
	}

	.navbar-brand {
		font-size: 1.2rem
	}
}

@media (min-width:800px) and (max-width:850px) {

	body,
	header,
	html {
		height: 600px
	}

	/* .view {
		height: 80vh
	} */

	.full-intro h1 {
		font-size: 1.5rem
	}

	.navbar:not(.top-nav-collapse) {
		background: #009aed !important
	}

	.navbar-brand {
		font-size: 1.2rem
	}
}

@media (max-width:991px) {
	.greeting {
		flex-direction: column;
	}
}

ul {
	list-style-type: square
}

.schedule-title1 {
	background: #a1c5db;
	color: #fff
}

.schedule-title2 {
	background: #81a2d7;
	color: #fff
}

.schedule-title3 {
	background: #4c5a74;
	color: #fff
}

.schedule-title4 {
	background: #363f4e;
	color: #fff
}

.c1 {
	color: #a1c5db
}

.c2 {
	color: #81a2d7
}

.c3 {
	color: #4c5a74
}

.c4 {
	color: #363f4e
}

.full-intro {
	/* background-image: url(SchoolPhoto.JPG); */
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center
}

@media (max-width:559px) {
	.full-intro {
		/* background-clip: url(SchoolPhoto.JPG); */
		background-repeat: no-repeat;
		background-size: cover;
		background-position: center center
	}
}

a.btn {
	text-align: center;
	position: relative;
	text-decoration: none;
	display: inline-block;
	border-radius: 0;
	background-color: #fff;
	padding: 11px 20px 11px 20px;
	color: inherit;
	transition: all .3s;
	border: 1px solid;
	min-width: 160px;
	border: 1px solid #363f4e;
}

a.btn svg {
	position: absolute;
	right: 20px;
	margin-top: -.5rem;
	top: 50%
}

a.btn:hover {
	background-color: #009aed;
	color: #fff
}

a.btn:hover:before {
	background: #fff
}

a.btn:hover:after {
	border-color: #009aed
}

table td,
table th {
	font-size: 1rem
}


/* ----- 背景用の動画ファイル ----- 
#bg-video{
	position: fixed;
	right: 0;
	bottom: 0;
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	z-index: -100;
	background: url('poster.jpg') no-repeat;
	background-size: cover;
}
*/

/* --------------- information --------------- */
#information {
	padding: 80px 0 100px;
	color: #222;
	text-align: center;

}

#information .wrapper {
	margin: 0 auto;
	width: 100%;
	max-width: 1000px;
}

#information h1 {
	display: inline-block;
	margin: 0 auto 40px;
	padding-bottom: 10px;
	font-size: 1.25rem;
	font-weight: 700;
	border-bottom: 4px solid #222;
}

#information article {
	margin-bottom: 40px;
	padding: 40px 40px 35px;
	text-align: left;
	border-radius: 20px;
	background-color: #e7e7e7;
}

#information article .text_date {
	font-size: 0.85rem;
}

#information article h2 {
	margin-bottom: 30px;
	padding-bottom: 12px;
	font-size: 1.15rem;
	line-height: 1.8em;
	border-bottom: 2px solid #000000;
}

#information article .text_content {
	line-height: 2.0em;
	font-size: 0.85rem;
}

.sche {
	text-align: center;
}

.sche img {
	width: 100%;
}

.greeting>a {
	width: 50%;
}

.project h3 {
	padding: 0.4em 0.5em;
	/*文字の上下 左右の余白*/
	color: #494949;
	/*文字色*/
	background: #f1f8ff;
	/*背景色*/
	border-left: solid 5px #009aed;
	/*左線*/
	/*border-bottom: solid 3px #d7d7d7;/*下線*/
}

#gallery .mb2 {
	margin-bottom: 51px !important;
}

.gallerytitle {
	text-align: center;
	position: relative;
	top: -20px;
}

.gallerycontents {
	position: relative;
	top: 30px;
}

.dropdown.yearselect {
	display: flex;
	justify-content: center;
	top: -10px;
}

.dropdown.yearselect.show button {
	background-color: #6494e5 !important;
	padding: 10px 20px;
}

.dropdown.yearselect button {
	background-color: #6494e5 !important;
	padding: 10px 20px;
}

.dropdown.yearselect button:hover {
	background-color: #6494e5 !important;
}


.dropdown.yearselect .btn-secondary.dropdown-toggle:focus,
.btn-secondary.dropdown-toggle:hover {
	background-color: #6494e5 !important;
}

/*
エフェクト：右から左へ
----------------------------*/
@keyframes infinity-scroll-left {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-100%);
	}
}

/*
  エフェクト：左から右へ
  ----------------------------*/
@keyframes infinity-scroll-right {
	from {
		transform: translateX(-100%);
	}

	to {
		transform: translateX(0%);
	}
}

.d-demo__wrap-first {
	display: flex;
	overflow: hidden;
	max-width: 50%;
	margin: auto;
}

.d-demo__wrap-second {
	display: flex;
	overflow: hidden;
	max-width: 50%;
	margin: auto;
}

.d-demo__wrap-third {
	display: flex;
	overflow: hidden;
	max-width: 50%;
	margin: auto;
}

.d-demo__list {
	display: flex;
	list-style: none;
}

.d-demo__list--left {
	animation: infinity-scroll-left 95s infinite linear 0.5s both;
	padding: 0px;
	margin: 0px;
}

.d-demo__list--right {
	animation: infinity-scroll-right 95s infinite linear 0.5s both;
	padding: 0px;
	margin: 0px;
}

.d-demo__item>a {
	padding: 0px;
}

.d-demo__item>a img {
	width: auto;
	height: 200px;
}

/*
  マウスオーバーで一時停止させたい場合は以下
  ----------------------------*/

.d-demo__wrap-first:hover .d-demo__list--right {
	animation-play-state: paused;
}

.d-demo__wrap-second:hover .d-demo__list--left {
	animation-play-state: paused;
}

.d-demo__wrap-third:hover .d-demo__list--right {
	animation-play-state: paused;
}

/*レスポンシブ*/
@media (max-width:559px) {
	.gallerymaintitle {
		margin-top: 60px;
	}

	.dropdown.yearselect button {
		font-size: 10px;
		padding: 5px 10px;
		position: relative;
		/* top: -20px; */
	}

	.dropdown.yearselect.show button {
		font-size: 10px;
		padding: 5px 10px;
		position: relative;
	}
}

/* .greeting {
	background-image: url(22768338.png);
 } */


.soshikizu {
	width: 100%;
}


.bordered-tab-contents>.tab-content>.tab-pane {
	border-left: 1px solid #ddd;
	border-right: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
	border-radius: 0px 0px 5px 5px;
	padding: 10px;
}

.bordered-tab-contents>.nav-tabs {
	margin-bottom: 0;
}

.tab-pane>p {
	margin-bottom: 0;
}

.buttonSyuisyo a {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 0 auto;
	padding: 1em 2em;
	width: 220px;
	color: #2285b1;
	font-size: 16px;
	font-weight: 700;
	border: 3px solid #00b3ff;
	border-radius: 10px;
}

.buttonSyuisyo a::after {
	content: '';
	width: 5px;
	height: 5px;
	border-top: 3px solid #00b3ff;
	border-right: 3px solid #00b3ff;
	transform: rotate(45deg);
}

.buttonSyuisyo a:hover {
	color: #ffffff;
	text-decoration: none;
	background-color: #00b3ff;
}

.buttonSyuisyo a:hover::after {
	border-top: 3px solid #ffffff;
	border-right: 3px solid #ffffff;
}

.daihyokanzi {
	width: 95%;
}

.jikkoiin {
	width: 95%;
}

.yakuin {
	position: relative;
	padding-left: 25px;
}

.yakuin::before {
	position: absolute;
	content: '';
	bottom: -3px;
	left: 0;
	width: 0;
	height: 0;
	border: none;
	border-left: solid 15px transparent;
	border-bottom: solid 15px rgb(119, 195, 223);
}

.yakuin::after {
	position: absolute;
	content: '';
	bottom: -3px;
	left: 10px;
	width: 100%;
	border-bottom: solid 3px rgb(119, 195, 223);
}

/* Font Awsome　右よせ */
.rightmark {
	float: right;
	padding-top: 3.5px;
}

/* 見出し「長峯会」 */
.midashi-nagaminekai {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 32px;
	text-align: center;
}

.midashi-nagaminekai::before,
.midashi-nagaminekai::after {
	content: '';
	width: 70px;
	height: 3px;
	background-color: #00a6e3;
}

.midashi-nagaminekai::before {
	margin-right: 20px;
}

.midashi-nagaminekai::after {
	margin-left: 20px;
}

/* 見出し「50周年」 */
.midashi-50th {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 32px;
	text-align: center;
}

.midashi-50th::before,
.midashi-50th::after {
	content: '';
	width: 70px;
	height: 3px;
	background-color: #00a6e3;
}

.midashi-50th::before {
	margin-right: 20px;
}

.midashi-50th::after {
	margin-left: 20px;
}

/* ボタンのCSS */
.galleryBtn {
	text-align: center;
	display: block;
	background: #ffffff;
	color: #000000;
	width: 300px;
	padding-bottom: 5px;
}

.galleryBtn img {
	width: 100%;
	height: auto;
}

.galleryBtn div {
	text-align: center;
}

.galleryBtn img:hover {
	opacity: 0.5;
}

.btn-circle-border-double {
	display: inline-block;
	text-decoration: none;
	color: #668ad8;
	width: 200px;
	height: 200px;
	border-radius: 50%;
	border: double 4px #668ad8;
	text-align: center;
	/* overflow: hidden; */
	transition: .6s;
	white-space: normal;
}

.btn-circle-border-double p {
	margin-top: 70px;
}

.btn-circle-border-double:hover {
	-webkit-transform: rotateY(360deg);
	transform: rotateY(360deg);
}

.contactBtnP {
	margin-top: 82px !important;
}

@media (max-width:559px) {
	.btn-circle-border-double {
		width: 100px;
		height: 100px;
	}

	.btn-circle-border-double p {
		margin-top: 30px;
		font-size: small
	}

	.btn-circle-border-double strong {
		font-size: small !important;
	}

	#galleryBtn {
		margin-right: 3rem !important;
	}

	#contactBtn {
		margin-left: 3rem !important;
	}

	.contactBtnP {
		margin-top: 38px !important;
	}

	.buttonSyuisyo a {
		display: flex;
		justify-content: space-between;
		align-items: center;
		margin: 0 auto;
		padding: 0.5em 1em;
		width: 110px;
		color: #2285b1;
		font-size: 8px;
		font-weight: 350;
		border: 1.5px solid #00b3ff;
		border-radius: 5px;
	}

}

.photUploadBtn {
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
	text-decoration: none;
	color: #ffffff;
	font-size: 15px;
	border-radius: 10px;
	width: 220px;
	height: 60px;
	font-weight: bold;
	border-bottom: 4px solid #179e43;
	transition: 0.3s;
	background-color: #33c363;
}

.photUploadBtn:hover {
	box-shadow: 0 0 rgba(0, 0, 0, 0.4);
	border-bottom-width: 2px;
	transform: translateY(2px);
}


/* 議事録ページ */
.pdf ul {
	padding: 0;
}

.pdf ul li {
	color: black;
	position: relative;
	background: #f1f8ff;
	/*バーの色*/
	line-height: 1.5;
	padding: 0.5em;
	margin-bottom: 4px;
	border-left: solid 35px #5c9ee7;
	/*先の色＝アイコン裏の色*/
	list-style-type: none !important;
}

.pdf ul li:before {
	font-family: "Font Awesome 5 Free";
	content: "\f1c1";
	position: absolute;
	display: block;
	padding: 0.5em;
	width: 1.2em;
	color: white;
	/*アイコン色*/
	font-weight: normal;
	/*アイコンは太字にしない*/
	text-align: center;
	left: -31px;
	/*左端からのアイコンまでの距離*/
	/*以下 上下中央寄せのため*/
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.cautionbox {
	margin: 1em 0;
	background-color: #ffebee;
	padding: 1em;
}

.cautionbox-title {
	color: #ef5350;
	font-size: 18px;
	font-weight: bold;
}

.cautionbox-title:before {
	font-family: "Font Awesome 5 Free";
	content: "\f071";
	font-size: 17px;
}

.cautionbox p {
	margin: 0;
	padding: 0;
}

.sendjournal {
	margin-right: 11px;
	;
	margin-bottom: 15px;
	float: right;
}

.media h3 {
	margin-right:40px;
	text-align: left!important;
}

.slick-arrow {
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	padding: 0;
	width: 20px;
	height: 38px;
	color: transparent;
	z-index: 1;
	transition: opacity 0.5s;
	z-index: 1;
  }
  .slick-arrow:hover {
	opacity: 0.7;
  }
  
  /* 共通設定 */
  
  .slick-next::before,
  .slick-next::after,
  .slick-prev::before,
  .slick-prev::after {
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	content: "";
	vertical-align: middle;
  }
  .slick-next::after,
  .slick-prev::after {
	width: 26px;
	height: 26px;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
  }
  
  /* next */
  
  .slick-next {
	right: 26px;
  }
  .slick-next::after {
	right: 4px;
	transform: rotate(45deg);
  }
  
  /* prev */
  
  .slick-prev {
	left: 26px;
  }
  .slick-prev::after {
	left: 4px;
	transform: rotate(-135deg);
  }

  .slider {
	height: auto;
    object-fit: cover;
  }
  .slider img {
		width:auto;
		
	}
  
  @media screen and (max-width: 767px) {
	.slick-next::after,
	.slick-prev::after {
	  width: 10px;
	  height: 10px;
	}
	.slick-next {
	  right: 8px;
	}
	.slick-prev {
	  left: 8px;
	}
	.slick-next::after {
	  right: 2px;
	}
	.slider {
		height: auto;
	}
	.slider img {
		height:auto;
  }
	
  }

  /*メインメニュー
---------------------------------------------------------------------------*/
/*メニューブロック*/
#menubar {
	margin:0;
	overflow: hidden;
	/* background: #6dd7ff;	/*背景色（古いブラウザ用）*/
	/* background: linear-gradient(#00bbff, #7bd4f7);	背景グラデーション */
	/* box-shadow: 1px 2px 7px rgba(0,0,0,0.2);		ボックスの影。右へ、下へ、広げる幅、0,0,0は黒のことで0.2は色が20%ついた状態のこと。 */
	text-align: center;		/*テキストをセンタリング*/
	padding: 0 4%;			/*上下、左右へのメニューブロック内の余白。*/
	margin-bottom: 30px;	/*メニューブロックの下(外側)に空けるスペース*/
}
/*メニュー１個あたりの設定*/
#menubar li {
	overflow: hidden;
	float: left;		/*左に回り込み*/
	width: 33.3%;			/*メニュー幅。5個なので100÷5=20。6個にしたいなら16.6%にする。*/
	line-height: 1.6;	/*行間*/
}
#menubar li a {
	display:  block;
	display: grid;
	place-items: center;
	height:125px;
	text-decoration: none;
	border-right: 1px solid rgba(0,0,0,0.1);	/*右側の線の幅・線種・色。0,0,0は黒の事で、0.1は色が10%ついた状態の事。*/
	padding: 25px 0;	/*上下、左右へのメニュー内の余白*/
	color: #fff;		/*文字色*/
}
/*１つ目のメニューへの追加設定*/
#menubar li:first-child a {
	border-left: 1px solid rgba(0,0,0,0.1);	/*左側の線の幅・線種・色。0,0,0は黒の事で、0.1は色が10%ついた状態の事。*/
}
/*マウスオン時と、現在表示中メニューの設定*/
#menubar li a:hover, #menubar li.current a {
	opacity: 0.5;	/*背景色*/
	color: #fff;			/*も地色*/
}

#nagaminenowalink  {
	background: rgb(223, 217, 49);
    color: #fff;
}

#bokinlink  {
	background:rgb(134, 223, 44);
    color: #fff;
}
#marchingPhoto  {
	background:#6dd7ff;
    color: #fff;
}
#maillink  {
	background:rgb(254, 166, 14);
    color: #fff;
}
#ceremonylink  {
	background:rgb(255, 97, 44);
    color: #fff;
}
#onegai  {
	background:rgb(255, 127, 202);
    color: #fff;
}

.box26 {
    position: relative;
    margin: 2em 0;
    padding: 0.5em 1em;
    border: solid 3px #95ccff;
    border-radius: 8px;
}
.box26 .box-title {
    position: absolute;
    display: inline-block;
    top: -13px;
    left: 10px;
    padding: 0 9px;
    line-height: 1;
    font-size: 19px;
    background: #FFF;
    color: #95ccff;
    font-weight: bold;
}
.box26 p {
    margin: 0; 
    padding: 0;
}

.anchor h2{
		margin-top:-100px;
		padding-top:100px;
}

@media (max-width:559px) {
	#menubar{
		font-size: 0.7rem!important;
	}

}

a.btn--green {
	color: #fff;
	background-color: #094;
	margin: 0;
	display: inline-block;
	border: 1px solid rgb(0, 65, 29);
  }
  
  a.btn--green:hover {
	color: #fff;
	background: #00a349;
  }
  
  a.btn--green.btn--cubic {
	border-bottom: 5px solid #00662d;
  }
  
  a.btn--green.btn--cubic:hover {
	margin-top: 3px;
	border-bottom: 2px solid #00662d;
  }

  a.btn--orange {
	color: #fff;
	background-color: #ff1e1e;
	margin: 0;
	display: inline-block;
	border: 1px solid #cf1616;
  }
  
  a.btn--orange:hover {
	color: #fff;
	background: #ff1e1e;
  }
  
  a.btn--orange.btn--cubic {
	border-bottom: 5px solid #ff1e1e;
  }
  
  a.btn--orange.btn--cubic:hover {
	margin-top: 3px;
	border-bottom: 2px solid #ff1e1e;
  }
  
  a.btn-c {
	font-size: 1rem;
	position: relative;
	padding: 1.5rem 3rem 1.5rem 2rem;
	border-radius: 100vh;
	display: inline-block;
	white-space: nowrap;
  }
  
  a.btn-c i.fa {
	margin-right: 1rem;
  }
  
  @media screen and (max-width: 767px) {
	a.btn-c {
	  font-size: 0.8rem;
	  padding: 1rem 2rem 1rem 1rem;
	}
  
	a.btn-c i.fa {
	  margin-right: 0.5rem;
	}

	#ceremonylink {
		margin-top: 10px!important;
	}
  }

  .row {
	margin-left: 0;
	margin-right: 0;
  }

  .header-image {
	text-align: center;
}

.header-image img {
	max-width: 100%;
	height: auto;
	display: inline-block;
}
