@charset "utf-8";


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

/*全体の設定
---------------------------------------------------------------------------*/
/* ↓レイアウト↓ */

*{
    line-height:150%;
}

.base{
    margin:0 auto;
    max-width:1000px;
}

body {
	margin: 0px;
	padding: 0px;
	-webkit-text-size-adjust: none;
	color: #000;	/*全体の文字色*/
	font-family: 'MS PGothic', sans-serif;	/*フォント種類*/
	font-size: 14px;	/*文字サイズ*/
	line-height: 2;		/*行間*/
	background: #fff;	/*背景色*/
}
h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,form,figure,form,select,input,textarea {margin: 0px;padding: 0px;font-size: 100%;font-weight: normal;}
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;}
iframe {width: 100%;}

/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
	color: #000;	/*リンクテキストの色*/
	transition: 0.3s;	/*マウスオン時の移り変わるまでの時間設定。0.3秒。*/
	text-decoration: underline;
	border: 1;
}
a:hover {
	color: #86f9c5;	/*マウスオン時の文字色*/
}

/*コンテナー（ホームページを囲む一番外側のブロック）
---------------------------------------------------------------------------*/
#container {
	max-width: 1400px;	/*ブロックの最大幅*/
	margin: 0 auto;
	padding: 0 3%;
}

/*ヘッダー（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*headerブロック*/
header {
	text-align: center;	/*内容を中央よせ*/
}
/*ロゴ画像設定*/
#logo img {
	width: 906px;	/*画像幅*/
	margin: 40px auto 40px;	/*ロゴの上と下に40pxスペースを空ける設定*/
}

/*トップページのメイン画像
---------------------------------------------------------------------------*/
/*画像ブロック*/
#mainimg img {
	width: 906px;	/*画像幅*/
	border-radius: 10px;	/*角を丸くする指定。この１行を削除すれば角丸がなくなります。*/
	margin-bottom: 40px;	/*下に空けるスペース*/
}

/*コンテンツ（見出しバーや文字などが入っているブロック）
---------------------------------------------------------------------------*/
/*コンテンツのh2タグの設定*/
#contents h2 {
	clear: both;
	font-weight:bold; 
	margin-bottom: 20px;
	color: #fff;		/*文字色*/
	padding: 10px 20px;	/*上下、左右への余白*/
	background: #FF97C2;	/*背景色*/
	border-radius: 10px;	/*角を丸くする指定。この１行を削除すれば角丸がなくなります。*/
}
/*コンテンツのh3タグの設定*/
#contents h3 {
	text-align: center;
	clear: both;
	margin-bottom: 20px;
	padding: 8px 20px;	/*上下、左右への余白*/
	background: #fff;	/*背景色*/
	border: 1px solid #FF97C2;	/*枠線の幅、線種、色*/
	border-radius: 10px;	/*角を丸くする指定。この１行を削除すれば角丸がなくなります。*/
}
/*コンテンツのh4タグの設定*/
#contents h4 {
	font-size:14px;
	font-weight:bold;
	margin:20px 0px;
	border-color:#FF97C2;
	border-style:double;
	border-width:3px 0px;
	padding:3px;
	text-align:center;
	background: #FFFFFF;	/*背景色*/
}
/*コンテンツのp(段落)タグ設定*/
#contents p {
	padding: 0px 20px 20px;	/*上、左右、下への余白*/
}
/*他。微調整。*/
#contents p + p {
	margin-top: -5px;
}
#contents h2 + p,
#contents h3 + p {
	margin-top: -10px;
}
#contents section + section {
	margin-top: 30px;
}

/*Galleryページ
---------------------------------------------------------------------------*/
/*各ブロックごとの設定*/
.list {
	overflow: hidden;
	border-bottom: 1px solid #000;	/*下線の幅、線種、色*/
	padding: 20px;	/*ボックス内の余白*/
}
/*h4見出しの設定*/
.list h4 {
	color: #000000f;	/*文字色*/
}
/*画像の設定*/
.list img {
	width: 20%;			/*画像幅*/
	float: left;		/*画像を左に回り込み*/
	margin-right: 3%	/*画像の右側に空けるスペース*/
}
/*段落タグ*/
.list p {
	padding: 0 !important;
}

/*ページトップに戻る
---------------------------------------------------------------------------*/
.pagetop{
    position: fixed;
    bottom: 10px;
    right: 14px;
}
 
.pagetop a{
    display: block;
    text-decoration: none;
}
 
.pagetop:hover{
    opacity: 0.7 ;
}

/*フッター(ページ最下部のcopyrightのパーツ)設定
---------------------------------------------------------------------------*/
footer {
	clear: both;
	text-align: center;	/*文字をセンタリング*/
	padding: 30px 0px 10px;	/*上、左右、下へのボックス内の余白*/
	color: #000000;	/*文字色*/
}
footer a {
	color: #000000;	/*リンクテキストの色*/
	text-decoration: none;
	border: none;
}
footer .pr {
	display: block;
}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#new dl {
	padding: 0px 0px;	/*上下、左右へのブロック内の余白*/
	margin-bottom: 20px;	/*ブロックの下(外側)に空ける余白*/
	border: 1px solid #000;	/*テーブルの枠線の幅、線種、色*/
}
/*日付設定*/
#new dt {
	font-weight: bold;	/*太字にする設定。標準がいいならこの行削除。*/
	float: center;
	width: 15em;
	border: 1px solid #000;	/*テーブルの枠線の幅、線種、色*/
}
/*記事設定*/
#new dd {
	padding-left: 20em;
}

/*テーブル
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta1 caption {
	border: 0px solid #000;	/*テーブルの枠線の幅、線種、色*/
	border-bottom: none;	/*下線だけ消す*/
	text-align: center;		/*文字を左寄せ*/
	background: #FFF;		/*背景色*/
	font-weight: normal;		/*太字にしない*/
	padding: 10px;			/*ボックス内の余白*/
}
/*テーブル１行目に入った見出し部分（※tamidashi）*/
.ta1 th.tamidashi {
	width: auto;
	text-align: center;	/*中よせ*/
	background: #FFF;	/*背景色*/
}
/*ta1テーブルブロック設定*/
.ta1 {
	width: 100%;
}
.ta1, .ta1 td, .ta1 th {
	word-break: keep-all;
	border: 0px solid #000;	/*テーブルの枠線の幅、線種、色*/
	padding: 5px;			/*テーブル内の余白*/
}
/*テーブルの左側ボックス*/
.ta1 th {
	text-align: center;	/*センタリング*/
        width: 50px;
}
/*テーブルのボックス*/
.ta1 td {
	text-align: center;	/*センタリング*/
        width: 33%;
}
/*ta2テーブルブロック設定*/
.ta2 {
    margin-left: auto;
    margin-right: auto;
}
/*テーブルの左側ボックス*/
.ta2 th {
	text-align: center;	/*センタリング*/
        width: 50%;
}
/*テーブルのボックス*/
.ta2 td {
	word-break: keep-all;
	text-align: left;	/*左*/
}

/*ta3テーブルブロック設定*/
.ta3 {
	margin-left: auto;
	margin-right: auto;
}
/*テーブルのボックス*/
.ta3 tr {
        width: 100%;
}
.ta3 td {
	word-break: break-word;
	text-align: center;	/*センタリング*/
}

/*メニュー画像設定*/
.resizeimage img { 
        width: 100%;
}

/*table-hover テーブルブロック設定*/
.table-hover {
    margin-left: auto;
    margin-right: auto;
}
.d-none {
	display: block;
}

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

/*iframe
---------------------------------------------------------------------------*/
.schedule iframe{
    position:absolute;
    top:0;
    left:0;
    height:100%;
    width:100%;
}

#schedule-iframe{
  overflow:scroll;
  -webkit-overflow-scrolling:touch;
  border:solid 0px;
}

.iframe{
  transform:scale(0.9);
  -moz-transform:scale(0.9);
  -webkit-transform:scale(0.9);
  -o-transform:scale(0.9);
  -ms-transform:scale(0.9);
  transform-origin:0 0;
  -moz-transform-origin:0 0;
  -webkit-transform-origin:0 0;
  -o-transform-origin:0 0;
  -ms-transform-origin:0 0;
  border:solid 0px;
  margin-bottom:-90px;
  margin-right:0%;
  width:110%;
}

/*スマホでのみ改行　(PCで無効)
---------------------------------------------------------------------------*/
.pc_none{
    display: none;
}

/*スマートフォンで有効*/
@media screen and (max-width:580px) {
    .pc_none{
        display: block;
    }
}

/*ボタンリンク
---------------------------------------------------------------------------*/
btn-flat-border{
  text-align: center;
}
.button {
  display: inline-block;
  padding: 0.3em 1em;
  text-decoration: none;
  color: #FFFFFF;
  border: solid 2px #FF97C2;
  border-radius: 3px;
  transition: .4s;
  background: #FF97C2;
  font-weight:bold;
}

.button:hover {
  background: #FFFFFF;
  color: #FF97C2;
}


/*その他
---------------------------------------------------------------------------*/
.look {background: #FF97C2;padding: 5px 10px;border-radius: 4px;}
.mb15,.mb1em {margin-bottom: 15px;}
.color1 {color: #FF97C2;}
.pr {font-size: 12px;}
.wl {width: 96%;}
.ws {width: 50%;}
.c {text-align: center;}
.r {text-align: right;}
.l {text-align: left;}



/*画面幅580px以下の設定 (「スマホ580px / タブレット960px」)
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:580px){

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

/*メニュー
---------------------------------------------------------------------------*/
/*メニュー１個あたりの設定*/
#menubar li {
	font-size: 14px;		/*文字サイズ*/
	display: inline;	/*縦並びにする設定*/
	margin-bottom: 10px;
}
#menubar li a {
	text-decoration: none;
	padding: 0px 15px;	/*各メニュー内の余白。*/
}

/*テーブル
---------------------------------------------------------------------------*/
/*table-hover テーブルブロック設定*/
.table-hover {
    margin-left: auto;
    margin-right: auto;
}
.d-none {
	display: none;
}

/*iframe
---------------------------------------------------------------------------*/
.schedule iframe{
    position:absolute;
    top:0;
    left:0;
    height:930px;
    width:100%;
}

#schedule-iframe{
  overflow:auto;
  -webkit-overflow-scrolling:touch;
  border:solid 0px;
}

.iframe{
  transform:scale(0.6, 0.9);
  -moz-transform:scale(0.6, 0.9);
  -webkit-transform:scale(0.6, 0.9);
  -o-transform:scale(0.6, 0.9);
  -ms-transform:scale(0.6, 0.9);
  transform-origin:0 0;
  -moz-transform-origin:0 0;
  -webkit-transform-origin:0 0;
  -o-transform-origin:0 0;
  -ms-transform-origin:0 0;
  border:solid 0px;
  margin-top:0px;
  margin-bottom:-110px;
  margin-right:0%;
  width:170%;
  padding: calc(580 / 960 * 0%) 0 0;
}

/*Galleryページ
---------------------------------------------------------------------------*/
/*各ブロックごとの設定*/
.list {
	padding: 10px;	/*ボックス内の余白*/
}

/*その他
---------------------------------------------------------------------------*/
.ws,.wl {width: 94%;}

}
