@charset "utf-8";
* {
	box-sizing: border-box;
}
:root {
 --main-light-color: #c5e5dd;
 --main-middle-color:#c5e5dd;
 --main-heavy-color: #006b3c;
}
body {
	/*font-family: 游ゴシック体, YuGothic, "游ゴシック Medium", "Yu Gothic Medium", 游ゴシック, "Yu Gothic", sans-serif;*/
	font-family: 'BIZ UDGothic', sans-serif;
	font-size: 1em;
	line-height: 1.5;
	margin: 0;
	padding: 0;
	color: #000;
}
/* ~~ エレメント / タグセレクター ~~ */
ul, ol, dl { /* ブラウザー間の相違により、リストの余白とマージンをゼロにすることをお勧めします。一貫性を保つために、量をここで指定するか、リストに含まれるリスト項目 (LI、DT、DD) で指定できます。より詳細なセレクターを記述しない限り、ここで指定する内容が .nav リストにも適用されることに注意してください。 */
	padding: 0;
	margin: 0;
	list-style: none;
	z-index: 1;
	position: relative;
}
h1, h2, h3, h4, h5, h6, p {
	margin: 0;	 /* 上マージンを削除すると、マージンを含む div からマージンがはみ出す場合があるという問題を回避できます。残った下マージンにより、後続のエレメントからは離されます。 */
	z-index: 1;
	position: relative;
}
h1 {
	color: #006b3c;
}
a img { /* このセレクターは、一部のブラウザーでイメージをリンクで囲んだ場合にイメージの周囲に表示される初期設定の青いボーダーを削除します。 */
	border: none;
	max-width: 100%;
}
/* ~~ サイトのリンクのスタイル付けは、ホバー効果を作成するセレクターグループも含め、この順序にする必要があります。~~ */
a:link {
	text-decoration: none; /* 非常に特殊な表示方法でリンクをスタイル付けする場合を除き、一目で見分けられるように下線を指定することをお勧めします。 */
	color: #006b3c;
}
a:visited {
	text-decoration: none;
	color: #006b3c;
}
a:hover, a:active, a:focus { /* このセレクターグループは、キーボードを使用するユーザーに対し、マウスを使用するユーザーと同じホバー効果を提供します。 */
	text-decoration: none;
	opacity: 0.7;
}
.dg {
	color: #006b3c;
}
.fa-phone:before {
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	font-size: 1em;
	content: "\f095";
	font-style: normal;
	display: inline-block;
	transform: scaleX(-1);
	margin-right: 10px;
}
/* ~~ このコンテナが他のすべての div を囲み、パーセンテージに基づいた幅を指定します。~~ */
.container {
	width: 80%;
	background-color: transparent;
	margin: 0 auto; /* 幅に加え、両側を自動値とすることで、レイアウトが中央に揃います。.container の幅を 100% に設定した場合、これは必要ありません。 */
}
/* ~~ ヘッダーには幅は指定されません。ヘッダーはレイアウトの幅全体まで広がります。ヘッダーには、ユーザー独自のリンクされたロゴに置き換えられるイメージプレースホルダーが含まれます。~~ */
.header {
	padding: 20px;
	display: flex;
}
.logo {
	width: 15%;
	float: left;
}
.harea {
	float: right;
	align-items: center;
	line-height: 1.1;
	padding-right: 100px;
}
.tel {
	font-size: 1.5em;
	font-weight: bolder;
}
.small {
	font-size: 0.7em;
}
.sidebar {
	position: fixed;
	/*left: 0;*/
	top: 0;
	right: -300px;
	background: rgba(0,0,0,0.7);
	width: 300px;
	height: 100%;
	transition: all 0.5s;
	z-index: 1000;
}
.sidebar ul a {
	display: block;
	/*aタグはインライン要素なので、ブロック要素に変更*/
	height: 100%;
	width: 100%;
	line-height: 65px;
	/*paddingでもおけ*/
	color: white;
	padding-left: 40px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	border-bottom: 1px solid black;
	transition: 0.4s;/*ホバー時のトランジション*/
}
.sidebar ul a i {
	margin-right: 16px;
}
/*トグルセクション*/
#check {
	display: none;
}
label #btn, label #cancel {
	/*position: fixed;
	cursor: pointer;*/
	position:relative;
	background:#c5e5dd;
	color: #fff;
	border-radius: 3px;
	padding: 15px 20px;
	font-size: 50px;
	transition: all 0.5s;
	z-index: 10000;
}

.menulabel{
position: fixed;
    right: 0;
    top: 0;
	z-index:10000;
}

label #cancel {
	opacity: 0;
}
#check:checked~.sidebar {
	right: 0;
}
#check:checked~label #btn {
	right: 0;
	opacity: 1;
	pointer-events: none;
}

#check:checked~label .fa-bars:before{
    content: "\f00d";
}

/*#check:checked~label #cancel {
	right: 0;
	opacity: 1;
}*/
#check:checked~section {
	margin-right: 250px;
}
section {
	height: 100vh;
	background: url("./bg.jpg");
	background-size: cover;
	background-position: center;
	transition: all 0.5s;
}
#nav {
	display: none;
	width: 30%;
	height: 100%;
	position: fixed;
	right: 0;
	padding: 10px;
	color: #fff;
	justify-content: space-evenly;
	top: 0;
	background-color: rgba(0,0,0,0.7);
}
#nav li {
	padding: 10px;
	filter: drop-shadow(2px 2px 0px #FFF);
	font-size: 1.2em;
	font-weight: bolder;
}
#nav2 {
	display: flex;
	flex-wrap: wrap;
	width: 40%;
	float: left;
	margin: 10px auto;
	color: #006b3c;
	justify-content: space-evenly;
}
#nav2 li {
	padding: 5px;
	font-size: 0.9em;
	font-weight: bolder;
	white-space: nowrap;
}
.nav {
	display: flex;
	width: 80%;
	margin: 10px auto;
	color: #006b3c;
	justify-content: space-evenly;
}
.nav li {
	padding: 10px;
	filter: drop-shadow(2px 2px 0px #FFF);
	font-size: 1.2em;
	font-weight: bolder;
}
.eye {
    position: relative;

}

.slick{
  width: 100%;
  height: 100%;
  position:relative;
}

.slick img {
  width: 100%;
  object-fit: cover;
}

.eye .etext {
	position: absolute;
	top: 5%;
    left: 5%;
	line-height: 1.5em;
	font-size: 1.5em;
	font-weight: bold;
	font-family: "游明朝体", "Yu Mincho", YuMincho;
	/*background-color: rgba(255,255,255,0.3);*/
	display: inline;
}
.eyeline {
	background: linear-gradient(transparent 0%, #fff 100%);
	/*-webkit-text-stroke: 1px #FFF;
	text-stroke: 1px #FFF;
	color:#333;*/
	filter: drop-shadow(2px 2px 0px #FFF);
}
.eyeimg {
	width: 100%;
}
.eyetb {
	position: absolute;
	bottom: 2%;
	left: 2%;/*transform:translateX(-50%);*/
}
.eyetb td {
	background-color: rgba(255,255,255,0.6);
}
.mv_feature {
	position: absolute;
	right: 0%;
	bottom: 3%;
	font-size: 1em;
	line-height: 1.5;
	display: flex;
	width: 400px;
	flex-wrap: wrap;
}
.mv_feature li {
	display: flex;
	justify-content: center;
	align-items: center;
	background: #e08276;
	color: #fff;
	text-align: center;
	/*transform: rotate(45deg);*/
	width: 49%;
	padding: 15px 10px;
}
.mv_feature li p {
/*transform: rotate(-45deg);*/
}
.mv_feature li:first-child {
	/*margin: 0 0 0 99px;*/
	background: rgba(131,181,70,0.8);
}
.mv_feature li:nth-child(2) {
	background: rgba(255,153,24,0.8);
}
.mv_feature li:nth-child(3) {
	/*margin: -20px 0 0;*/
	background: rgba(255,153,24,0.8);
}
.mv_feature li:nth-child(4) {
	background: rgba(131,181,70,0.8);
}
.newswrap {
	position: absolute;
	right: 3%;
	bottom: 3%;
	font-size: 1em;
	line-height: 1.5;
	display: flex;
	width: 600px;
	flex-wrap: wrap;
	background-color: rgba(255,255,255,0.7);
}
.newswrap .newshead {
	background-color: #c5e5dd;
	font-weight: bolder;
	text-align: center;
	width: 100%;
	padding: 10px;
}
.newswrap ul {
	height: 200px;
	overflow-y: scroll;
	width: 100%;
}
.newswrap ul li {
	padding: 5px;	
}

.newswrap2 {
	/*position: absolute;
	right: 3%;
	bottom: 3%;*/
	font-size: 1em;
	line-height: 1.5;
	margin:20px;
	/*display: flex;
	width: 600px;
	flex-wrap: wrap;*/
	background-color: rgba(255,255,255,0.7);
}
.newswrap2 .newshead {
	background-color: #c5e5dd;
	font-weight: bolder;
	text-align: center;
	width: 100%;
	padding: 10px;
}
.newswrap2 ul {
	height: 200px;
	overflow-y: scroll;
	width: 100%;
}
.newswrap2 ul li {
	padding: 5px;
	border-bottom:1px solid #999;
	
}

/* ~~ これはレイアウト情報です。~~ 

1) 余白は、div の上部または下部にのみ配置されます。この div 内のエレメントには、それ自体に余白があるので、ボックスモデル計算を行う必要がありません。ただし、div 自体に両側の余白やボーダーを指定した場合、その値が加算されたものが合計幅になることに注意してください。div 内のエレメントの余白を削除し、さらにその div 内に、全体のデザインに必要な幅や余白を指定していない 2 つ目の div を追加することもできます。

*/
.content {
	overflow-x: unset;
	width: 100%;
}
/* ~~ このセレクターグループは、.content 内のリストに領域間隔を指定します。~~ */
.content ul, .content ol {
	padding: 15px; /* この余白は、上述の見出しと段落ルールの右の余白を表します。下の余白はリスト内の他のエレメントとの間隔用に配置され、左の余白はインデント作成用に配置されています。これは必要に応じて調整できます。 */
}
/* ~~ フッター ~~ */
.footer {
	padding: 10px 0;
	position: relative;
}
.footer:after {
	content: "";
	border: 1px solid #c5e5dd;
	/*border-radius: 69% 31% 66% 34% / 31% 50% 50% 69%;*/
	border-radius: 69% 31% 0% 0% / 31% 50% 0% 0%;
	background-image: linear-gradient(12deg, rgba(237, 243, 209, 1) 38%, rgba(210, 231, 175, 1) 66%);
	width: 100%;
	height: 500px;
	opacity: 0.2;
	z-index: 0;
	overflow: hidden;
	position: absolute;
	bottom: 0;
}
.footer .nav {
	margin-top: 20px;
	display: flex;
	width: 100%;
	flex-wrap: wrap;
	color: #006b3c;
}
.footer .nav li {
	width: calc(100%/8);
	text-align: center;
	font-size: 0.8em;
	font-weight: bolder;
}
.hbtn {
	border: 3px solid #c5e5dd;
	border-radius: 10px;
	padding: 10px 15px;
	margin-left: 5px;
	display: inline-block;
	color: #000;
	background-color: rgba(255,255,255,0.7);
}
h2 {
	border: 1px solid #c5e5dd;
	border-radius: 69% 31% 66% 34% / 31% 50% 50% 69%;
	background-image: linear-gradient(180deg, rgba(198, 231, 222, 1) 39%, rgba(255, 244, 209, 1) 76%);
	width: fit-content;
	padding: 30px 20px;
	margin-top:2em;
	margin-bottom:1em;
}
.h2back {
	display: flex;
	align-items: center;
}
.h2back:before, .h2back:after {
	content: "";
	height: 1px;
	flex-grow: 1;
	background-color: #c5e5dd;
	margin-top:2em;
	margin-bottom:1em;
}
.h2back:before {
	margin-right: 1rem;
}
.h2back:after {
	margin-left: 1rem;
}
h2:before {
	left: -100%;
}
h2:after {
	right: 0%;
}
.news li {
	border-bottom: 1px solid #c5e5dd;
	padding: 15px 10px;
	position: relative;
	font-size: 1.2em;
}
.news li:last-child {
	border-bottom: none;
}
.news li:after {
	content: "▶";
	color: #c5e5dd;
	text-align: right;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 5%;
}
.toph3 {
	color: #006b3c;
	font-weight: bolder;
	font-size: 1.5em;
	position: relative;
	width: fit-content;
	border-left: none;
}
.toph3:after {
	position: absolute;
	content: "";
	right: 0;
	top: 10%;
	width: 3px;
	height: 200%;
	background: #c5e5dd;
	border-radius: 3px;
	transform: rotate(45deg);
}
.prof {
	width: 80%;
	margin: 15px auto;
}
.profflex {
	display: flex;
	justify-content: center;
	align-items: center;
}
.back {
	background-image: url(../images/back.png);
	background-repeat: repeat;
	background-size: cover;
	background-position: right;
	padding-bottom: 50px;
}
.profflex img {
	width: 30%;
}
.profflex div {
	width: 70%;
	font-size: 1em;
	position: relative;
	padding: 10px;
}
/*.profflex div:after {
	content: "";
	position: absolute;
	bottom: 5%;
	right: 0;
	background: #c5e5dd;
	height: 1px;
	width: 120%;
}*/
.profflex2 {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 50px;
}
/*.profflex2 img {
	width: 60%;
}*/
.profflex2 div {
	width: 40%;
	font-size: 1.5em;
	text-align: right;
	position: relative;
}
.profflex2 div:after {
	content: "";
	position: absolute;
	bottom: 0;
	right: 0;
	background: #c5e5dd;
	height: 1px;
	width: 120%;
}
/* ~~ その他の float/clear クラス ~~ */
.fltrt {  /* このクラスを使用すると、ページ内でエレメントを右にフローティングさせることができます。フローティングさせるエレメントは、ページ内で横に並べて表示するエレメントの前に指定する必要があります。 */
	float: right;
	margin-left: 8px;
}
.fltlft { /* このクラスを使用すると、ページ内でエレメントを左にフローティングさせることができます。フローティングさせるエレメントは、ページ内で横に並べて表示するエレメントの前に指定する必要があります。 */
	float: left;
	margin-right: 8px;
}
.clear { /* このクラスは、#footer が #container から削除されているか取り出されている場合に、<br /> または空の div で、フローティングさせる最後の div に続く最後のエレメントとして (#container 内に) 配置できます。 */
	clear: both;
	height: 0;
	font-size: 1px;
	line-height: 0px;
}
.clearsp {
	clear: both;
	height: 0;
	font-size: 1px;
	line-height: 0px;
	display: none;
}
.sp {
	display: none;
}
.pc {
	display: block;
}
.bcdiv {
	position: relative;
}
.bc1 {
	border: 1px solid #c5e5dd;
	border-radius: 69% 0% 0% 60% / 31% 0% 0% 69%;
	background-image: linear-gradient(12deg, rgba(237, 243, 209, 1) 38%, rgba(210, 231, 175, 1) 66%);
	width: 100%;
	height: 1000px;
	position: absolute;
	opacity: 0.2;
	z-index: 0;
	overflow: hidden;
	right: -20%;
}
.bc2 {
	border: 1px solid #c5e5dd;
	border-radius: 0% 61% 66% 0% / 0% 50% 50% 0%;
	background-image: linear-gradient(12deg, rgba(237, 243, 209, 1) 38%, rgba(210, 231, 175, 1) 66%);
	width: 100%;
	height: 1000px;
	position: absolute;
	opacity: 0.2;
	z-index: 0;
	overflow: hidden;
	left: -60px;
	transform: translateY(-40%);
	top: 3px;
}
.bc3 {
	border: 1px solid #c5e5dd;
	/*border-radius: 69% 31% 66% 34% / 31% 50% 50% 69%;*/
	border-radius: 69% 31% 0% 0% / 31% 50% 0% 0%;
	background-image: linear-gradient(12deg, rgba(237, 243, 209, 1) 38%, rgba(210, 231, 175, 1) 66%);
	width: 100%;
	height: 500px;
	opacity: 0.2;
	z-index: 0;
	overflow: hidden;
	transform: translateY(-50%);
	position: absolute;
	top: 0;
}
/*.flex img {
	width: calc(100%/4);
	padding: 20px;
}*/
.fflex {
	display: flex;
	flex-wrap: wrap;
}
.fflex .fbox {
	width: 50%;
	padding: 20px 5px;
	z-index: 1;
	position: relative;
	display: flex;
	align-items:center;
}
.fflex .fbox img {
	width: 30%;
	float: left;
	padding-right: 5px;
	padding-bottom: 5px;
}

.fflex .fbox:last-child{
	text-align:center;
	}

.fbox .inqr{
	/*text-align:right;
	display: block;
	position:absolute;
	right:0;
	bottom:0;*/
	float: right;
	}

h4 {
	color: #006b3c;
	position: relative;
	z-index: 1;
}
.flow {
	margin-bottom: 50px;
	position: relative;
	z-index: 111;
}
.flowl{
	width:50%;
	/*float:left;*/}

.flowr{
	/*float:right;*/}
.flow2 {
	margin-bottom: 50px;
	margin-top: 50px;
	position: relative;
	z-index: 111;
}

.flow h4:before,.flow2 h4:before {
	content: "";
	background-color: #c5e5dd;
	border-radius: 50px;
	width: 70px;
	height: 70px;
	display: block;
	position: absolute;
	top: -25px;
	;
	left: 0;
	z-index: -100;
}


.case {
	border-top: 5px solid #c5e5dd;
	border-bottom: 5px solid #c5e5dd;
	margin: 30px auto;
	padding: 40px 30px;
	background-color: CCC;
}
.case li {
	padding: 10px;
	border-bottom: 1px dashed #c5e5dd;
}
.case li:before {
	content: "●";
	color: #c5e5dd;
	margin-right: 5px;
}
.big {
	font-size: 1.2em;
}

.drop{
	filter: drop-shadow(2px 2px 0px #FFF);
	}

.indent{
	padding-left:2em;
	text-indent:-1.5em;
	}

.lg {
	color: #006b3c;
}
.mg {
	color: #006b3c;
}
.line {
	border-top: 1px solid #c5e5dd;
	clear: both;
	margin: 50px;
	height: 0;
	font-size: 1px;
}
.line2 {
	border-top: 1px dotted #c5e5dd;
	clear: both;
	margin: 25px;
	height: 0;
	font-size: 1px;
}
.wline {
	text-align: center;
	margin: 50px auto;
	padding: 30px 0;
	border-top: 1px solid #000;
	border-bottom: 1px solid #000;
}
.flex {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}
.inqflex {
	display: flex;
	justify-content: center;
	align-items: center;
}
.inqflex p {
	text-align: center;
}
.center {
	text-align: center;
	margin: 10px auto;
}
.acflex {
	display: flex;
	flex-wrap: wrap;
}

.acflex img{
	max-width:100%;
	}

.acflex div {
	width: 40%;
	padding: 10px;
}
.acflex iframe {
	width: 60%;
	border: 3px solid #c5e5dd!important;
	border-radius: 10px;
	z-index: 1;
}
.inqr {
	border: 3px solid #c5e5dd!important;
	background-color: #FFF;
	font-size: 1.2em;
	border-radius: 10px;
	padding: 5px 10px;
	margin: 10px 0px;
	z-index: 1;
	color: #000;
	width: fit-content;
	position: relative;
}
.copy {
	text-align: center;
	background-color: #333;
	color: #fff;
	font-size: 0.7em;
	padding: 10px 0;
}
#menubtn {
	display: block;
	background-color: #006b3c;
	padding: 15px;
	z-index: 100000000;
	position: fixed;
	top: 0;
	right: 0;
	border: none;
	font-weight: bolder;
	font-size: 1.2em;
	color: #fff;
	box-shadow: 0 2px 4px rgb(0 0 0 / 30%);
	transition: .3s;
	width: 100px;
}
.subh2 {
	text-align: left;
	/*background-color: #006b3c;*/
	background-color:#c5e5dd;
	color: #000;
	background-image: none;
	border-radius: 5px;
	width: 100%;
	padding: 10px;
}
table {
	width: 95%;
	margin: 10px auto;
	border-collapse: collapse;
}
table th, table td {
	/*border: 1px solid #c5e5dd;*/
	border:1px solid #999;
	padding: 15px;
}
table th {
	background-color: #c5e5dd;
}


h3 {
	border-left: 10px solid #006b3c;
	margin-top: 15px;
}
.q:before {
	content: "Ｑ";
	color: #006b3c;
	font-size: 2em;
	padding-right: 10px;
	width: 80%;
	margin: 0 auto;
}
.a:before {
	content: "Ａ";
	color: #F90;
	font-size: 2em;
	padding-right: 10px;
	margin: 0 auto;
}
.red {
	color: #F30;
}
.mini {
	width: 60%;
}
.mini th, .mini td {
	text-align: center;
}
.flowpc {
	width: 60%;
	margin: 0 auto;
}
.middle {
	display: block;
}
#page-top {
	position: fixed;
	bottom: 3%;
	right: 20px;
	font-size: 14px;
	line-height: 1;
	z-index: 99;
	opacity: 0;
}
#page-top a {
	background: #c5e5dd;
	text-decoration: none;
	color: #fff;
	width: 100px;
	padding: 22px 5px;
	text-align: center;
	display: block;
	border-radius: 90px;
	opacity: 0.9;
	transition: all .3s ease;
	z-index:10000;
}
.l-toc {
	position: relative;
	background: #F4F4F4;
	border: 2px solid #999;
	width: 60%;
	margin: 1em auto;
}
.l-toc ul li{
	margin-bottom:5px;
	}

.inq span,.inq strong{
	font-size:0.8em;
	}

.route{
	display:flex;
	flex-wrap:wrap;
	}

.route div{
	width:calc(100%/3);
	padding:5px;
	text-align:center;
	}

.route div img{
	max-width:100%;
	}

 @media screen and (max-width: 1500px) and (min-width: 769px) {
/*.eye{
	height:65vh;
	}*/

/*.eye img{
	width:40%;}*/

.profflex div:after {
	bottom: 0;
}
/*.eye .etext {
	top: 50%;
	left: 10%;
	line-height: 2em;
	font-size: 1.2em;
}*/

.nav {
	width: 90%;
}

}
 @media screen and (max-width: 1000px) and (min-width: 600px) {
.middle {
	display: none!important;
}
.time {
	display: block;
}
}
 @media screen and (max-width: 768px) {
.header {
	display: block;
	position:relative;
}
.logo {
	width: 60%;
	float: none;
	display: block;
}
.harea {
	display: none;
}
.eye .etext {
	top:auto;
	left:auto;
	bottom:3%;
	right:1%;
	font-size:1em;
}
.middle {
	display: none!important;
}
.sp {
	display: block;
}
.pc {
	display: none;
}
.container {
	width: 100%;
}
.content {
	width: 95%;
	margin: 0 auto;
}
#menubtn {
	display: block;
	background-color: #006b3c;
	padding: 15px;
	z-index: 1000;
	border: none;
	font-weight: bolder;
	font-size: 1.2em;
	color: #fff;
	box-shadow: 0 2px 4px rgb(0 0 0 / 30%);
	transition: .3s;
	width: 100%;
}
#nav2 {
	display: none;
	width: 95%;
	margin: 20px auto;
	text-align: center;
}
.mv_feature {
	justify-content: center;
	width: 70%;
	font-size: 14px;
	margin: auto;
	right: 50%;
	transform: translateX(50%);
	bottom: -150px;
	top: auto;
}
.eye {
	/*margin-bottom: 100px;
	background-position: center center;
	height: 70vh;*/
}
.mv_feature li {
	width: 50%;
}
/*.eye{
	height:30vh;
	background-position:top center;
	background-size: contain;}*/

.bc1 {
	right: -2.5%;
}
.bc2 {
	left: -2.5%;
}
.news li:after {
	display: none;
}
.profflex {
	display: block;
}
.profflex img {
	width: 100%;
}
.profflex div {
	width: 100%;
	padding: 5px
}
.profflex div:after {
	bottom: 0;
}
.profflex2 img {
	width: 50%;
}
.profflex2 div {
	width: 50%;
	font-size: 1em;
}
.big {
	font-size: 1.2em;
}
.acflex {
	display: block;
}
.acflex div, .acflex iframe {
	width: 100%;
}
.footer .nav li {
	width: 50%;
	padding-bottom: 5px;
}
.mini {
	width: 100%;
	margin: 0 auto;
}
.flex {
	display: block;
}

.fflex .fbox {
	padding: 0px;
	width: 100%;
	margin-bottom: 20px;
}
.flow, .flow2 {
	width: 100%;
}

.flowr,.flowl{
	width:100%;
}

.flex .flow:nth-child(even) {
	top: 0;
}
.flex img {
	width: 50%;
}
.newswrap {
	position:relative;
	right:auto;
	width:95%;
	margin:auto;
}

.newswrap ul{
	height:100%;
	}

.clearsp {
	clear: both;
	height: 0;
	font-size: 1px;
	line-height: 0px;
	display: block;
}
table th, table td {
	padding: 10px;
}
}
 @media screen and (max-width: 500px) {
.newswrap {
	width: 100%;
	right: 0;
}

.route{
	display:block;
	}

.route div{
	width:100%;
	padding:5px;
	}

.big {
	font-size: 1.1em;
}

.profflex2 div{
	text-align:left;}
	
table th, table td {
    padding: 5px;
}

.inqflex {
	display:block;
	}

.inqr{
	margin:10px auto;}

}
