@charset "utf-8";


/*全端末共通設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/

/*全体の設定
---------------------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;900&family=Noto+Serif+JP&display=swap');
body {
	margin: 0px;
	padding: 0px;
	color: #333;	/*全体の文字色*/
	background: #fafafa;	/*背景色*/
	font-family: 'Noto Sans JP',"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;	/*フォント種類*/
	font-size: 14px;	/*文字サイズ*/
	line-height: 2;		/*行間*/
	-webkit-text-size-adjust: none;
}f
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{position: relative; width: 100%; height: 0; padding: calc(315 / 560 * 100%) 0 0; margin:10px auto;}
.video iframe {position: absolute; top:0; left: 0 ;width: 100%; height: 100%;}

/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
	color: #333;	/*リンクテキストの色*/
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*同上*/
}
a:hover {
	color: #30589b;			/*マウスオン時の文字色（全体）*/
	text-decoration: none;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}

/*コンテナー（HPを囲むブロック）
---------------------------------------------------------------------------*/
#container {
	max-width: 1500px;	/*ブロックの最大幅。footerの数字と合わせる。*/
	margin: 40px auto 0px;
}

/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
#header {
	background: linear-gradient(135deg, #ff9090 0%,#ff4040 50%,#ffa561 50%,#ff1500 100%);
	background: url(../images/header_pc.png)no-repeat;	
	overflow: hidden;
	background-size: 100%;
	padding-top: 13.3%;
	border-radius: 8px;	

	-webkit-box-shadow: 0px 0px 10px rgba(0,0,0,0.3);	
	box-shadow: 0px 0px 10px rgba(0,0,0,0.3);
	margin-bottom: 30px;
}
/*ロゴ画像*/
#header #logo img {
	width: 200px;	/*画像の幅*/
	/*float: left;
	margin-top: 50px;	画像の上にあけるスペース*/
	margin-left: 50px;	/*画像の左にあけるスペース*/
	margin-bottom: 15px;
}

/*上部のメインメニュー
---------------------------------------------------------------------------*/
/*メニュー１個ごとの設定*/
#menubar li,
#menubar-s li {
	float: left;
	/*width: 20%;	幅*/
	width: calc(100% / 5);
	line-height: 1.2;
	
}
#menubar li a,
#menubar-s li a {
	text-decoration: none;
	display: block;
	margin-left: 4%;
	letter-spacing: 0.1em;	/*文字間隔を少し広めにとる設定。*/
	padding: 20px 0px 10px 40px;		/*メニュー内の上、右、下、左へとる余白*/
	border: 1px solid #bcbcbc;		/*線の幅、線種、色*/
	background: #FFF url(../images/mark1.png) no-repeat 15px center;	/*背景色とマーク画像（※古いブラウザ用）*/
	background: url(../images/mark1.png) no-repeat 15px center, -webkit-linear-gradient(#FFF, #dadada);	/*マーク画像とグラデーション*/
	background: url(../images/mark1.png) no-repeat 15px center, linear-gradient(#FFF, #dadada);			/*同上*/
	border-radius: 8px;	/*角丸のサイズ*/
	-webkit-box-shadow: 1px 2px 5px rgba(0,0,0,0.1);	/*影の設定。右・下・ぼかし幅・色の設定*/
	box-shadow: 1px 2px 5px rgba(0,0,0,0.1);			/*同上*/
	font-weight: bold;	/*文字を太字にする設定。通常がいいならこの１行削除。*/height: 60px;
}#menubar li a,#menubar-s li a {
text-decoration: none;
    display: block;
    margin-left: 4%;
    letter-spacing: 0.1em;
    padding: 20px 0px 10px 40px;
    border: 1px solid #bcbcbc;
    background: #FFF url(../images/mark1.png) no-repeat 15px center;
    background: url(../images/mark1.png) no-repeat 15px center, -webkit-linear-gradient(#FFF, #e4ebc7);
    background: url(../images/mark1.png) no-repeat 15px center, linear-gradient(#FFF, #e4ebc7);
    border-radius: 8px;
    -webkit-box-shadow: 1px 2px 5px rgb(0 0 0 / 10%);
    box-shadow: 1px 2px 5px rgb(0 0 0 / 10%);
    font-weight: bold;
    height: 60px;
}
/*最初のメニューの設定*/
#menubar li:first-child a {
	margin-left: 0;
}
/*マウスオン時の設定*/
#menubar li a:hover {
	background: #FFF url(../images/mark1.png) no-repeat 15px center;	/*背景色と背景画像*/
	border-radius: 8px;	/*角丸のサイズ*/
	-webkit-box-shadow: none;	/*メニューの影を消す設定*/
	box-shadow: none;			/*同上*/
	position: relative;
	left: 1px;
	top: 1px;
}
/*小さい端末用(画面幅800px以下)メニューを表示させない*/
#menubar-s {
	display: none;
}
/*３本バーアイコンを表示させない*/
#menubar_hdr {
	display: none;
}

/*コンテンツ（main,subを囲むブロック）
---------------------------------------------------------------------------*/
#contents {
	clear: left;
	padding-top: 30px;
}

/*メインコンテンツ
---------------------------------------------------------------------------*/
#main {
	float: right;	/*右側に回り込み*/
	width: 73%;	/*メインコンテンツ幅*/
	padding-bottom: 30px;
}
/*１カラム時のメインコンテンツ*/
.c1 #main {
	float: none;
	width: 100%;
}
/*mainコンテンツのh2タグの設定*/
#main h2 {
	clear: both;
	margin-bottom: 15px;
	color: #FFF;		/*文字色*/
	/*background: linear-gradient(135deg, #ff9090 0%,#ff4040 50%,#ffa561 50%,#ff1500 100%);*/
	background: linear-gradient(135deg, #4fe4b9 0%,#4fe4b9 50%,#5fc9aa 50%,#3abf98 100%);
	padding: 5px 15px;	/*左から上下、左右への余白*/
	border-radius: 8px;	/*角丸のサイズ*/
}
#main h2 {
    clear: both;
    margin-bottom: 15px;
    color: #333;
	/*background: linear-gradient(135deg, #ffe544 0%,#ffe544 50%,#ffd31f 50%,#ffe544 100%);*/
	background: linear-gradient(135deg, #4fe4b9 0%,#4fe4b9 50%,#5fc9aa 50%,#3abf98 100%);
    padding: 5px 15px;
    border-radius: 8px;
}
/*mainコンテンツのh3タグの設定*/
#main h3 {
	clear: both;
	margin-bottom: 15px;
	background: #FFF;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background: -webkit-linear-gradient(#FFF, #ededed);	/*グラデーション*/
	background: linear-gradient(#FFF, #ededed);			/*同上*/
	padding: 4px 15px;	/*上下、左右への余白*/
	border: 1px solid #bcbcbc;	/*枠線の幅、線種、色*/
	border-radius: 8px;	/*角丸のサイズ*/
}
/*mainコンテンツのh3タグの１文字目への設定*/
#main h3::first-letter {
	border-left: 3px solid #3f5497;	/*左側のアクセント用ラインの幅、線種、色*/
	padding-left: 10px;	/*アクセントラインと文字の間にとる余白*/
}
/*メインコンテンツのp(段落)タグ設定*/
#main p {
	padding: 0px 15px 14px;	/*上、左右、下への余白*/
}
#main h2 + p,
#main h3 + p {
	margin-top: -5px;
}

h4 span{
	font-size: 18px;
	background:linear-gradient(transparent 60%, #ff6 60%);
}

/*サービス紹介ページの各ブロック
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
#main .list {
	border: 1px solid #bcbcbc;	/*枠線の幅、線種、色*/
	margin-bottom: 15px;	/*ボックスの下に空ける余白*/
	background: #fff;	/*背景色（古いブラウザ用）*/
	background: -webkit-linear-gradient(#FFF, #ebebeb);	/*グラデーション*/
	background: linear-gradient(#FFF, #ebebeb);			/*同上*/
	-webkit-box-shadow: 0px 2px 5px rgba(0,0,0,0.2), 0px 0px 1px 1px #FFF inset;	/*影の設定。右・下・ぼかし幅・色(0,0,0は黒、0.2は透明度20%の事)の設定, ＋内側への影を右・下・ぼかし幅・色を設定*/
	box-shadow: 0px 2px 5px rgba(0,0,0,0.2), 0px 0px 1px 1px #FFF inset;			/*同上*/
	position: relative;
	overflow: hidden;
	border-radius: 8px;	/*角丸のサイズ*/
}
#main .list a {
	padding: 3%;	/*ボックス内の余白*/
	text-decoration: none;
	display: block;
	overflow: hidden;
}
/*マウスオン時のボックス*/
#main .list a:hover {
	background: #fff;	/*背景色*/
}
/*ボックス内の段落タグ設定*/
#main .list p {
	padding: 0px;
}
/*ボックス内の写真設定*/
#main .list figure img {
	float: left;	/*画像を左へ回り込み*/
	width: 24%;		/*写真の幅*/
	background: #FFF;	/*画像の背景色。ここでは枠線と画像の間の色になります。*/
	padding: 1%;			/*余白。ここに上の行で設定した背景色が出ます。*/
	border: 1px solid #CCC;	/*枠線の幅、線種、色*/
	margin-right: 1%;
}
/*ボックス内のh4タグ設定*/
#main .list h4 {
	margin-bottom: 15px;
	color: #3f5497;		/*文字色*/
	border-bottom: 1px solid #CCC;	/*下線の幅、線種、色*/
}
/*ボックス内のh4タグの１文字目への設定*/
#main .list h4::first-letter {
	border-left: 3px solid #3f5497;	/*左側の線の幅、線種、色*/
	padding-left: 10px;	/*線と文字との余白*/
}
/*h4タグ直下に画像がある場合の段落タグ設定*/
#main .list h4 + figure ~ p {
	margin-left: 28%;	/*左側の写真幅とのバランスをとって設定*/
}
/*h4タグ直下に画像がある場合のtableタグ設定*/
#main .list h4 + figure ~ table {
	margin-left: 28%;	/*左側の写真幅とのバランスをとって設定*/
	width: 71%;			/*テーブル幅*/
}

/*一覧ページの各物件ボックス内のテーブル
---------------------------------------------------------------------------*/
#main .list table {
	font-size: 12px;	/*文字サイズ*/
	background: #FFF;	/*背景色*/
	width: 100%;		/*テーブル幅*/
	margin-bottom: 5px;
}
#main .list table,
#main .list table td,
#main .list table th{
	border: 1px solid #bcbcbc;	/*枠線の幅、線種、色*/
}
#main .list table td,
#main .list table th{
	padding: 1%;	/*テーブル内の余白*/
}
/*色のついた見出しブロック*/
#main .list table th{
	width: 18%;		/*幅*/
	text-align: center;		/*文字をセンタリング*/
	font-weight: normal;	/*デフォルトの太字を標準にする設定*/
	background: #e6e2db;	/*背景色*/
}
/*白い説明用ブロック*/
#main .list table td {
	width: 30%;	/*幅*/
}

/*サブコンテンツ
---------------------------------------------------------------------------*/
#sub {
	float: left;	/*左側に回り込み*/
	width: 23%;	/*サブコンテンツ幅*/
	padding-bottom: 30px;
}
/*１カラム時のサブコンテンツ。非表示にする設定。*/
.c1 #sub {
	display: none;
}
/*subコンテンツ内のh2タグ設定*/
#sub h2 {
	padding: 10px;		/*ボックス内の余白*/
	/*background: linear-gradient(135deg, #ff9090 0%,#ff4040 50%,#ffa561 50%,#ff1500 100%);
	background: linear-gradient(135deg, #ffe544 0%,#ffe544 50%,#ffd31f 50%,#ffe544 100%);*/
	background: linear-gradient(135deg, #4fe4b9 0%,#4fe4b9 50%,#5fc9aa 50%,#3abf98 100%);
	color: #333;			/*文字色*/
	border-radius: 8px 8px 0px 0px;	/*左上、右上、右下、左下への角丸の指定*/
}

/*サブコンテンツ内のメニュー
---------------------------------------------------------------------------*/
/*メニュー全体の設定*/
#sub ul.submenu {
	margin-bottom: 15px;	/*メニューブロックの下に空けるスペース*/
}
/*メニュー１個ごとの設定*/
#sub ul.submenu li {
	margin-top: 1px;	/*メニュー同士の間にあけるスペース*/
}
#sub ul.submenu li a {
	text-decoration: none;
	display: block;
	padding: 2px 10px 2px 25px;	/*メニュー内の余白。上、右、下、左への設定。*/
	color: #FFF;	/*文字色*/
	transition: 0.3s;
	background: #E4EBC7 url(../images/mark3.png) no-repeat 10px center;
	color: #333;	/*背景色、背景画像（矢印）の読み込み*/
}
/*マウスオン時*/
#sub ul.submenu li a:hover {
	background: #ccc url(../images/mark3.png) no-repeat 12px center;	/*背景色、背景画像（矢印）の読み込み*/
}

/*サブコンテンツ内のbox1
---------------------------------------------------------------------------*/
#sub .box1 {
	padding: 15px;			/*ボックス内の余白*/
	margin-bottom: 15px;	/*ボックスの下に空けるスペース*/
	background: #666 url(../images/bg1.png);	/*背景色と背景画像の読み込み*/
	color: #FFF;	/*文字色*/
	border-radius: 8px;	/*角丸のサイズ*/
}
/*リンクテキスト*/
#sub .box1 a {
	color: #333;	/*文字色*/
}
/*box1内のh2見出し設定*/
#sub .box1 h2 {
	border-radius: 0px;
}
/*box1内のメニューの設定*/
#sub .box1 ul.submenu {
	margin-bottom: 0px;
}

/*フッター設定
---------------------------------------------------------------------------*/
footer {
	width: 100%;
	max-width: 1500px;	/*ブロックの最大幅。containerの数字と合わせる。*/
	margin: 0px auto 20px;
	clear: both;
	text-align: center;
	padding: 15px 0px;
	/*background: #ffa561;	背景色*/
	background: #e8eecf;	/*背景色*/
	border-radius: 8px;		/*角丸のサイズ*/
	color: #333;	/*文字色*/
}
footer .pr {
	display: block;
	font-size: 80%;
}
footer a {
	text-decoration: none;
	color: #333;	/*文字色*/
}
footer a:hover {
	color: #000;	/*文字色*/
}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#new {
	margin-bottom: 15px;
}
#new dl{
	overflow: auto;	/*高さ指定を超えるとiframe風にスクロールが出る設定。全部表示させたいならこの行と下のheightの行を削除。*/
	height: 150px;	/*ボックスの高さ*/
	padding-left: 15px;
}
/*日付設定*/
#new dt {
	font-weight: bold;	/*太字にする設定。標準がいいならこの行削除。*/
	float: left;
	width: 8em;
}
/*記事設定*/
#new dd {
	border-bottom: 1px solid #999;	/*下線の幅、線種、色*/
	padding-left: 8em;
}

/*テーブル１
---------------------------------------------------------------------------*/
.ta1 {
	width: 100%;
	margin-bottom: 15px;
	background: #fff;	/*背景色*/
}
.ta1, .ta1 td, .ta1 th{
	border: 1px solid #CCC;	/*テーブルの枠線の幅、線種、色*/
	line-height: 2;
}
.ta1 td.week{
	text-align:center;
	width: 17%;
}
/*テーブル１行目に入った見出し部分*/
.ta1 th.tamidashi{
	width: auto;
	text-align: left;
	color: #FFF;	/*文字色*/
	background: #333;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background: -webkit-linear-gradient(#4b4b4b, #333);	/*グラデーション*/
	background: linear-gradient(#4b4b4b, #333);			/*同上*/
}
/*テーブル内の左側*/
.ta1 th{
	width: 140px;
	padding: 10px;
	text-align: center;
	background: #f0f0f0;	/*背景色*/
}
/*テーブル内の右側*/
.ta1 td{
	padding: 10px;
}

/*inputボタンの設定
---------------------------------------------------------------------------*/
input[type="submit"],
input[type="button"],
input[type="reset"] {
	width: 250px;	/*ボタン幅*/
	padding: 10px;	/*ボタン内の余白*/
	margin-bottom: 20px;
	border-radius: 30px;	/*角丸のサイズ*/
	background: #e5e5e5;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background: -webkit-linear-gradient(#FFF, #e5e5e5);	/*グラデーション*/
	background: linear-gradient(#FFF, #e5e5e5);			/*同上*/
	font-size: 16px;	/*文字サイズ*/
	letter-spacing: 0.1em;	/*文字間隔を少し広くする設定*/
	border: 1px solid #999;	/*枠線の幅、線種、色*/
}
/*ボタンのマウスオン時の設定*/
input[type="submit"]:hover,
input[type="button"]:hover,
input[type="reset"]:hover {
	background: #FFF;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background: -webkit-linear-gradient(#e5e5e5, #FFF);	/*グラデーション*/
	background: linear-gradient(#e5e5e5, #FFF);			/*同上*/
}

/*PAGE TOP設定
---------------------------------------------------------------------------*/
#pagetop {
	clear: both;
}
#pagetop a {
	color: #FFF;		/*文字色*/
	font-size: 10px;	/*文字サイズ*/
	background: #333;	/*背景色*/
	text-decoration: none;
	text-align: center;
	width: 12em;	/*ボックス幅*/
	display: block;
	float: right;
	margin-right: 30px;
	letter-spacing: 0.1em;	/*文字間隔を少し広めにとる設定。*/
}
/*マウスオン時*/
#pagetop a:hover {
	background-color: #666;	/*背景色*/
	color: #FFF;			/*文字色*/
}

/*「おすすめ」表示
---------------------------------------------------------------------------*/
.osusume {
	font-size: 10px;	/*文字サイズ*/
	color: #FFF;		/*文字色*/
	background: #F00;	/*背景色*/
	text-align: center;
	display: block;
	width: 120px;
	position: absolute;
	right: 0px;
	bottom: 0px;
	-webkit-transform: rotate(-45deg) translate(37px,20px);
	-ms-transform: rotate(-45deg) translate(37px,20px);
	transform: rotate(-45deg) translate(37px,20px);
}
h2 span.osusume {
	position: static;
	-webkit-transform: none;
	-ms-transform: none;
	transform: none;
	display: inline-block;
}

/*「ご契約済」表示
---------------------------------------------------------------------------*/
.sumi {
	font-size: 10px;	/*文字サイズ*/
	color: #FFF;		/*文字色*/
	background: #069;	/*背景色*/
	text-align: center;
	display: block;
	width: 120px;
	position: absolute;
	right: 0px;
	bottom: 0px;
	-webkit-transform: rotate(-45deg) translate(37px,20px);
	-ms-transform: rotate(-45deg) translate(37px,20px);
	transform: rotate(-45deg) translate(37px,20px);
}
h2 span.sumi {
	position: static;
	-webkit-transform: none;
	-ms-transform: none;
	transform: none;
	display: inline-block;
}

/*CMS用　オプションマーク（管理ページの「オプション1」～のプルダウンと、setup.phpの「オプション選択肢」に関連します）
---------------------------------------------------------------------------*/
.option1 {
	font-size: 10px;
	color: #FFF;
	background: #F00;
	text-align: center;
	display: block;
	width: 120px;
	position: absolute;
	right: 0px;
	bottom: 0px;
	-webkit-transform: rotate(-45deg) translate(37px,10px);
	-ms-transform: rotate(-45deg) translate(37px,10px);
	transform: rotate(-45deg) translate(37px,10px);
}
h2 span.option1 {
	width: auto;
	padding: 0px 5px;
	position: static;
	-webkit-transform: none;
	-ms-transform: none;
	transform: none;
	display: inline-block;
}
.option2 {
	font-size: 10px;
	color: #FFF;
	background: #069;
	text-align: center;
	display: block;
	width: 120px;
	position: absolute;
	right: 0px;
	bottom: 0px;
	-webkit-transform: rotate(-45deg) translate(37px,10px);
	-ms-transform: rotate(-45deg) translate(37px,10px);
	transform: rotate(-45deg) translate(37px,10px);
}
h2 span.option2 {
	width: auto;
	padding: 0px 5px;
	position: static;
	-webkit-transform: none;
	-ms-transform: none;
	transform: none;
	display: inline-block;
}

/*FAQ・LINK共通設定
---------------------------------------------------------------------------*/
.faq, 
.link {
	padding: 0px 15px;
}
/*質問（又はサイト名）の設定*/
.faq dt,
.link dt {
	color: #3f5497;	/*文字色*/
	font-weight: bold;	/*太字*/
	padding-top: 15px;
}
.faq dt a,
.link dt a {
	color: #3f5497;	/*文字色*/
}
/*回答（又は説明部分）の設定*/
.faq dd,
.link dd {
	border-bottom: 1px solid #999;	/*下線の幅、線種、色*/
	overflow: hidden;
	padding-bottom: 15px;
}

/*トップページのNEWアイコン
---------------------------------------------------------------------------*/
.newicon {
	background: #F00;
	color: #FFF;
	font-size: 10px;
	padding: 0px 5px;
	border-radius: 2px;
	margin: 0px 5px;
}

/*その他
---------------------------------------------------------------------------*/
.look {background: #dcdcdc;padding:5px;border-radius: 4px;}
.mb15,.mb1em {margin-bottom: 15px;}
.clear {clear: both;}
ul.disc {padding: 0em 25px 1em;list-style: disc;}
.color1 {color: #3f5497;}
.pr {font-size: 10px;}
.wl {width: 96%;}
.ws {width: 50%;}
.c {text-align: center;}
.r {text-align: right;}
.l {text-align: left;}
img.fr {float: right;margin-left: 10px;margin-bottom: 10px;width: 30%;}
img.fl {float: left;margin-right: 10px;margin-bottom: 10px;width: 30%;}
.big1 {font-size: 30px;letter-spacing: 0.2em;}
.mini1 {font-size: 11px;}
.sh{display:none;}
.dn{display:none;}



/*画面幅1200px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:1200px){

/*コンテナーとフッター
---------------------------------------------------------------------------*/
#container,footer {
	width: auto;
	margin: 20px 3% 0;
}

}

/*画面幅800px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:800px){

/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
#header {
	height: 28.45vw;	
	margin-bottom: 20px;	
	background: url(../images/header_sp.png)no-repeat;
	background-size: cover;
}
/*ロゴ画像*/
#header #logo img {
	width: 200px;	/*画像の幅*/
	/*margin-top: 30px;	画像の上にあけるスペース*/
	margin-left: 30px;	/*画像の左にあけるスペース*/
}

/*メインメニュー
---------------------------------------------------------------------------*/
/*メニューブロック全体の設定*/
#menubar-s {
	display: block;	/*小さい端末用(画面幅800px以下)メニューを非表示から表示に切り替える*/
}
/*メニュー１個あたりの設定*/
#menubar-s li {
	width: 50%;		/*幅*/
	margin-bottom: 10px;
}
#menubar-s li:nth-child(odd) a {
	margin-left: 0;
}
/*大きな端末用(画面幅801px以上)メニューを非表示にする*/
#menubar {
	display: none;
}

/*コンテンツ（main,subを囲むブロック）
---------------------------------------------------------------------------*/
#contents {
	padding-top: 10px;
}

/*３本バーアイコン設定
---------------------------------------------------------------------------*/
/*３本バーブロック*/
#menubar_hdr {
	display: block;
	z-index: 20;
	position: absolute;
	top: 44px;	/*上から44pxの場所に配置*/
	right: 40px;	/*右から40pxの場所に配置*/
	width: 30px;	/*幅*/
	border: 1px solid #fff;	/*枠線の幅、線種、色*/
	padding: 12px 10px 5px;	/*上、左右、下へのボックス内余白*/
	background: rgba(0,0,0,.3);
}
/*３本のバー（1本あたり）*/
#menubar_hdr span {
	display: block;
	border-top: 3px solid #fff;	/*枠線の幅、線種、色*/
	margin-bottom: 7px;	/*バー同士の余白*/
}

/*main,subコンテンツ
---------------------------------------------------------------------------*/
#main, #sub {
	float: none;
	width: auto;
}

/*その他
---------------------------------------------------------------------------*/
body.s-n #sub {display: none;}

}



/*画面幅480px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:480px){

/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
#header {
height: 30vw;
	background-size: cover;
}
/*ロゴ画像*/
#header #logo img {
	width: 200px;	/*画像の幅*/
	margin-top: 0px;	/*画像の上にあけるスペース*/
	margin-left: 15px;	/*画像の左にあけるスペース*/
	margin-bottom: 15px;
}
section .flr{
	width: 30%;
}
/*上部のメインメニュー
---------------------------------------------------------------------------*/
/*メニュー１個あたりの設定*/
#menubar-s li {
	width: 100%;		/*幅*/
}
#menubar-s li a {
	margin: 0;
}

/*３本バーアイコン設定
---------------------------------------------------------------------------*/
/*３本バーブロック*/
#menubar_hdr {
	right: 25px;	/*右から25pxの場所に配置*/
}

/*一覧ページ用ボックス
---------------------------------------------------------------------------*/
/*ボックス内の段落タグ設定*/
#main .list p {
	margin-left: 0 !important;
}
/*ボックス内の写真設定*/
#main .list figure img {
	float: none;
	margin-right: 0;
	width: 100%;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	margin-bottom: 10px;
}
/*ボックス内のtable*/
#main .list table {
	margin-left: 0 !important;
	width: 100% !important;
}
/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
section#new h2.open {
	background: url(../images/btn_minus.png) no-repeat right center/34px 34px, -webkit-linear-gradient(#ffa14a, #e68429);	/*マイナスアイコンとグラデーション*/
	background: url(../images/btn_minus.png) no-repeat right center/34px 34px, linear-gradient(#ffa14a, #e68429);	/*同上*/
}
section#new h2.close {
	background: url(../images/btn_plus.png) no-repeat right center/34px 34px, -webkit-linear-gradient(#ffa14a, #e68429);		/*マイナスアイコンとグラデーション*/
	background: url(../images/btn_plus.png) no-repeat right center/34px 34px, linear-gradient(#ffa14a, #e68429);		/*同上*/
}

/*テーブル１
---------------------------------------------------------------------------*/
.ta1 {
	width: 100%;
}
/*テーブル内の左側の見出し部分*/
.ta1 th {
	width: 100px;
	padding: 2px;
}
.ta1 th img {
	width: 100%;
}
/*テーブル内の右側*/
.ta1 td {
	width: auto;
	padding: 2px;
}

/*その他
---------------------------------------------------------------------------*/
.ws,.wl {width: 95%;}

}

/* login */
#login{
	background: url(../images/login_back.jpg)top center no-repeat;
	background-size: cover;
}
#login h4{
	font-size: 1.5em;
}
#login .container{
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 0 2px rgba(0,0,0,.3);
	max-width: 800px;
	margin: 30px auto;
	box-sizing: border-box;
	padding:30px 3%;
	border: solid 2px #555;

}
#login .col-lg-4{
	max-width: 100%;
	flex:0 0  50%;
}
#login form{
	margin-top: 20px;
}
.btn-primary, .btn-primary:hover, .btn-primary:active{
	background: orange;
	border-color: orange;
}
@media screen and (max-width: 640px) {
#login{
	background-size: 150vh;
}
#login .col-lg-4{
	flex: 0 0 80%;
}
}
/*アコーディオン
---------------------------------------------------------------------------*/
.box label{
	cursor: pointer;
}
.box input{
	display:none;
}
.box .show{
	height: 0;
	padding:0;
	overflow: hidden;
	opacity: 0;
	transition: .8s;
}
.box input:checked ~ .show{
	padding:10px 0;
	height: auto;
	opacity: 1;
}
.clearfix{
	display:block;
}

button{
	background: #fff;
	margin:10px 0;
	padding:5px 10px;
	border:solid 1px #e68429;
	box-shadow: 2px 2px 0 #e68429;
	color: #e68429;
	font-weight: bold;
	font-size: 1.3em;
	cursor: pointer;
}
button:hover{
	background: #e68429;
	color: #fff;
}

/*2021 12 21 新山追記*/

.grid-container{
	display: -ms-grid;
	display: grid;
	
	-ms-grid-rows:auto 20px auto 20px auto;
	
	grid-template-rows:auto auto auto;
	
	-ms-grid-columns: 1fr 20px 1fr 20px 1fr;
	
	grid-template-columns: 1fr 1fr 1fr;
	row-gap: 20px;
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
}.grid-container > *:nth-child(1){
	-ms-grid-row: 1;
	-ms-grid-column: 1;
}.grid-container > *:nth-child(2){
	-ms-grid-row: 1;
	-ms-grid-column: 3;
}.grid-container > *:nth-child(3){
	-ms-grid-row: 1;
	-ms-grid-column: 5;
}.grid-container > *:nth-child(4){
	-ms-grid-row: 3;
	-ms-grid-column: 1;
}.grid-container > *:nth-child(5){
	-ms-grid-row: 3;
	-ms-grid-column: 3;
}.grid-container > *:nth-child(6){
	-ms-grid-row: 3;
	-ms-grid-column: 5;
}.grid-container > *:nth-child(7){
	-ms-grid-row: 5;
	-ms-grid-column: 1;
}.grid-container > *:nth-child(8){
	-ms-grid-row: 5;
	-ms-grid-column: 3;
}.grid-container > *:nth-child(9){
	-ms-grid-row: 5;
	-ms-grid-column: 5;
}

.grid-container-books{
	margin-top: 24px;
	display: -ms-grid;
	display: grid;
	
	-ms-grid-rows:auto 10px auto 10px auto 10px auto;
	
	grid-template-rows:auto auto auto auto;
	
	-ms-grid-columns: 1fr 10px 1fr 10px 1fr 10px 1fr;
	
	grid-template-columns: 1fr 1fr 1fr 1fr;
	row-gap: 10px;
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
}

.btn-wapper{
	display: -ms-grid;
	display: grid;
	
	-ms-grid-rows:auto 20px auto;
	
	grid-template-rows:auto auto auto;
	
	-ms-grid-columns: 1fr 20px 1fr;
	
	grid-template-columns: 1fr 1fr;
	row-gap: 20px;
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
	width: 100%;
	max-width: 470px;
}
.btn-wapper img{ height: 40px; width: auto;}


.center{display: block; margin: auto;}
.movie_ttl {
    color: #333;
    text-align: left;
    width: 100%;
    margin: 30px auto 0;
	margin-top: 0;
    font-size: 120%;
    padding: 10px 3%;
    /*text-shadow: 1px 1px 1px #333;*/
    box-sizing: border-box;
}

.movie_outer {
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    padding: 20px 0;
}

.movie {
	box-shadow:1px 1px 4px 1px #c6c6c5;
	-moz-box-shadow:1px 1px 4px 1px #c6c6c5;
	-webkit-box-shadow:1px 1px 4px 1px #c6c6c5;
	margin: 0 auto 0;
    position: relative;
	width: 100%;
    height: auto;
    padding-top: 56.25%;
}

.movie iframe {
	position: absolute;
    top: 0;
    right: 0;
    width: 100% !important;
    height: 100% !important;
}

.grid-container-books img{
	height: 253px;
	width: auto;
}
body #main .grid-container-books p{
	margin-top: 10px;
    font-size: 13px;
	padding: 0 5px;
}

.normal_ol li{
	list-style: auto;
}

a.normal {
    color: #2f94c5;
    text-decoration: underline;
}

h4{font-weight: bold;}

@media screen and (max-width:640px) {

.grid-container,.grid-container-books{
	display: grid;
	grid-template-rows:1fr;
	grid-template-columns: 1fr;
	row-gap: 5px;
     column-gap: 5px;
}
	
	
	
}
#main h2{
	margin-bottom: 1em;
}


#pagetop{
	position: relative;
	width: 100%;
    max-width: 1200px;
    margin: auto;
}
#pagetop button {
    position: absolute;
    background-color: #e8eecf;
    padding: 0px 15px;
    border-radius: 5px;
    top: -12px;
    z-index: 0;
    right: 161px;
    color: #333;
    font-size: 12px;
    border: none;
    box-shadow: unset;
}

ul.pagination{
	margin-top: 36px;
}

ul.pagination li {
    display: inline-block;
    padding: 2px 10px;
    background-color: #4fe4b9;
    color: #333;
}
ul.pagination li a{
	 background-color: #4fe4b9;
	color: #333;
}

ul.pagination li:hover a{
	color: #333;
	}

ul.pagination li.active {
    color: #787878;
    background-color: #d1d1d1;
}

/*pdf*/
.btn a {
	position: relative;
    background-color: #ffd31f;
    padding: 5px 25px;
    margin-top: 2em;
    display: inline-block;
    border-radius: 5px;
    font-weight: bold;
    color: #fff;
    box-shadow: 2px 2px 5px #ccc;
}

.btn a::before { /* くの字の表示設定 */
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 3px; /* ②棒が長くなった分、右へ7px移動 */
  width: 13px;
  height: 13px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: rotate(45deg);
}
 
 
.btn a::after { /* 棒の表示設定 */
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 1px;

  height: 3px;
  background: #fff;
}

.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

.y-wapper{
	width: 100%;
	max-width: 640px;
	margin-bottom: 24px;
}

#main .tokuten-title{
	font-size: 20px; 
	font-weight: bold;
	padding-left: 0;
	margin-top: 24px;
}

.tokuten-title span {
    border-radius: 10px;
    border: solid 3px #f8e264;
    padding: 0px 5px;
    margin-right: 10px;
}

.btn-wapper a{
	display: inline-block;
	margin-left: 1em;
}

li.float_list {
    float: left;
    width: 50px;
	margin-right: 10px;
	box-sizing: border-box;
	border:solid 1px #ccc;
	margin-bottom: 14px;
}
.float_list a {
    display: block;
    text-align: center;
    width: 100%;
	transition: 0.3s;
}

.float_list a:hover{
	background-color: #e8eecf;
}
