/*--------------------------------------------------------------------------
   body
---------------------------------------------------------------------------*/
body{
	margin: 0;
	color: #333;
	list-style: none;
	font-size: 16px;
	font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
	font-weight: 500;
	line-height: 1.5;
}
body a:link{
	color: #333;
}
body a,
body a:hover{
	text-decoration: none;
}
/*   header
---------------------------------------------------------------------------*/
header{
	position:relative;
	top:0;
	left:0;
	z-index:3;
	position: fixed;
	max-width: 100%;
	width:100%;
	background:#FFF;
	box-shadow: 0 -10px 10px 10px rgba(0, 0, 0, 0.2);
	border-bottom: rgba(255,255,255,.3) 1px solid;
}
header>div{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
header>div>div{
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	height: 60px;
	padding: 4px 0;
}
.head-logo img {
	width: 150px;
}
/*   nav
---------------------------------------------------------------------------*/
/* メインメニュー開閉 */
#panel-btn{
	display: inline-block;
	position: relative;
	width: 44px;
	height: 44px;
}
#panel-btn-icon{
	display: block;
	position: absolute;
	top: 43%;
	left: 30%;
	width: 30px;
	height: 3px;
	margin: 3px 0 0 -7px;
	background: #57c2e7;
	transition: .2s;
}
#panel-btn-icon:before, #panel-btn-icon:after{
	display: block;
	content: "";
	position: absolute;
	top: 43%;
	left: 0;
	width: 30px;
	height: 3px;
	background: #57c2e7;
	transition: .3s;
}
#panel-btn-icon:before{
	margin-top: -10px;
}
#panel-btn-icon:after{
	margin-top: 8px;
}
#panel-btn .close{
	background: transparent;
}
#panel-btn .close:before, #panel-btn .close:after{
	margin-top: 0;
}
#panel-btn .close:before{
	transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
}
#panel-btn .close:after{
	transform: rotate(-135deg);
	-webkit-transform: rotate(-135deg);
}
/*引用ここまで*/
#gnav-wrap{
	display:none;
	width:100%;
	position:fixed;
	z-index:2;
	margin: 0 auto;
	font-size: 14px;
	top: 68px;
	left: 0;
}
#gnav-wrap li{
	background: #fff;
	margin: auto 0;
	padding-left: 20px;
	white-space: nowrap;
}
#gnav-wrap li:not(:last-of-type){
	border-bottom: #eee 2px solid;
}
#gnav-wrap a,
#gnav-wrap a:link{
	color: #333;
}
#gnav-wrap a{
	display: block;
	position: relative;
	height: 60px;
	width: 100%;
	line-height: 60px;
}
#gnav-wrap li:hover {
	background: #57c2e7;
	transition: .3s;
}
#gnav-wrap a:hover,
#gnav-wrap a:link:hover {
	color: #fff;
	transition: .3s;
}
#gnav-wrap li.is-active {
	background: #57c2e7;
}
#gnav-wrap li.is-active a {
	color: #fff;
}
/*   topmainimg
---------------------------------------------------------------------------*/
#topmain{
	margin-top: 70px;
	width: 100%;
	height: 300px;
	position: relative;
	//background: url("../images/main02-sp.png") left bottom / cover no-repeat;
}
#topmain img{
	//width: 100%;
	//height: 300px;
	//object-fit: cover;
	//font-family: 'object-fit: cover;';
}
.main_img {
	width: 100%;
	height: 300px;
	opacity: 1;
	position: absolute;
	bottom: 0;
	left: 0;
	background-size:cover !important;
	background-position: left bottom !important;
	background-repeat: no-repeat no-repeat !important;
	margin: 0;
}
.main_img img {
	opacity: 0;
}
#topmain .slick-dots{
	bottom: -35px;
}
#topmain .slick-dots li button::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 9px;
	height: 9px;
	content: '';
	text-align: center;
	background-color: #57c2e7;
	border-radius: 50%;
}

.line-deco {
	width: 100%;
	height: 35px;
	margin: 0;
	padding: 0;
	background: #fff;
}

/*   contents
---------------------------------------------------------------------------*/
.wrap{
	width: 100%;
}
.inner{
	max-width: 900px;
	width: 100%;
	padding: 0 20px;
	margin-left: auto;
	margin-right: auto;
	box-sizing: border-box;
}
.inner-top-li{
	width: 100%;
	padding: 0;
	margin-left: auto;
	margin-right: auto;
}
/*   section
---------------------------------------------------------------------------*/
section{
	margin: 60px 0;
	margin-top: 0px;
}
.sec_box{
	display: flex;
}
/* 画像メニュー */
.top-li {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	box-shadow: none;
}
.top-li > .item {
	width: 100%;
}
.top-li .img-box {
	overflow: hidden;
}

.top-li .img-box img {
	width: 100%;
	height: auto;
	display: block;
	margin: 0 auto;
	transition: .3s;
}
.top-li p.linktxt-box {
	width: 100%;
	height: 55px;
	padding-top: 25px;
	position: relative;
	text-align: center;
}
.top-li p.linktxt-box::after {
	position: absolute;
	content: "";
	width: 8px;
	height: 8px;
	top: 32px;
	border-top: solid 1px #333;
	border-right: solid 1px #333;
	-ms-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
.item > a {
	display: block;
	color: #333;
}
.item > a:hover .img-box img {
	transform: scale(1.1);
	opacity: 0.8;
	transition: .3s;
}
.item > a:hover .linktxt-box {
	color: #57c2e7;
	transition: .3s;
}
.item > a:hover .linktxt-box::after {
	border-top: solid 1px #57c2e7;
	border-right: solid 1px #57c2e7;
	transition: .3s;
}
/* 画像メニュースライダー */
.slide-arrow {
	width: 20px;
	height: 40px;
	opacity: 0.8;
}
.slide-arrow img {
	width: 100%;
}
.prev-arrow {
	position: absolute;
	bottom: 120px;
	left: 0px;
}
.next-arrow {
	position: absolute;
	bottom: 120px;
	right: 0px;
}
.top-li p.linktxt-box::after {
	position: absolute;
	content: "";
	width: 8px;
	height: 8px;
	top: 32px;
	right: 60px;
	border-top: solid 1px #333;
	border-right: solid 1px #333;
	-ms-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
.shadow-wrap {
	width: 100%;
	box-shadow: 0px 5px 6px -1px rgba(221,221,221,0.3);
  -webkit-box-shadow: 0px 5px 6px -1px rgba(221,221,221,0.3);
  -moz-box-shadow: 0px 5px 6px -1px rgba(221,221,221,0.3);
}


/* お知らせ */
.news {
	flex-direction: column;
	}
.sec_ttl{
	font-size: 20px;
	color: #00A4C5;
	line-height: 1;
	margin: 0;
	padding-bottom: 30px;
	border-bottom: 1px solid #89C2D1;
	z-index: 1;
}
.news-li {
	margin: 0 0 30px 0;
	padding-top: 30px;
	//border-top: 1px solid #ddd;
	//border-bottom: 1px solid #ddd;
}
.news-li ul li {
	margin-bottom: 20px;
}
.news-li ul li:last-child {
	margin-bottom: 0px;
}
.news-li ul li a {
	display: block;
}
.news-day {
	color: #333;
	font-size: 14px;
}
.news-content {
	text-decoration: underline;
	color: #004FA2;
	font-size: 16px;
}
.news-li ul li a:hover div {
	//text-decoration: underline;
}
.news-li ul li a:hover div.news-content {
	text-decoration: none;
	color: #57c2e7;
	transition: .3s;
}

.view-more {
	text-align: right;
	font-size: 0.9em;
}
.view-more a{
	display: block;
	margin: 30px 0 0 0;
	width:105px;
	position: relative;
}
.view-more a,
.view-more a:link{
	text-decoration: underline;
	color: #1f2678;
}
.view-more a::after {
	position: absolute;
	content: "";
	width: 8px;
	height: 8px;
	top: 5px;
	left: 0px;
	border-top: solid 1px #1f2678;
	border-right: solid 1px #1f2678;
	-ms-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
.view-more a:hover {
	text-decoration: none;
	color: #57c2e7;
	transition: .3s;
}
.view-more a:hover::after {
	border-top: solid 1px #57c2e7;
	border-right: solid 1px #57c2e7;
	-ms-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
		transition: .3s;
}
/* 所在・フッター */
section.location-li {
	margin: 0 auto;
	padding-top: 60px;
	padding-bottom: 30px;
	text-align: center;
}
.location-li p {
	margin-top: 20px;
}
.location-li > div + div {
	margin: 0px auto;
	margin-top: 20px;
	max-width: 200px;
}
.location-li > div + div img {
	max-width: 200px;
}
footer{
	width: 100%;
	background: #fff;
	font-size: 13px;
}
footer p {
	padding: 20px 0;
	text-align: center;
}

/* サイトマップフッター・追加記載分 */
.site_list {
	margin: 0 auto;
}
.site_list_item {
	padding: 20px 0;
}
.site_list_item.u-pc-p20 {
	padding-top: 0;
}
.site_list_ttl {
	font-size: 16px;
	font-weight: bold;
	padding-bottom: 8px;
	border-bottom: 1px solid #57c2e7;
}
.site_list_item dd {
	padding-left: 1em;
	padding-top: 8px;
	font-size: 14px;
}
.site_list_item dd span {
	position: relative;
}
.site_list_item dd span::after {
	position: absolute;
	content: "";
	width: 6px;
	height: 6px;
	top: 5px;
	left: -16px;
	border-top: solid 1px #1f2678;
	border-right: solid 1px #1f2678;
	-ms-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
.site_list_item dd + dt {
	margin-top: 10px;
}
.site_list_item dt a,
.site_list_item dd a {
	color: #333;
	display: inline-block;
}
.site_list_item dt a:hover,
.site_list_item dd a:hover {
	text-decoration: underline;
	color: #57c2e7;
	transition: .3s;
}
.mark {
	padding: 20px 0;
	text-align: center;
}
.mark img {
	max-width: 200px;
}

.sp-none {
	display: none;
}
.pc-none {
	display: block;
	height: 0;
}

#btn-top{
	width: 50px;
	height: 50px;
	position: fixed;
	right: 10px;
	bottom: 63px;
	background: #57C2E7;
	opacity: 0.6;
	border-radius: 50%;
	z-index: 1;
}
#btn-top a{
	position: relative;
	display: block;
	width: 50px;
	height: 50px;
	text-decoration: none;
}
#btn-top a::before{
	content: 'TOP';
	color: #fff;
	position: absolute;
	width: 25px;
	height: 25px;
	top: 10px;
	bottom: 0;
	right: 16px;
	margin: auto;
	text-align: center;
}
#btn-top a::after{
	content: '';
	color: #fff;
	position: absolute;
	width: 10px;
	height: 10px;
	top: -15px;
	bottom: 0;
	right: 18px;
	margin: auto;
	transform:rotate(45deg);
	border-left: #fff 2px solid;
	border-top: #fff 2px solid;
}
#btn-top:hover {
	opacity: 0.5;
	transition: .3s;
}


@media screen and (min-width: 750px) {
/*   header
---------------------------------------------------------------------------*/
header{
	max-width: 100%;
	position: static;
	background: #fff;
	box-shadow: 0 -10px 10px 10px rgba(0, 0, 0, 0.2);
	overflow: hidden;
	border-bottom: none;
	position: relative;
}
header>div{
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}
header>div>div{
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	height: 60px;
	padding: 0;
}
.head-logo {
	width: 240px;
	height: auto;
	padding-left: 20px;
}
.head-logo img {
	width: 100%;
}
/*   nav
---------------------------------------------------------------------------*/
/* メインメニュー */
#gnav-wrap{
	width:100%;
	position:static;
	display:block !important;
	margin: 0 auto;
	font-size: 14px;
}
#gnav-wrap ul{
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	align-items: flex-end;
	height: 129px;
	text-align: center;
}
#gnav-wrap li{
	margin: 0;
	margin-bottom: -3px;
	padding: 0;
	padding-left:24px;
	border-top: 2px solid #fff;
	//width:100px;
	background: transparent;
}
#gnav-wrap li:not(:last-of-type){
	border-bottom: none;
}
#gnav-wrap a,
#gnav-wrap a:link{
	color: #333;
}
/*#gnav-wrap a{
	height: 93px;
	line-height: 120px;
	border-bottom: 3px solid #fff;
	transition: .3s;
}*/
#gnav-wrap a{
	display: block;
	height: 59px;
	width: 100%;
	line-height: 63px;
	border-bottom: 5px solid #fff;
	transition: .3s;
}
#gnav-wrap li:hover {
	background: transparent;
}
#gnav-wrap a:hover,
#gnav-wrap a:link:hover {
	color: #57c2e7;
	border-bottom: 5px solid #57c2e7;
	transition: .3s;
}
#gnav-btn{
	display: none;
}
@media all and (-ms-high-contrast: none) {
header>div,
header>div>div,
#gnav-wrap ul{
	min-width: 0;
}
}
#gnav-wrap li.is-active {
	background: transparent;
}
#gnav-wrap li.is-active a {
	color: #57c2e7;
}
/*   topmainimg
---------------------------------------------------------------------------*/
#topmain{
	margin-top: 0px;
	width: 100%;
	height: 400px;
	//background: url("../images/main02.png") left center / cover no-repeat;
}
#topmain img{
	//width: 100%;
	//height: 400px;
	//object-fit: cover;
}
.main_img {
	//width: 100%;
	height: 400px;
	background-position: left center !important;
	//object-fit: cover;
}
/*   contents
---------------------------------------------------------------------------*/
.wrap{
	width: 100%;
}
.inner{
	padding: 0 40px;
}
.inner-head{
	padding: 0;
}

/*   section
---------------------------------------------------------------------------*/
section{
	margin: 60px 0;
}
.sec_box{
	display: flex;
}

/* 画像メニュー */

.inner-top-li {
	margin-top: 0;
	max-width: 950px;
}
.top-li {
	flex-direction: row;
}
.top-li > .item {
	width: 25% !important;
}
.top-li p.linktxt-box::after {
	position: absolute;
	content: "";
	width: 8px;
	height: 8px;
	top: 32px;
	right: 30px;
	border-top: solid 1px #333;
	border-right: solid 1px #333;
	-ms-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
@media all and (-ms-high-contrast: none) {
.top-li p.linktxt-box {
	width: 300px;
}

}

/* お知らせ */
.news {
	flex-direction: row;
	justify-content: center;
	margin: 50px auto;
	max-width: 950px;
}
.sec_ttl{
	font-size: 23px;
	margin: 0;
	z-index: 1;
	border-bottom: none;
	width: 170px;
}
.news-li {
	//margin-top: 50px;
	//margin-bottom: 60px;
	padding: 0;
	//padding-left: 30px;
	//border-left: 1px solid #57c2e7;
	//padding-top: 20px;
	//min-width: 50%;
	width: 600px;
}
.news-li ul {
	padding-left: 30px;
	border-left: 1px solid #57c2e7;
}
.news-li ul li a {
	display: inline-block;
}
.news-li li a > div {
	display: table-cell;
}
.news-day {
	//display: inline-block;
	//vertical-align: middle;
	padding-top: 2px;
	min-width: 130px;
}
.news-content {
	//display: inline-block;
	vertical-align: middle;
	width: auto;
	//max-width: 360px;
}

/* 所在・フッター */
.location-li p {
	margin-top: 20px;
}
footer span {
	margin-right: 1.5em;
}
footer span br {
	display: none;
}
footer > div {
	display:flex;
	flex-direction: row;
	justify-content: space-between;
}
.site_list_flex {
	display: flex;
	justify-content: space-between;
}
.site_list_flex div {
	min-width: 28%;
}
.site_list_item.u-pc-p20 {
	padding-top: 20px;
}

.sp-none {
	display: inline-block;
}
.pc-none {
	display: none;
}

}
@media screen and (min-width: 820px) {
.sec_ttl{
	//margin: 50px;
}
}

@media screen and (min-width: 900px) {
/*   nav
---------------------------------------------------------------------------*/
#gnav-wrap li{
	//margin: auto 25px;
	//padding-left: 0px;
	//background: transparent;
}
.top-li p.linktxt-box::after {
	position: absolute;
	content: "";
	width: 8px;
	height: 8px;
	top: 32px;
	right: 20px;
	border-top: solid 1px #333;
	border-right: solid 1px #333;
	-ms-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

}
@media screen and (min-width: 1024px) {
/*   PC時スライド幅を横いっぱいにするCSS
---------------------------------------------------------------------------*/
.slider .slick-track,
.slider .slick-list{
	width: 100% !important;
}
.slider .slick-slide{
	width: 25% !important;
}

}

/*   調節用
---------------------------------------------------------------------------*/
.bg-b {
	background: #ecfcff;
	width: 100%;
}
.bg-g {
	background: #f2f2f2;
	width: 100%;
}

/* フェードイン */
.fade {
	opacity: 0;
	visibility: hidden;
	transform: translateY(40px);
	-webkit-transition: all 1s;
	-moz-transition: all 1s;
	-o-transition: all 1s;
	-ms-transition: all 1s;
	transition: all 1s;
}
.fade_on {
	opacity: 1;
	visibility: visible;
	transform: translateY(0px);
}