.sp:not(.pc) ,.tb:not(.pc){
  display: none !important;
}
.splink{pointer-events: none;}


body{
}
#container{
	margin: 0;
	padding: 0;
}
#header {
	position: fixed;
	width: 100%;
	border-top: 2px solid #fff;
	border-bottom: 2px solid #fff;
	background: rgb(236,236,236);
	background: -moz-linear-gradient(top, rgba(236,236,236,1) 0%, rgba(255,255,255,1) 29%, rgba(255,255,255,1) 60%, rgba(220,224,227,1) 100%);
	background: -webkit-linear-gradient(top, rgba(236,236,236,1) 0%,rgba(255,255,255,1) 29%,rgba(255,255,255,1) 60%,rgba(220,224,227,1) 100%);
	background: linear-gradient(to bottom, rgba(236,236,236,1) 0%,rgba(255,255,255,1) 29%,rgba(255,255,255,1) 60%,rgba(220,224,227,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ececec', endColorstr='#dce0e3',GradientType=0 );
	margin: 10px auto 3px;
	z-index: 10;
}
#header::before {
	content: "";
	height: 10px;
	width: 100%;
	background: #7E8387;
	position: absolute;
	top: -12px;
}
#header::after {
	content: "";
	height: 3px;
	width: 100%;
	background: #7E8387;
	position: absolute;
	bottom: -5px;
}

.header_inner {
	width: 1000px;
	max-width: 100%;
	margin: 0 auto;
	position: relative;
	display: grid;
	grid-template-columns: 340px 1fr;
	grid-template-rows: 65px 45px;
	gap: 0px 0px;
	grid-template-areas:
		"logo header_up"
		"header_menu header_menu";
}
.logo { grid-area: logo; }
.header_up { grid-area: header_up; }
.header_menu { grid-area: header_menu; }

@media all and (-ms-high-contrast:none) {

	.header_inner {
		display: -ms-grid;
		-ms-grid-columns: 340px 1fr;
		-ms-grid-rows: 65px 45px;
		gap: 0px 0px;
	}

	.header_up {
	-ms-grid-row: 1;
	-ms-grid-row-span: 1;
	-ms-grid-column: 2;
	-ms-grid-column-span: 2;
	}

	.logo {
	-ms-grid-row: 1;
	-ms-grid-row-span: 1;
	-ms-grid-column: 1;
	-ms-grid-column-span: 1;
	}

	.header_menu {
	-ms-grid-row: 2;
	-ms-grid-row-span: 1;
	-ms-grid-column: 1;
	-ms-grid-column-span: 2;
	}
}

.logo {
}
.logo a{
	position: relative;
	margin:0 auto 0 0;
	display: block;
	width: 300px;
	height: 100%;
}
.logo a img{
	position: absolute;
	margin: auto;
	display: block;
	top: 0;
	bottom: 0;
	width: 100%;
}
.header_up {
	display: flex;
    justify-content: flex-end;	
}
.header_up > a{
	margin-top: 8px;
}
.header_up ul {	display: flex;
	justify-content:flex-end;
	margin: 0;padding: 0;
	list-style-type: none;
}

.header_up ul li{
	border-left: 1px solid #808080;
	height: 36px;
	width: 10rem;
}
.header_up ul li a{
	font-size: 1.1rem;
	border-left: 2px solid #808080;
	height: 14px;
	margin-top: 22px;
	padding-left: 1.1rem;
	display: block;
	line-height:  14px;
	font-weight: bold;
}





.header_menu {}
.header_menu ul{
	display: flex;
	justify-content:space-between;
	margin: 0;padding: 0;
	list-style-type: none;
}
.header_menu ul li{
	position: relative;
	background: rgb(255,255,255);
	padding: 2px 2px 0;
    width: 25%;
    margin: 0  5px 2px 5px;
	border-radius: 4px 4px 0 0;
	height: 45px;box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.2);
}
.header_menu ul li.slct{
	background: rgb(199,232,250);
	background: -moz-linear-gradient(left, rgba(199,232,250,1) 0%, rgba(132,186,229,1) 100%);
	background: -webkit-linear-gradient(left, rgba(199,232,250,1) 0%,rgba(132,186,229,1) 100%);
	background: linear-gradient(to right, rgba(199,232,250,1) 0%,rgba(132,186,229,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#c7e8fa', endColorstr='#84bae5',GradientType=1 );
}
.header_menu ul li a{
	position: absolute;
	margin: auto;
	padding: 10px 0 0 30px;
	left: 2px;right: 2px;
	top: 2px;bottom: -2px;
	display: block;
	border-radius: 2px 2px 0 0;
	font-size: 1.2rem;
	background: rgb(255,255,255);
	background: -moz-linear-gradient(top,  rgba(255,255,255,1) 0%, rgba(221,226,229,1) 100%);
	background: -webkit-linear-gradient(top,  rgba(255,255,255,1) 0%,rgba(221,226,229,1) 100%);
	background: linear-gradient(to bottom,  rgba(255,255,255,1) 0%,rgba(221,226,229,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#dde2e5',GradientType=0 );
}
.header_menu ul li.slct a{
	color:#4794D1;
}
.header_menu ul li a:hover{
	color:#4794D1;
}
.header_menu ul li a::before{
	content: "";
	position: absolute;
	margin: auto;
	width: 10px;height: 10px;
	background-image: url("/img/common/arrow.svg");
	background-color:rgba(128,128,128,1.00);
	top: 15px;
	left: 15px;
    -webkit-transition: 0.3s ease-in-out;  
       -moz-transition: 0.3s ease-in-out;  
         -o-transition: 0.3s ease-in-out;  
            transition: 0.3s ease-in-out;  

}
.header_menu ul li.slct a::before,
.header_menu ul li a:hover::before
{
	background-image: url("/img/common/arrow.svg");
	background-color:rgba(34,173,229,1.00);
}

.header_menu ul li a span{
	font-size: 1.0rem;
	display: block;
	line-height: 1;
}


/* ---------------------------------------------------------------------- */
/*  ヘッダ-プルダウンメニュー                                             */
/* ---------------------------------------------------------------------- */



#pan {
    z-index: 10;
    position: fixed;
    width: 100%;
    line-height: 25px;
    height: 25px;
    margin: auto;
    padding: 0;
    text-align: left;
    font-size: 1.4rem;
    top: 127px;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.7);
}
#pan ul{
	width: auto;
	max-width: 1000px;
	font-size: 1.4rem;
	padding: 0 5px;
	margin: 0 auto;
	line-height: 2;
    white-space: nowrap;
	list-style: none;
}

#pan ul li{
	display: inline-block;
}
#pan ul li+li::before{
	content: "\0bb";
	-webkit-font-smoothing: antialiased;
	display: inline-block;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	line-height: 1;
	margin:0 .5rem;
}

#contents{
	padding-top: 160px;
}
.topimg_single{
	margin: 0 0 20px;
}
.topimg_single .ph{
	max-width: 1000px;
	width: 100%;
	margin: 0 auto 20px;
	position: relative;

}
.topimg_single .ph img{
	max-width: 1000px;
	width: 100%;
	margin: 0 auto ;

}
.topimg_single .ph .caption  {
	position: absolute;
    margin: auto;
    color: #494949;
}
.topimg_single .ph .caption > p {
    padding: 0;
    margin: 0;
    white-space: nowrap;
}
.topimg_single .ph .caption.pos_1 {
	left: 3px;
	top: 3px;
}
.topimg_single .ph .caption.pos_2 {
	top: 3px;
	left: 0;right: 0;
	text-align: center;
}
.topimg_single .ph .caption.pos_2 p{
	margin: auto;
}
.topimg_single .ph .caption.pos_3 {
	right: 3px;
	top: 3px;
}
.topimg_single .ph .caption.pos_3 p{
	text-align: right;
}
.topimg_single .ph .caption.pos_7 {
	left: 3px;
	bottom: 3px;
}
.topimg_single .ph .caption.pos_8 {
	bottom: 3px;
	left: 0;right: 0;
	text-align: center;
}
.topimg_single .ph .caption.pos_9 {
	right: 3px;
	bottom: 3px;
}
.topimg_single .ph .caption.pos_9 p{
	text-align: right;
}





.contents_box{
	max-width: 1000px;
	width: 100%;
	margin: 0 auto 20px;
	display: flex;
	justify-content: space-between;
	font-size: 1.5rem;

}
.main_col{
	width: calc(100% - 230px);
	margin-bottom: 85px;
}
.sub_col{
	width: 200px;
}

#pagetop{
	margin: 0 0 40px;
	padding: 0;
}
#pagetop p{
	padding: 0;
    width: 1000px;
    max-width: 100%;
    margin: auto;
	text-align: left;
}

#pagetop a{
	position: relative;
	margin: 0 15px 0 0;
	text-align: left;
	color: #8CC457;
	font-size: 1.2rem;
	border-radius: 4px 4px 0 0;
	padding: 5px 1em;
}

#pagetop a::before{
	content: "";
	position: absolute;
	margin:auto;
	background: url("../img/common/page_top.svg") no-repeat;
	left: 0;
	top: 0;bottom: 0;
	width: 11px;
	height: 10px;
}
#footer{
	position: relative;
	height: 220px;
	background: #dde2e5;
	background: -moz-linear-gradient(top,  #dde2e5 0%, #ffffff 100%);
	background: -webkit-linear-gradient(top,  #dde2e5 0%,#ffffff 100%);
	background: linear-gradient(to bottom,  #dde2e5 0%,#ffffff 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#dde2e5', endColorstr='#ffffff',GradientType=0 );
}
#footer::before{
	content: "";
	height: 30px;
	width: 100%;
	background: #686D70;
	position: absolute;
	margin: auto;
	top: -31px;
}


#footer .inner{
	width: 100%;
	max-width: 1000px;
	margin: auto;
	padding-top: 5px;
	
}
#footer_link {
    width: 1040px;
    max-width: 100%;
    margin:20px auto 0;
}
#footer_link ul{
	margin: 0;padding: 0;
	display: flex;
	list-style-type: none;
	font-size: 1.2rem;
}
#footer_link li{
	color: #d82d23;
}
#footer_link li a{
	padding: 0 12px 0 15px;margin: 5px 0;
	color: #494949;
	display: inline-block;
	position: relative;
}
#footer_link li a::before{
	content: "";
    background: #4794D1 url("../img/common/arrow.svg") center center;
	padding: 0px;
	margin: auto;
	height: 10px;
	width: 10px;
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
}
p.copyright{
	color: #494949;
	line-height: 3;
	margin: 0 0 30px;
	padding: 0;
	text-align: left;
	font-size: 1.2rem;
}
.flex{
	display: flex;
	flex-direction:row;
	margin-bottom: 20px;
	justify-content: space-around;
}
.flex.reverse{
	display: flex;
	flex-direction:row-reverse;
}
.flex .article{
	flex: 1 0 65%;

}
.flex .article p{
	margin: 0;

}
.flex .article p+p{
	margin: 15px 0 0;

}

.flex .img{
	flex: 0 1 auto;
	margin: 0 0 0 10px;
}

.flex .img img{
	width: auto;
}
#login{
	width: 400px;
	max-width: calc(100% - 20px);
	margin:30px auto;
	padding: 10px;
}
#login input{
	padding: 10px;
	width:calc(100% - 30px);
}

#login dl{
	margin: 0;
	padding: 0;
	display: block;
}

#login dt{
	margin: 0;
	padding: 0;
	display: block;
}

#login dd{
	margin: 0 0 10px;
	padding: 0;
	display: block;
}
#login button{
	margin: auto;
	padding: 10px;
	display: block;
}


#googlemap {
    width: 100%;
    height: 390px;
}
.inner.content>div{
	margin-bottom: 80px;
}
@media (min-width: 1065px) {
#pan {
    top: 122px;
}
	.header_inner {
		display: grid;
		grid-template-columns: 340px 1fr;
		grid-template-rows: 60px 45px;
		gap: 0px 0px;
		grid-template-areas:
		"logo header_up"
		"logo header_menu";
	}
	.logo a img{

		top: auto;
		bottom: 5px;

	}
	.header_menu ul li{
		position: relative;
		background: rgb(255,255,255);
		padding: 2px 2px 0;
		width: 25%;
		margin: 0 0 2px 10px;
		border-radius: 4px 4px 0 0;
		height: 45px;box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.2);
	}

}
	@media (min-width: 1065px) and (-ms-high-contrast:none) {

		.header_inner {
			display: -ms-grid;
			-ms-grid-columns: 340px 1fr;
			-ms-grid-rows: 65px 45px;
			gap: 0px 0px;
		}

		.logo {
		  -ms-grid-row: 1;
		  -ms-grid-row-span: 2;
		  -ms-grid-column: 1;
		  -ms-grid-column-span: 1;
		}

		.header_up {
		  -ms-grid-row: 1;
		  -ms-grid-row-span: 1;
		  -ms-grid-column: 2;
		  -ms-grid-column-span: 2;
		}

		.header_menu {
		  -ms-grid-row: 2;
		  -ms-grid-row-span: 1;
		  -ms-grid-column: 2;
		  -ms-grid-column-span: 1;
		}

	}
