@charset "UTF-8";

/*==============================================================

	for all
	
===============================================================*/

/*--------------------------------------------------------------
	General Settings
--------------------------------------------------------------*/

#wrapper {
    position: relative;
	width: 100%;
    height: 100%;
}
#wrapper:after {
	clear: both;
	content: '';
	display: block;
	height: 0;
}


/*--------------------------------------------------------------
	フッターを画面下に固定
--------------------------------------------------------------*/
@media print, screen and (min-width: 767px) {
#wrapper {
    display: flex;
    flex-direction: column;
}
header, footer {
    flex: 0 0 auto;
}
#contents {
    flex: 1 0 auto;
}

}


/*==============================================================

	Header
	
===============================================================*/


header {
	position:relative;
    background-color: #fff;
	z-index: 10000;
}

.header_inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	height: 100%;
	max-width: 1150px;
	margin: 0px auto;
}

.HeaderNone {
	height: auto
}
.HeaderNone .header_inner {
	display: none;
}

/*	 Logo
---------------------------------------------------------------*/
header .header_inner h1 {
    display: flex;
	align-items: center;
	width:auto;
	margin: 0;
}
header .header_inner h1 a {
    display: inline-block;
	padding: 0;
	margin: 0;
}
header .header_inner h1 a img {
	max-width: 200px;
}

/*	 Groval Menu
---------------------------------------------------------------*/
.navDrawr {
	display: flex;
	flex-direction: column;
}

/*	 Menu List
---------------------------------*/
.navDrawr > ul {
	display: flex;
	margin: 0 0 0 auto;
}
.navDrawr > ul > li {
    position: relative;
	align-items: center;
	
	padding: 0;
	margin: 0;
	list-style: none;
}
.navDrawr a {
	display: flex;
	flex-direction: column;
	align-items: center;
	
	width: 100%;
	height: 100%;
    padding: 10px 15px;
	
    color: #000;
    text-decoration: none;
}
.navDrawr > ul > li > a {
    text-align: center;
	font-size: 0.9em;
	font-weight: 400;
}
.navDrawr > ul > li > a:hover {
    background: rgba(218,177,15,0.4);
}
.navDrawr > ul > li > a small {
	margin-top:auto;
	font-size: 70%;
	font-weight: 100;
	color: #ccc;
	letter-spacing: 1px;
    text-align: center;
}
.navDrawr > ul > li > a:hover small {
	color: #fff;
}

	
header {
	position:relative;
	height: 70px; /* headerの高さそろえる */
	padding:0;
	z-index: 10000;
}

body.menuOpen #wrapper{
	margin-top: 70px; /* headerの高さそろえる paddingだと下のコンテンツがずれる事があるのでmarginで指定 */
	position: fixed;/* メニュー開いたときコンテンツをスクロールさせない */
}

/*----- オープン時のレイヤー -----*/
.overlay {
	display: none;
	background-color: rgba(0,0,0,0.5);
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 10000;
}

body.menuOpen header{
	position: fixed;
	top:0;
	width: 100%;
}

/*	 Button
---------------------------------*/
.navDrawrBtn {
	position:relative;
	text-align: right;
}
.navDrawrBtn span {
	position: absolute;
	top: -20px;
	right: 0px;
	margin: auto;
	display: block;
	width: 45px;
	height: 45px;
	cursor: pointer;
}
.navDrawrBtn span::before {
	position: absolute;
	top: 0px;
	right: 0;
	width: 100%;
	
	font-family:"Line Awesome Free","Line Awesome Brands";
	content: "\f0c9";
	font-size: 40px;
	font-weight: 900;
	color: #000;
	text-align: center;
	line-height: 45px;
}
body.menuOpen .navDrawrBtn span::before {
	content: "\f00d";
}

/*	 Main Link
---------------------------------------------------------------*/
.navDrawr {
	position: fixed;
	width: 100%;
	max-width: 100%;
	right: -100%;
	top: 70px; /* headerの高さそろえる */
	bottom: 0;
	/*bottom: 0;*/
	/*
	width: 100vw; //ie,firefoxで効かない
	right: -100vw;
	*/
	overflow: auto;
	-webkit-overflow-scrolling: touch;
	background-color: rgba(0,0,0,0.5);
}
.navDrawr > ul {
    display: flex;
	flex-direction:column;
    justify-content: flex-start;
		
	width: 100%;
	max-width: 100%;
	margin: 0;
	text-align:left;
}
.navDrawr > ul > li {
	align-items: flex-start;
	
	float: none;
	width: 100%;
}
.navDrawr > ul > li > a {
	position:relative;
	align-items: flex-start;


	height: auto;
	padding: 15px 20px;
	color: #FFF;
	text-align:left;
	font-size: 1em;
	border-right: none;
	border-bottom: 1px solid rgba(255,255,255,0.5);
	background:;
}
.navDrawr > ul > li > a:after {
	display: inline-block;
	position: absolute;
	top: 50%;
	right: 15px;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	font-size: 1em;
	font-family:"Line Awesome Free","Line Awesome Brands";
	font-weight: 900;
	content: "\f105";
}
.navDrawr > ul > li > a small {
	display: none;
}


@media only screen and (max-width: 1150px) {
.header_inner {
	max-width: 90%;
}

}


/*--------------------------------------------------------------
	Billbord
--------------------------------------------------------------*/
.Billbord {
	width: 100%;
	max-width: 100%;
	height: 550px;
	padding: 0;
	margin: 0;
		
	background-image:url(../images/top/mv.jpg);
	background-position: 50% -100px;
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-size: contain;
}

.Billbord .Box {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	max-width: 1150px;
	margin: 0 auto;
}
.Billbord .rentLogo {
	display: flex;
	height: 100%;
	margin: 10px 0 0 auto;
}
.Billbord .rentLogo img {
	width: 100%;
	max-width: 300px;
	height: 0%;
	padding: 0;
	margin: 0;
}
.Billbord .Groupe {
	width: 100%;
	margin: 50px auto 0px;
	text-align:center;
}
.Billbord .Groupe .obi {
	width: auto;
	max-width: 550px;
	margin: 0 auto 15px;
	font-size: 1.8em;
	font-weight: 500;
	border-radius: 7px;
	background-color: #fff100;
}

@media only screen and (max-width: 1150px) {
.Billbord {
	height: 550px;
		
	background-position: 50% 50%;
	background-size: cover;
}
.Billbord .Box {
	max-width: 90%;
}

}

@media only screen and (max-width: 767px) {
.Billbord {
	height: 400px;
		
	background-position: 50% 50%;
	background-attachment: local;
}
.Billbord .Box {
	max-width: 80%;
}

.Billbord .rentLogo {
	margin: 10px auto;
}
.Billbord .Groupe {
	margin: 5px auto 0px;
}
.Billbord .Groupe .obi {
	max-width: 100%;
	font-size: 1.2em;
}
}

@media only screen and (max-width: 479px) {
.Billbord {
	height: 300px;
}
.Billbord .Box {
	max-width: 90%;
}


}

.TextMax {
	display: block;

	max-width: 900px;
	margin: 0 auto;
	padding: 0px 6vw;
	text-align: left;
}
.FlexText {
	display: flex;
	justify-content: center;
	padding: 0;
	text-align: left;
}


/*==============================================================

	Contents
	
===============================================================*/
#contents {
	position: relative;
	width: 100%;
	max-width: 100%;
	/*margin: 50px auto 0px;*/
	margin: 0px auto;
	/*padding-bottom: 60px;*/
	overflow: hidden;
	zoom: 1;
}

.container {
	position: relative;
	width:100%;
	max-width: 1088px;
	padding: 0px;
	margin: 0 auto;
}

.W900px {
	max-width: 900px;
	margin: 0 auto;
}


/*----- #container / #left-column 共通 -----*/
#contents .inner {
	display: flex;
	flex-wrap: wrap;
	justify-content:space-between;
	width: 100%;
	margin: 0px auto 30px;
}

#left-column {
	width: 80%;
	max-width: 830px;
	padding-bottom: 20px;
}

#left-column .innerBox {
	width: 100%;
	max-width: 95%;
	margin: 0px auto;
}

#right-column {
	width: 20%;
	max-width: 210px;
}


@media only screen and (max-width: 1100px) {
#contents {
	margin: 0px auto;
}

.container {
	max-width: 90%;
}

#contents .inner {
	max-width: 90%;
}

#left-column {
	width: 70%;
	max-width: 750px;
	padding-bottom: 20px;
}

#right-column {
	width: 30%;
	max-width: 210px;
}
}

@media only screen and (max-width: 1100px) {
#left-column,
#right-column {
	width: 100%;
	max-width: 100%;
	margin: 0 auto;
}

}

/*--------------------------------------------------------------
	all common contents
--------------------------------------------------------------*/

#contents section {
	padding: 0px;
}

/*	 Margin
---------------------------------*/
.Mt50 {
	margin-top: 50px;
}
.Mt80 {
	margin-top: 80px;
}
.Mt120 {
	margin-top: 120px;
}

.Mb50 {
	margin-bottom: 50px;
}
.Mb80 {
	margin-bottom: 80px;
}
.Mb120 {
	margin-bottom: 120px;
}

/*	 Padding
---------------------------------*/
.Pt50 {
	padding-top: 50px;
}
.Pt80 {
	padding-top: 80px;
}
.Pt120 {
	padding-top: 120px;
}

.Pb50 {
	padding-bottom: 50px;
}
.Pb80 {
	padding-bottom: 80px;
}
.Pb120 {
	padding-bottom: 120px;
}


#contents > section > p:first-of-type,
#contents > p:first-of-type,
.container > p:first-of-type,
.container > section > p:first-of-type {
	margin-bottom: 40px;
}
#contents section p {
	padding-bottom: 10px;
}

@media only screen and (max-width: 767px) {
	
/*	 Margin
---------------------------------*/
.Mt50 {
	margin-top: 30px;
}
.Mt80 {
	margin-top: 50px;
}
.Mt120 {
	margin-top: 80px;
}
	
.Mb50 {
	margin-bottom: 30px;
}
.Mb80 {
	margin-bottom: 50px;
}
.Mb120 {
	margin-bottom: 80px;
}

/*	 Padding
---------------------------------*/
.Pt50 {
	padding-top: 30px;
}
.Pt80 {
	padding-top: 50px;
}
.Pt120 {
	padding-top: 80px;
}

.Pb50 {
	padding-bottom: 30px;
}
.Pb80 {
	padding-bottom: 50px;
}
.Pb120 {
	padding-bottom: 80px;
}


#contents > section > p:first-of-type,
#contents > p:first-of-type,
.container > p:first-of-type,
.container > section > p:first-of-type {
	margin-bottom: 20px;
}
	

}
@media only screen and (max-width: 479px) {

/*	 Margin
---------------------------------*/
.Mt50 {
	margin-top: 30px;
}
.Mt80 {
	margin-top: 30px;
}
.Mt120 {
	margin-top: 50px;
}
	
.Mb50 {
	margin-bottom: 30px;
}
.Mb80 {
	margin-bottom: 30px;
}
.Mb120 {
	margin-bottom: 50px;
}

/*	 Padding
---------------------------------*/
.Pt50 {
	padding-top: 30px;
}
.Pt80 {
	padding-top: 30px;
}
.Pt120 {
	padding-top: 50px;
}

.Pb50 {
	padding-bottom: 30px;
}
.Pb80 {
	padding-bottom: 30px;
}
.Pb120 {
	padding-bottom: 50px;
}

#contents > section > p:first-of-type,
#contents > p:first-of-type,
.container > p:first-of-type,
.container > section > p:first-of-type {
	margin-bottom: 0px;
}
	
}

/*--------------------------------------------------------------
	h,1,2,3 common contents
--------------------------------------------------------------*/

/*	 h1
--------------------------------------*/
#contents h1 {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	font-size: 1.7em;
	font-weight: 500;
	padding: 5px 10px;
	margin: 0px auto 50px;
}

/*	 TOP / h1
--------------------------------------*/
#contents .anzen {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin: 0;
	padding: 0;
}
#contents .anzen:before {
	position: absolute;
	bottom: 0;
	left: 0;
	display: flex;
	width: 100%;
	height: 20px;
	content: "";
	border-top: 3px dashed #fff;
	z-index: 10;
}
#contents .anzen:after {
	position: absolute;
	bottom: 0;
	left: 0;
	display: flex;
	width: 100%;
	height: 40px;
	content: "";
	background:#d3d3d3;
	z-index: 5;
}
#contents .anzen h1 {
	margin: 0;
	padding: 0;
}
#contents .anzen h1 img {
	position: relative;
	flex-shrink: 0;
	margin: 0;
	padding: 0;
	z-index: 100;
}

@media only screen and (max-width: 767px) {
#contents .anzen:before,
#contents .anzen:after {
	display: none;
}
#contents .anzen h1 img {
	max-width: 85%;
}
}

/*	 h2
--------------------------------------*/
#contents h2 {
	display: block;
	margin: 0px auto 30px;
	padding-left: 10px;
	font-size: 1.4em;
	font-weight: 500;
	line-height: 1.2;
	border-left: 7px solid #F90;
}

/*	 h3
--------------------------------------*/
h3 {
	position: relative;
	margin: 0px auto 20px;
	font-weight: 500;
	font-size: 1.3em;
}

/*	 h4 h5
--------------------------------------*/
h4 {
	margin: 0px auto 5px;
	font-size: 1.1em;
	font-weight: 500;
}
h5 {
	font-size: 1em;
	font-weight: 500;
}

@media only screen and (max-width: 767px) {
	
/*	 h1
--------------------------------------*/
#contents h1 {
	margin: 0px auto 10px;
	font-size: 1.2em;
	line-height: 1.5;
}

/*	 h2
--------------------------------------*/
#contents h2 {
	font-size: calc( 1em + 3px);
	margin: 0px auto 20px;
	line-height: 1.5;
}

/*	 h3
--------------------------------------*/
#contents h3 {
	font-size: calc( 1em + 1px);
}

}

@media only screen and (max-width: 479px) {
	
/*	 h1
--------------------------------------*/

/*	 h2
--------------------------------------*/

/*	 h3
--------------------------------------*/


}

/*--------------------------------------------------------------
	Bread [ pankuzu ]
---------------------------------------------------------------*/

#bread {
	position: relative;
	/*top:  80px;*/
	width: 100%;
	max-width: 100%;
	padding: 0px;
	margin: 0px auto;
	background: #efefef;
	z-index: 10;
}

#bread ul {
	position: relative;
	width: 100%;
	max-width: 1150px;
	top: 0;
	left: 0;
	right: 0;
	margin: 0px auto;
	padding: 5px 0px;
	list-style-type: none;
	font-size: 13px;
}
#bread ul li {
	position:relative;
	display: inline-block;
	margin: 0px 15px 0px 3px;
	padding: 0;
	color: #666;
}
#bread ul li:before {
	display: none;
}
#bread ul li br {
	display: none;
}
	#bread ul li:after {
		display: inline-block;
		position: absolute;
		top: 55%;
		right: -5px;
		-webkit-transform: translate(100%, -50%);
		transform: translate(100%, -50%);
		font-size: 0.9em;
		font-family:"Line Awesome Free","Line Awesome Brands";
		font-weight: 900;
		content: "\f105";
	}
	#bread ul li:last-child:after {
		display:none;
	}
		
@media only screen and (max-width:1000px) {
#bread ul {
	display:block;
	max-width: 95%;
	
/*-- テキストが長いときスライドさせる --*/
	overflow-x: auto;
	overflow-y: hidden;
	-webkit-overflow-scrolling: touch;
	overflow-scrolling: touch;
	overflow: auto;
	white-space: nowrap;
}
#bread li {
	display:inline;
	flex: 0 0 40%;
}
}


/*--------------------------------------------------------------
	Category Title
---------------------------------------------------------------*/
#wrapper .CategoryTitle {
	display: flex;
	width: 100%;
	height: 120px;
	min-height: 120px;
	margin: 0px;
	line-height: 1.2;
	background-repeat:repeat;
	background-size:auto;
}

#wrapper .CategoryTitle.news {
	background-color: #345180;
}
#wrapper .CategoryTitle.about {
	background-color: #17943f;
}
#wrapper .CategoryTitle.tokuten {
	background-color: #00479d;
}
	#wrapper .CategoryTitle.tokuten.north {
		background-color:#55849e;
	}
	#wrapper .CategoryTitle.tokuten.central {
		background-color:#b8b341;
	}
	#wrapper .CategoryTitle.tokuten.south {
		background-color:#df5a5a;
	}
#wrapper .CategoryTitle.error {
	background-color: #f29c9f;
}
#wrapper .CategoryTitle div {
	display: flex;
	width: 100%;
	max-width: 1150px;
	margin: 0px auto;
}
#wrapper .CategoryTitle h1 {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 0px;
	margin: 0px;
	
	color: #fff;
	font-weight: 400;
	font-size: 2em;
	text-align: left;
	text-shadow: 
	rgba(0,0,0,0.3) 1px 1px 0, rgba(0,0,0,0.3) -1px -1px 0,/*右下、左上*/
	rgba(0,0,0,0.3) -1px 1px 0, rgba(0,0,0,0.3) 1px -1px 0,/*右上、左下*/
	rgba(0,0,0,0.3) 0px 1px 0, rgba(0,0,0,0.3)  0-1px 0,/*右、左*/
	rgba(0,0,0,0.3) -1px 0 0, rgba(0,0,0,0.3) 1px 0 0;/*上、下*/
}
#wrapper .CategoryTitle h1 small {
	font-size: 60%;
}

@media print, screen and (min-width: 767px) {
#wrapper .CategoryTitle.column {
	padding-top: 10px;
}
#wrapper .CategoryTitle.column h1,
#wrapper .CategoryTitle.dish h1 {
	display:flex;
	justify-content: center;
	width: 100%;
	max-width: 100%;
}
#wrapper .CategoryTitle.column h1 span,
#wrapper .CategoryTitle.dish h1 span {
	display: none;
}
}

@media only screen and (max-width: 1150px) {
#wrapper .CategoryTitle div {
	max-width: 90%;
}
	
}

@media only screen and (max-width: 767px) {
#wrapper .CategoryTitle {
	height: 70px;
	min-height: 70px;
}
#wrapper .CategoryTitle h1 {
	font-size: 1.3em;
}

}

/*--------------------------------------------------------------
	Box Shadow
--------------------------------------------------------------*/
.shadow {
	position:relative;
	z-index: 100;
}
.shadow:after {
	content: "";
	position:absolute;
	top: 7px;
	left: 7px;
	display:block;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.2);
	z-index: -1;
}

/*--------------------------------------------------------------
	BackGround
--------------------------------------------------------------*/


/*--------------------------------------------------------------
	TOP News
---------------------------------------------------------------*/
.news {
	width: 100%;
	margin: 0px auto 50px;
}

.news dt time {
	font-size: 100%;
}

@media print, screen and (min-width: 767px) {
	
.news dl {
	position:relative;
	display:block;
	max-width: 900px;
	margin: 0px auto 30px;
	padding:0px;
}
.news dt,
.news dd {
	padding: 15px 30px;
	margin-bottom: 10px;
}
.news dt:first-of-type,
.news dd:first-of-type {
	padding: 0px 30px 15px;
}

.news dt {
	clear:both;
	float:left;
}
.news dd {
	width: 100%;
	border-bottom: 1px dashed #111;
	text-align:left;
}
}

@media only screen and (max-width: 1160px) {
.news dl {
	max-width: 95%;
}

}
@media only screen and (max-width: 767px) {
.news dl {
	margin: 0px auto 30px;
	max-width: 95%;
	padding: 0px;
}
.news dt,
.news dd {
	padding: 0px 10px;
}
.news dt {
	margin-bottom: 5px;
	font-weight:bold;
}
.news dd {
	padding-bottom: 10px;
	margin-bottom: 10px;
	border-bottom: 1px dashed #111;
}

}

/*	 time
--------------------------------------*/
.NewsTime {
	position:relative;
	width: 100%;
	margin: 0px auto;
	text-align:right;
}
.NewsTime time {
	position: absolute;
	top: -20px;
	right: 0;
	width: auto;
	margin:0px auto;
	font-size: 80%;
}

@media only screen and (max-width: 479px) {
  .NewsTime {
	  position:relative;
	  margin: 0px auto 10px;
  }
  .NewsTime time {
	  position: relative;
	  top: -10px;
  }
}

/*--------------------------------------------------------------
	News Article
--------------------------------------------------------------*/

.newsArticle {
	display: table;
	width: 100%;
	max-width: 100%;
	padding: 0px 10px;
}
.newsArticle .txt,
.newsArticle .img {
	display: table-cell;
	vertical-align:top;
}
.newsArticle .txt {
	width:65%;
}
.newsArticle .img {
	width:35%;
	padding: 0px 0px 0px 40px;
}
.newsArticle .img img {
	width: 100%;
	max-width: 100%;
	margin: 0px auto;
	text-align:center;
	box-shadow: 0px 0px 5px rgba(0,0,0,0.5);
}

@media only screen and (max-width: 767px) {
.newsArticle {
	display: block;
}
.newsArticle .txt,
.newsArticle .img {
	display: block;
	width: 100%;
	max-width: 100%;
	padding: 0px;
}
.newsArticle .txt {
	margin-bottom: 20px;
}

.newsArticle .img {
	margin: 0px auto;
	text-align:center;
}
.newsArticle .img img {
	width: auto;
	max-width: 100%;
}
}


/*--------------------------------------------------------------
	Social Button List [ News etc ]
---------------------------------------------------------------*/
.socialBtnList {
	display:block;
}
.socialBtnList ul {
	position:relative;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
	
	width: 100%;
	max-width: 500px;
	margin: 0px auto 20px;
}
.socialBtnList ul li {
	list-style: none;
}
.socialBtnList ul li a {
	display:block;
	padding: 10px 15px 10px 45px;
	color: #fff;
	text-decoration: none;
}
.socialBtnList ul li.fb a {
	background: url(../images/common/fb.gif) no-repeat 5px 45% #3B5998;
	background-size: 30px;
}
.socialBtnList ul li.twitter a {

	background: url(../images/common/twitter.gif) no-repeat 5px 50% #1DA1F2;
	background-size: 35px;
}
.socialBtnList ul li.line a {
	background:url(../images/common/line.gif) no-repeat 5px 55% #00b900;
	background-size: 30px;
}

@media print, screen and (min-width: 479px) {
.socialBtnList ul li a:hover {
	outline: 2px solid #003388;
}

}

@media only screen and (max-width: 767px) {
.socialBtnList ul li a {
	display:block;
	padding: 10px 15px 10px 45px;
	font-size: 0.9em;
}
}

@media only screen and (max-width: 479px) {
.socialBtnList ul li a {
	padding: 5px 7px 5px 27px;
	font-size: 0.8em;
}
.socialBtnList ul li.fb a {
	background-size: 20px;
}
.socialBtnList ul li.twitter a {
	background-size: 25px;
}
.socialBtnList ul li.line a {
	background-size: 20px;
}
}

@media only screen and (max-width: 370px) {
.socialBtnList ul li a {
	font-size: 0.6em;
}
}

/*--------------------------------------------------------------
	Another News
--------------------------------------------------------------*/
.anotherNews {
	position:relative;
	width: 100%;
	max-width: 1000px;
	margin: 0px auto;
}
.anotherNews .news dl dd,
.anotherNews .recruit dl dd {
	border: none;
}
.anotherNews .recruit dl dt,
.anotherNews .recruit dl dd {
	border-bottom: none !important;
}
.anotherNews .news dl dt:nth-of-type(2n+1),
.anotherNews .news dl dd:nth-of-type(2n+1),
.anotherNews .recruit dl dt:nth-of-type(2n+1),
.anotherNews .recruit dl dd:nth-of-type(2n+1) {
	background:#e5f0cb;
}

@media only screen and (max-width: 767px) {
.anotherNews {
	max-width: 100%;
	margin: 0px auto;
}
.anotherNews .news dl,
.anotherNews .recruit dl {
	max-width: 100%;
	padding: 0px;
	margin: 0px auto;
}
.anotherNews .news dl dt,
.anotherNews .recruit dl dt {
	margin-bottom: 0px;
	padding-top: 10px;
}

}

/*--------------------------------------------------------------
	Date
--------------------------------------------------------------*/
.date {
	display: flex;
	flex-direction: column;
	align-items: center;
	
}
.date time {
	margin-bottom: 10px;
	padding: 20px;
	border-radius: 10px;
	background: red;
}
.date time img {
	width: auto;
	max-width: 100%;
}
.date .venue {
	color: #060;
	font-size: 1.3em;
	font-weight: 700;
}

@media only screen and (max-width: 767px) {
.date .venue {
	font-size: 1em;
}

}

/*--------------------------------------------------------------
	Shiori
---------------------------------------------------------------*/
.Shiori {
    display: flex;
	flex-wrap: wrap;
	width: 100%;
	max-width: 1150px;
	margin: 80px auto 0px;
}
.Shiori .box {
    display: flex;
	flex-wrap: wrap;
	align-content: flex-start;
	width: 100%;
	max-width: 100%;
	width: calc( 100% / 4 - 20px );
	margin: 0 0 50px;
}
.Shiori .box a {
	position:relative;
	display: flex;
	flex-direction: column;
	align-content: flex-start;

	width: 100%;
	height: 100%;
	padding: 0px 0px 20px;
	color: #000;
	text-decoration: none;
}

/*	 Text
--------------------------------------*/
.Shiori .txt {
	display: flex;
	justify-content: center;
	align-items: center;
	width: auto;
	margin: 10px auto 0px;
}
.Shiori .txt h3 {
	display: inline-block;
	padding: 0px !important;
	margin-bottom: 5px;
	font-size: 1em;
	margin: 0px;
	border: none;
}

/*	 Images
--------------------------------------*/
.Shiori .box .img {
	position: relative;
	overflow: hidden;
	display: flex;
	width: 100%;
	height: 100%;
	min-height: 200px;
	max-height: 200px;
	border: 1px solid #ccc;
}

.Shiori .box .img span {
	display: flex;
	width: 100%;
	height: 100%;
	background-position: 50% 50%;
	background-repeat:no-repeat;
	background-size: cover;
}


@media print, screen and (min-width: 767px) {

.Shiori .box {
	margin-left: 2.31%;
}
.Shiori .box:nth-of-type(4n+1) {
	margin-left: 0%;
}

/*	 Hover
--------------------------------------*/
.Shiori .box .img span {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	transition: 1s;
}
.Shiori .box .img span:hover {
	transform: translate(-50%, -50%) scale(1.2);
}

}

@media screen and (max-width: 1150px) {
.Shiori {
	max-width: 90%;
	margin: 50px auto 0px;
}
.Shiori .box {
	width: calc( 100% / 3 - 20px );
}

.Shiori .box,
.Shiori .box:nth-of-type(4n+1) {
	margin-left: 3%;
}
.Shiori .box:nth-of-type(3n+1) {
	margin-left: 0%;
}

}


@media screen and (max-width: 767px) {
.Shiori {
	flex-wrap: wrap;
	justify-content: space-between;
}
.Shiori .box {
	width: calc( 100% / 2 - 20px );
	margin: 0 0 20px;
}
.Shiori .box,
.Shiori .box:nth-of-type(4n+1),
.Shiori .box:nth-of-type(3n+1) {
	margin-left: 0%;
}
.Shiori .box:nth-of-type(2n+1) {
	margin-left: 0%;
}


/*	 Images
--------------------------------------*/
.Shiori .box .img {
	min-height: 130px;
	max-height: 130px;
}
/*	 Text
--------------------------------------*/
.Shiori .txt {
	margin: 10px auto 0px;
}

}

/*--------------------------------------------------------------
	Okinawa Map
---------------------------------------------------------------*/

/*	 h1
---------------------------------------------------------------*/
#contents .ShopH1 h1 {
	display: flex;
}
#contents .ShopH1 h1 span {
	position:relative;
	display: inline-block;
}
#contents .ShopH1 h1 span:before {
	position:absolute;
	top: -5px;
	left: -45px;
	font-family:"Line Awesome Free","Line Awesome Brands";
	font-weight: 900;
	font-size: 38px;
	content: "\f54f";
}
@media screen and (max-width: 767px) {
#contents .ShopH1 h1 span:before {
	top: -7px;
	left: -40px;
	font-size: 30px;
}
}

/*	 Button
---------------------------------------------------------------*/
#contents .OkinawaBtn ul {
	display: flex;
	justify-content:space-between;
	width: 100%;
	max-width: 900px;
	margin: 0 auto;
}
#contents .OkinawaBtn ul li {
	display: flex;
	width: calc( 100% / 3 - 30px );
	padding: 0;
	margin: 0 auto;
	list-style: none;
}
#contents .OkinawaBtn ul li:before {
	display: none;
}
#contents .OkinawaBtn ul li a {
	position:relative;
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 100%;
	padding: 15px 15px 50px;
	text-decoration: none;
	color: #fff;
	border-radius: 5px;
	background-color:#39C;
}
#contents .OkinawaBtn ul li.north a {
	background-color:#55849e;
}
#contents .OkinawaBtn ul li.central a {
	background-color:#b8b341;
}
#contents .OkinawaBtn ul li.south a {
	background-color:#df5a5a;
}

@media print, screen and (min-width: 767px) {
#contents .OkinawaBtn ul li a:after {
	position: absolute;
	bottom: 10px;
	left: 50%;
	display: inline-block;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	font-size: 120%;
	font-family:"Line Awesome Free","Line Awesome Brands";
	font-weight: 900;
	content: "\f061";
}
}
#contents .OkinawaBtn ul li a p {
	display: flex;
	justify-content:center;
	width: 100%;
	padding: 0;
	margin: 0;
	font-size: 2em;
}
#contents .OkinawaBtn ul li a span {
	display: flex;
	justify-content:center;
	width: 100%;
	padding: 0;
	margin: 0;
}

@media screen and (max-width: 767px) {
#contents .OkinawaBtn ul {
	flex-direction: column;
	max-width: 90%;
}
#contents .OkinawaBtn ul li {
	width: 100%;
	margin: 0 auto 30px;
}
#contents .OkinawaBtn ul li a {
	flex-direction: row;
	align-items: center;
	padding: 10px;
}

#contents .OkinawaBtn ul li a p {
	display: inline-block;
	width: auto;
	font-size: 1em;
}
#contents .OkinawaBtn ul li a span {
	display: inline-block;
	width: auto;
	font-size: 1em;
}
#contents .OkinawaBtn ul li a:after {
	position: absolute;
	top: 50%;
	right: 10px;
	display: inline-block;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	font-size: 120%;
	font-family:"Line Awesome Free","Line Awesome Brands";
	font-weight: 900;
	content: "\f061";
}

}


/*	 Map
---------------------------------------------------------------*/
#contents .OkinawaMap {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 800px;
	margin: 50px auto 0px;
}
#contents .OkinawaMap .img {
	display: flex;
	align-items: flex-start;
	width: 50%;
}
#contents .OkinawaMap .img img {
	width: 100%;
	max-width: 100%;
}
#contents .OkinawaMap .txt {
	display: flex;
	flex-direction: column;
	width: 40%;
}
#contents .OkinawaMap .txt h4 {
	display:inline-block;
	padding: 5px 20px;
	color: #fff;
	border-radius: 30px;
}
#contents .OkinawaMap .txt p {
	margin-left: 20px;
}
#contents .OkinawaMap .txt .north,
#contents .OkinawaMap .txt .central {
	margin-bottom: 50px;
}
#contents .OkinawaMap .txt .north h4 {
	background-color:#55849e;
}
#contents .OkinawaMap .txt .central h4 {
	background-color:#b8b341;
}
#contents .OkinawaMap .txt .south h4 {
	background-color:#df5a5a;
}

@media only screen and (max-width: 767px) {
#contents .OkinawaMap {
	max-width: 90%;
	margin: 0px auto 80px;
}
#contents .OkinawaMap .txt {
	position:absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	display: flex;
	flex-direction: column;
	width: 100%;
	max-width: 100%;
	height: 100%;
	font-size: 0.80em;
	box-sizing:border-box;
}

#contents .OkinawaMap .txt .north {
	position:absolute;
	top: 0;
	left: 0;
	width: 50%;
}
#contents .OkinawaMap .txt .central {
	position:absolute;
	bottom: 10vw;
	right: 0;
	width: 50%;
	text-align: right;
}
#contents .OkinawaMap .txt .south {
	position:absolute;
	bottom: 0;
	right: 10vw;
	width: 45%;
	text-align: right;
}
#contents .OkinawaMap .txt h4 {
	display:inline-block;
	padding: 0px 10px;
	color: #fff;
	border-radius: 30px;
}

#contents .OkinawaMap .txt p {
	margin-left: 0px;
	line-height: 1.2;
	font-size: 90%;
}

#contents .OkinawaMap .img {
	display: flex;
	width: 100%;
	max-width: 60%;
	margin: 0 auto;
	text-align: center;
}
}

/*--------------------------------------------------------------
	Button
---------------------------------------------------------------*/

.btnGroupe {
	display: flex;
	justify-content: space-around;
	margin: 80px auto 80px;
}
/*----- Button -----*/
.btnGroupe .btn {
	display: flex;
	width: 45%;
	max-width: 45%;
	margin: 0;
	font-size: 0.9em;
}
.btnGroupe .btn:nth-of-type(2) {
	margin: 0 0 0 auto;
}
.btnGroupe .btn a {
	position:relative;
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 100%;
	font-size: 110%;
	text-decoration: none;
	color: #000;
	border-radius: 7px;
	border: 1px solid #000;
}
.btnGroupe .prev a {
	padding: 10px 30px 10px 60px;
}
.btnGroupe .next a {
	padding: 10px 60px 10px 30px;
}

.btnGroupe .btn a:after {
	position: absolute;
	top: 50%;
	display: inline-block;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	font-size: 150%;
	font-family:"Line Awesome Free","Line Awesome Brands";
	font-weight: 900;
	content: "\f061";
}

.btnGroupe .prev a:after {
	left: 20px;
	content: "\f060";
}
.btnGroupe .next a:after {
	right: 20px;
	content: "\f061";
}

.btnGroupe .btn a small {
	display:block;
	text-align:left;
}

.btnGroupe .btn a:hover {
	color: #fff;
	border: 1px solid #00479d;
	background: #00479d;
}

@media only screen and (max-width: 850px) {

.btnGroupe .prev a {
	padding: 5px 25px 5px 30px;
}
.btnGroupe .next a {
	padding: 5px 30px 10px 25px;
}

.btnGroupe .btn a:after {
	font-size: 100%;
}
.btnGroupe .prev a:after {
	left: 10px;
}
.btnGroupe .next a:after {
	right: 10px;
}

}

@media only screen and (max-width: 767px) {
.btnGroupe {
	flex-direction: column;
}
.btnGroupe .prev {
	margin-bottom: 30px;
}

.btnGroupe .btn,
.btnGroupe .btn a {
	width: 100%;
	max-width: 100%;
}
.btnGroupe .btn:nth-of-type(2) {
	margin: 0;
}


.btnGroupe .prev a {
	padding: 5px 25px 5px 40px;
}
.btnGroupe .next a {
	padding: 5px 40px 10px 25px;
}


.btnGroupe .btn a:after {
	font-size: 150%;
}
}


/*--------------------------------------------------------------
	Anzen Unten
---------------------------------------------------------------*/
.ObiText {
	display: flex;
	justify-content: center;
	width: 100%;
	margin: 20px auto;
	padding: 10px 5%;
	background-color:#ffd728;
}
.ObiText p {
	font-weight: 700;
	text-shadow: 
		#fff 2px 0px 0px, #fff -2px 0px 0px,
		#fff 0px -2px 0px, #fff 0px 2px 0px,
		#fff 2px 2px 0px, #fff -2px 2px 0px,
		#fff 2px -2px 0px, #fff -2px -2px 0px,
		#fff 1px 2px 0px, #fff -1px 2px 0px,
		#fff 1px -2px 0px, #fff -1px -2px 0px,
		#fff 2px 1px 0px, #fff -2px 1px 0px,
		#fff 2px -1px 0px, #fff -2px -1px 0px,
		#fff 1px 1px 0px, #fff -1px 1px 0px,
		#fff 1px -1px 0px, #fff -1px -1px 0px;
}
.ObiText p span {
	margin: 0 10px;
	font-size: 200%;
	font-weight: 600;
	color: #e60012;
}

@media only screen and (max-width: 767px) {
.ObiText p {
	text-align:center;
}
.ObiText p span {
	display: block;
	font-size: 150%;
}

}

/*	 Illusut Image
---------------------------------------------------------------*/
.IllusutImage {
	display: flex;
	justify-content: center;
	width: 100%;
	max-width: 100%;
	margin: 0 auto;
	background-image: url(../images/anzen/illust.gif);
	background-position: 49% 50%;
	background-repeat: no-repeat;
	background-size: contain;
}

.IllusutImage .circleIcon span {
	display: flex;
	justify-content: center;
	align-items:  center;
	width: 120px;
	height: 120px;
	border-radius: 50%;
	text-align:center;
	color: #fff;
	line-height: 1.2;
	background-color: #F93;
}
.IllusutImage .circleIcon:nth-of-type(1) span {
	margin-right: 10px;
	background-color: #925da3;
}
.IllusutImage .circleIcon:nth-of-type(2) span {
	margin-right: 100px;
	background-color: #b16483;
}
.IllusutImage .circleIcon:nth-of-type(3) span {
	margin-left: 100px;
	background-color: #6397af;
}
.IllusutImage .circleIcon:nth-of-type(4) span {
	margin-left: 10px;
	background-color: #7075a1;
}
@media only screen and (max-width: 1150px) {
.IllusutImage {
	max-width: 90%;
}
}


@media only screen and (max-width: 767px) {
.IllusutImage {
	flex-wrap: wrap;
	justify-content: space-between;
	background-position: 43% 50%;
	background-size: 40%;
}

.IllusutImage .circleIcon {
	display: flex;
	width: 50%;
	margin-bottom: 20px;
}
.IllusutImage .circleIcon:nth-of-type(2),
.IllusutImage .circleIcon:nth-of-type(4) {
	justify-content: flex-end;
}
.IllusutImage .circleIcon:nth-of-type(1) span,
.IllusutImage .circleIcon:nth-of-type(3) span {
	margin: 0 0 auto 0;
}
.IllusutImage .circleIcon:nth-of-type(2) span,
.IllusutImage .circleIcon:nth-of-type(4) span {
	margin: 0 0 auto 0;
}

}
@media only screen and (max-width: 600px) {
.IllusutImage .circleIcon span {
	width: 85px;
	height: 85px;
	font-size: 0.8em;
}

}
/*	 Accident
---------------------------------------------------------------*/
.accident {
	position:relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	max-width: 100%;
	margin: 130px auto 100px;
	padding: 60px 5% 30px;
	background-color: #ffd728;
}
.accident:after {
	position:absolute;
	bottom: -4.9vw;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-width:  5vw 8vw 0 8vw;
	border-color: #ffd728 transparent transparent transparent;
}
.accident .ttl {
	display: flex;
	flex-direction: column;
	position:absolute;
	top: -50px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	min-width: 290px;
	padding: 5px 10px;
	
	color: #fff;
	text-align:center;
	border-radius: 10px;
	background-color:#e60012;
}
.accident .ttl span {
	display: block;
	color: #ffd728;
	font-size: 1.5em;
	text-shadow:black 2px 0px,  black -2px 0px,
				black 0px -2px, black 0px 2px,
				black 2px 2px , black -2px 2px,
				black 2px -2px, black -2px -2px,
				black 1px 2px,  black -1px 2px,
				black 1px -2px, black -1px -2px,
				black 2px 1px,  black -2px 1px,
				black 2px -1px, black -2px -1px;
}
.accident .img {
	margin-bottom: 10px;
}
.accident .txt {
	font-size: 0.9em;
}
@media only screen and (max-width: 767px) {
.accident {
	position:relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	max-width: 100%;
	margin: 80px auto 150px;
	padding: 50px 5% 0px;
	background-color: #ffd728;
}
.accident:after {
	bottom: -9.9vw;
	border-style: solid;
	border-width:  10vw 50vw 0 50vw;
}

.accident .txt {
	position:absolute;
	bottom: -130px;
	left: 5%;
	font-size: 1em;
}
}

/*	 Steps
---------------------------------------------------------------*/
#contents .steps ol {
	display: flex;
	width: 100%;
	max-width: 100%;
	margin: 0 auto;
	padding: 0;
}
#contents .steps ol li {
	display: flex;
	width: 25%;
	margin: 0;
	padding: 0;
	list-style: none;
}
#contents .steps ol li:last-child {
	width: 30%;
}
#contents .steps ol li i {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	margin: 0;
	padding: 0;
	color: #fff;
	border-radius: 50%;
	background-color: #e60012;
}
#contents .steps ol li p {
	margin: 10px 10px 10px 20px;
	padding: 0;
	font-weight: 500;
}
#contents .steps ol li span {
	display: block;
	font-weight: 600;
	font-size: 1.5em;
	color: #e60012;
}
@media only screen and (max-width: 979px) {
#contents .steps ol {
	flex-wrap: wrap;
}
#contents .steps ol li,
#contents .steps ol li:last-child {
	width: 50%;
}
}
@media only screen and (max-width: 600px) {
#contents .steps ol li,
#contents .steps ol li:last-child {
	align-items: center;
	width: 100%;
	margin-bottom: 20px;
}
#contents .steps ol li i {
	width: 40px;
	height: 40px;
}

#contents .steps ol li p {
	margin: 5px 10px 0px 20px;
	padding: 0;
	font-weight: 500;
}
#contents .steps ol li span {
	display: inline-block;
	margin-left: 15px;
	font-size: 1em;
}

}

/*--------------------------------------------------------------
	Banner List
---------------------------------------------------------------*/
.bnrList ul {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	max-width: 1150px;
	margin: 0 auto;
	padding: 0;
}
.bnrList ul li {
	display: flex;
	align-items: flex-end;
	justify-content: center;
	margin: 0;
	margin-bottom: 50px;
	padding: 0;
	list-style: none;
}

@media print, screen and (min-width: 767px) {
/*
.bnrList ul li {
	width: 23%;
	margin-left: 2.66%;
}
.bnrList ul li:nth-of-type(4n+1) {
	margin-left: 0%;
}
*/
.bnrList ul li {
	width: 30%;
	margin-left: 5%;
}
.bnrList ul li:nth-of-type(3n+1) {
	margin-left: 0%;
}
}
.bnrList ul li:before {
	display: none;
}
.bnrList ul li img {
	width: 100%;
	max-width: 100%;
}

@media only screen and (max-width: 1150px) {
.bnrList ul {
	max-width: 90%;
}
}

@media only screen and (max-width: 767px) {
.bnrList ul {
	justify-content: space-between;
}
.bnrList ul li {
	width: 48%;
}

}

@media only screen and (max-width: 479px) {
	
.bnrList ul li {
	width: 100%;
	margin-left: 0%;
	margin-bottom: 30px;
}
.bnrList.gallery ul li a {
	pointer-events: none;
}
}


/*==============================================================

	Footer
	
===============================================================*/

footer {
	position:relative;
    width: 100%;
	margin: 0px auto;
	color: #000;
	background: #e9ebf0;
}

footer #footer-inner {
	position:relative;
    display: flex;
    flex-wrap: wrap;
	align-items: center;
    justify-content: space-between;
	z-index: 100;
}
footer #footer-inner {
	width: 100%;
	max-width: 1150px;
	margin: 0 auto;
	padding: 20px 0px 20px;
}

/*--------------------------------------------------------------
	Address / text
--------------------------------------------------------------*/
footer #footer-inner address {
	width: 40%;
}

/*--------------------------------------------------------------
	Home Back
--------------------------------------------------------------*/
footer #footer-inner .homeback {
	display: flex;
	justify-content: flex-end;
	width: 60%;
	margin: 0 0 auto 0;
}
footer #footer-inner .homeback i {
	margin-right: 7px;
	font-size: 110%;
}
footer #footer-inner .homeback .m_btn_r {
	margin: 0 0 auto 0;
}
footer #footer-inner .homeback .m_btn_r:nth-of-type(2) {
	margin-left: 20px;
}


/*--------------------------------------------------------------
	Copyright
--------------------------------------------------------------*/
#copyright {
	padding: 8px;
	margin: 0 auto;
	
	font-size: 90%;
	text-align:center;
	color: #fff;
	background-color: #000;
}

@media only screen and (max-width: 1100px) {
footer #footer-inner {
	max-width: 90%;
}
}

@media only screen and (max-width: 979px) {
/*--------------------------------------------------------------
	Address / text
--------------------------------------------------------------*/
footer #footer-inner address {
	width: 100%;
	order: 2;
}
footer #footer-inner address h2 {
	display: flex;
	justify-content: center;
	width: 100%;
}

/*--------------------------------------------------------------
	Home Back
--------------------------------------------------------------*/
footer #footer-inner .homeback {
	display: flex;
	justify-content: center;
	width: 100%;
	max-width: 100%;
	order: 1;
	margin: 0 auto 20px;
}
footer #footer-inner .homeback .m_btn_r {
	display: flex;
	justify-content: center;
	margin: 0;
}


}

@media only screen and (max-width: 550px) {
footer #footer-inner .homeback {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-content: center;
}
footer #footer-inner .homeback .m_btn_r {
	margin: 0 auto 20px;
}
footer #footer-inner .homeback .m_btn_r a {
	min-width: 250px;
}
footer #footer-inner .homeback .m_btn_r:nth-of-type(2) {
	margin-left: auto;
}


#copyright {
	font-size: 0.8em;
}
}


/*--------------------------------------------------------------
	Page TOP
---------------------------------------------------------------*/

#pagetop {
	right: 2%;
}
@media only screen and (max-width: 1000px) {
#pagetop {
	right: 10px;
}
}

.pagetop {
	position: fixed;
	bottom: 10px;

	height: 0;
	opacity: 0;
	overflow: hidden;
	animation-duration: 1s;
	z-index: 1000;
}

.pagetop .top {
	position:relative;
	right: 0px;
	display: block;
	padding: 35px;
	text-decoration: none;
	border-radius: 50%;
	background: rgba(0,0,0,0.7);
	cursor:pointer;
}
.pagetop .top:before {
	content: "";
	position: absolute;
	top: 40%;
	left: 50%;
	display: block;
	width: auto;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	
	position: absolute;
	width: 20px;
	height: 20px;
	margin-left: -10px;
	border: 0px;
	border-top: 2px solid rgba(255,255,255,1);
	border-right: 2px solid rgba(255,255,255,1);
	-ms-transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.pagetop.show {
	height: auto;
	opacity: 1;
	animation-name: fadein;
}
.pagetop.hide {
	height: 0;
	opacity: 0;
	animation-name: fadeout;
}
.pagetop.static {
	position: absolute;
	bottom: auto;
	margin: -70px 0 0;
}

@media only screen and (max-width: 767px) {
.pagetop.static {
	margin:  -50px 0 0;
}

.pagetop .top:before {
	width: 15px;
	height: 15px;
	margin-left: -8px;
}

}

@keyframes fadein {
  0% {
	height: 0;
	opacity: 0;
  }
  1% {
	height: auto;
	opacity: 0;
  }
  100% {
	opacity: 1;
  }
}
@keyframes fadeout {
  0% {
	height: auto;
	opacity: 1;
  }
  99% {
	height: auto;
	opacity: 0;
  }
  100% {
	height: 0;
  }
}


@media only screen and (max-width: 767px) {
.pagetop .top {
	padding: 20px;
}
}

@media print {
	
#pagetop {
	display: none;
}

}