@charset "UTF-8";

/*Web Font*/
@font-face {
	font-family: "flopdesign-kana";
	src: url("./Font/FLOPFONT-free/flopdesign-kana.eot");
	src: url("./Font/FLOPFONT-free/flopdesign-kana.eot?#iefix") format("embedded-opentype"),
	url("./Font/FLOPFONT-free/flopdesign-kana.woff") format("woff"),
	url("./Font/FLOPFONT-free/flopdesign-kana.ttf") format("truetype");
}

/*IE8以下でHTML5を使用する。*/
article,aside,canvas,details,figcaption,figure,footer,header,hgroup,menu,nav,section,summary {display:block;}

/*IE--BRバグ回避*/
br {
	letter-spacing: normal;
}

/*pタグ空白消去*/
p {
	margin: 0px;
	padding: 0px;
}

img {
	border: none;
	vertical-align: top;
}

/*普通のテキストリンク-----------------*/
a:link { /*メニュー・テキストリンクの色*/
	text-decoration: none;
	color: darkSlategray;
}
a:visited { /*メニュー・訪問済みのリンクの色*/
	text-decoration: none;
	color: darkSlategray;
}
a:active { /*メニュー・クリック時のリンクの色*/
	text-decoration: none;
	color: #CCCCCC;
}
a:hover {/*メニュー・マウス上にカーソルがある時のリンク色*/
	text-decoration: none;
	color: #FF69B4;
}

/*メニュータブ*/
.side-menu-button {
	display: block;
	position: fixed;
	cursor: pointer;
}

.side-menu-button p{
	color: darkSlategray;
	padding: 3px;
	border: 1px solid darkSlategray;
	background-color: #EEF0EF;
	-moz-transform:    rotate( 90deg );  /* Firefox用 */
	-webkit-transform: rotate( 90deg );  /* Chrome,Safari,新しいOpera用 */
	-o-transform:      rotate( 90deg );  /* 古いOpera用 */
	-ms-transform:     rotate( 90deg );  /* IE用 */
	transform:         rotate( 90deg );  /* CSS3の書き方 */
	-moz-transform-origin: left bottom;
	-webkit-transform-origin: left bottom;
	-o-transform-origin: left bottom;
	-ms-transform-origin: left bottom;
	transform-origin: left bottom;
	-moz-border-top-right-radius: 10px;
	-webkit-border-top-right-radius: 10px;
	border-top-right-radius: 10px;
	-moz-border-top-left-radius: 10px;
	-webkit-border-top-left-radius: 10px;
	border-top-left-radius: 10px;
}

/*bodyページ全体の設定*/
body {
	background-color: #E5E5DE; /*全体の背景色-----------------*/
	font-family: 'Noto Sans JP', sans-serif; /* goole fonts */
	color: darkSlategray;
	margin: 30px 0px;
}

#wrapper {
	width: 98%;
	margin: 0 auto;
	padding: 0;
	text-align: left;
}

#hd {
	position: relative;
	margin: 0px;
	width: 100%;
	height: 100%;
	padding: 22% 0 0;
	background-color: #FF69B4;
        -moz-border-top-left-radius: 5px;
	-moz-border-top-right-radius: 5px;
	-webkit-border-top-left-radius: 5px;
	-webkit-border-top-right-radius: 5px;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	border: none;
}

#hd .hd-inner {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url(../img/rotator/rotator.php);
	background-position: right bottom;
	background-repeat: no-repeat;
	-moz-background-size: 98% auto;
	background-size: 98% auto;
	-moz-border-top-left-radius: 5px;
	-webkit-border-top-left-radius: 5px;
	border-top-left-radius: 5px;
	-moz-border-top-right-radius: 5px;
	-webkit-border-top-right-radius: 5px;
	border-top-right-radius: 5px;
	border: none;
	text-align: right;
	z-index: 1;
}

@media only screen and (min-width: 800px) {
  /* 画面幅が800px以上の場合の縦横比の指定 */
	.side-menu-button {
            display: none;
        }
	#wrapper {
		width: 70%;
	}
}

header h1 {
	font-size: 80%;
    margin-top: 0px;
    margin-bottom: 0px;
    padding-top: 0px;
    padding-bottom: 0px;
	padding: 0px 10px 0px 0px;
}

header h2 {
	color: #FF69B4;
	font-size: 80%;
	padding: 0px 10px 0px 0px;
}

header img {
	height: 30%;
	position: absolute;
	right: 10px;
	bottom: 0px;
	display: none
}

/*headerのロゴをマウスオーバーで回転させる*/
header img {
	-webkit-transition: 500ms ease-in-out;
	-moz-transition: 500ms ease-in-out;
	-ms-transition: 500ms ease-in-out;
	-o-transition: 500ms ease-in-out;
	transition: 500ms ease-in-out;
}
header img:hover {
	-webkit-transform: rotate(360deg);
	-moz-transform: rotate(360deg);
	-ms-transform: rotate(360deg);
	-o-transform: rotate(360deg);
	transform: rotate(360deg);
}

/*mainの横並び設定　Flexbox使用*/
#main {
  display: -webkit-flex;
  display: flex;
}

.contents {
  -webkit-flex: 3;
  flex: 3;
}

/*side menuの設定*/
.side {
	width: 20%;
	min-width: 180px;
	margin: 0px;
	padding: 10px;
	font-weight: bold;
	background-color: #EEF0EF; /*----背景色-----#EEF0EF*/
	background-image: url(../img/001.gif);
}

@media only screen and (max-width: 800px) {
  /* 画面幅が800px以下の場合メニュー非表示 */
    .modal-base {
		position: absolute;
		top: 0;
		z-index: 1;
		width: 100%;
		background-color: #0007;
		display: none;
	}
 	.side-menu-button {
 		z-index: 2;
 	}
 	.side {
 		width: 50%;
 		z-index: 2;
 		position: absolute;
		top: 0;
		height: 500px;
		overflow: auto;
 		display: none;
 	}
 	.contents {
 		position: relative;
 		width: 98%;
 	}
 	.side.fixed {
    position: fixed;
	  left: 1%;
	  bottom: 0;
  }
}

/*リスト空白消去*/
.side ul, .side li {
	margin: 0px;
	padding: 0px;
	list-style: none;
}

/*メニューのカテゴリ名部分-----------------*/
.menu li{
	display: block;
	padding: 20px 8px;
	font-size: 110%; /*----文字サイズ-----*/
	text-align: center;
	cursor: pointer;
}

.midashi {
	background-color: #5F9EA0; /*----背景色-----*/
	color: #ffffff; /*----文字色-----*/
}

.naiyo1, .naiyo2, .naiyo3, .naiyo4, .naiyo5 {
	border-bottom: 1px #999999 dotted;
}

.midashi:hover {
	background-color: #FF69B4;
}

.naiyo1:hover {
	background-color: #F15C22;
}

.naiyo2:hover {
	background-color: #FFD800;
}

.naiyo3:hover {
	background-color: #509B49;
}

.naiyo4:hover {
	background-color: #00ADEF;
}

.naiyo5:hover {
	background-color: #894891;
}

/*ツイッターウィジェットの設定*/
.tweet {
	display: flex;
	justify-content: space-around;
	-webkit-justify-content: space-around;
	padding: 15px 0px 8px 0px;
	border-bottom: 1px #999999 dotted;
}

.contact {
	padding: 15px 8px;
	display: -webkit-flex;
	display: flex;
	justify-content: space-around;
    -webkit-justify-content: space-around;
    border-bottom: 1px #999999 dotted;
}

.ml {
	height: 36px;
	width: 36px;
}

.baner {
	padding: 15px 0px;
}

.baner img {
	width: 100%;
	padding-bottom: 1px;
}

.baexaler1 {
	display: none;
}

.basabasupo {
	display: none;
}

.baasp {
	display: none;
}

.contents {
	padding: 0px 20px;
	background-color: #EEF0EF;
}

footer {
	margin: 0px;
	padding: 0px;
	background-color: #00ADEF;
	-moz-border-bottom-left-radius: 5px;
	-moz-border-bottom-right-radius: 5px;
	-webkit-border-bottom-left-radius: 5px;
	-webkit-border-bottom-right-radius: 5px;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
	border: none;
}

footer p {
	text-align: right;
	font-size: 80%;
	padding: 10px 10px 10px 0px;
	font-weight: bold;
}
