@charset "Shift_JIS";
/* CSS Document */



* { 
margin: 0;
 padding: 0;
  border: 0;
   list-style: none; 
    box-sizing: border-box;
   }

p {
	padding-top: 2px;
	padding-bottom: 4px;
	margin: 0px;
}

a {
	color: #0090EC;
	text-decoration: none;
} 
a:visited {
	color: #F46A00;
	text-decoration: none;
} 
a:hover {
	color: #E1001C;
} 
a:active {
　　color: #CC0066; 
} 

/*font*/
.kosugi-maru-regular {
  font-family: "Kosugi Maru", serif;
  font-weight: 400;
  font-style: normal;
}
.kiwi-maru-regular {
  font-family: "Kiwi Maru", serif;
  font-weight: 400;
  font-style: normal;
}
/* <uniquifier>: Use a unique and descriptive class name
<weight>: Use a value from 100 to 900*/ 

.noto-sans-<uniquifier> {
  font-family: "Noto Sans", serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}
/*font*/



/*　PCスマホ表示の切り替  */
/*-- PC版表示CSS  --*/
.pc {
	display: block;
}
.sp {
	display: none;
}


/*-- スマホ版表示CSS  --*/
@media screen and (max-width: 768px) {
.pc {
	display: none;
}
.sp {
	display: block;
}
}
/*　PCスマホ表示の切り替  */




/*　ナビゲーション  */
nav {
    width: 1200px;
    margin-top: 30px;
    margin-right: 20px;
    margin-left: 20px;

}
nav ul {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    box-sizing: border-box;
    flex-wrap : wrap;
    margin-left: auto;
    margin-right: auto;
	/*
    background-color: rgba(255,255,255,0.9);

    padding: 10px;
    border-radius: 10px;
	*/
}

nav ul li{
    width: calc(100% / 6);
    list-style-type: none;
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
}
/*
nav ul li:nth-child(3n){
    background-image: url(images/menulist3.png);
    background-repeat: no-repeat;
    background-position: center center;
}
nav ul li:nth-child(3n-1){
    background-image: url(images/menulist2.png);
    background-repeat: no-repeat;
    background-position: center center;
}
nav ul li:nth-child(3n-2){
    background-image: url(images/menulist1.png);
    background-repeat: no-repeat;
    background-position: center center;
}
*/
	
nav ul li div img {
    width: 90%;
	transition-duration: 1s;
}
nav ul li a:hover img {
    transform: rotate(15deg);
	transition-duration: 1s;
}

nav ul li a {
    color: #3c0f0c;
    text-decoration: none;

	font-size: 1.1em;
}
nav ul li a:hover {
    color: #008CFF;
    text-decoration: none;
}

 @media screen and (max-width:1240px) {
 
nav {
    width: auto;
    margin-top: 10px;
}
nav ul {
width: auto;
	max-width: auto;
}	 

}


 @media screen and (max-width:768px) {
	 
nav ul li {
    width: 48%;
    list-style-type: none;
    text-align: center;
    margin-left: 1%;
    margin-right: 1%;
    margin-bottom: 10px;
    padding: 10px;
    border: 2px dashed #FFFFFF;
    border-radius: 10px;
    background-color: rgba(255,255,255,0.55);
}

nav ul {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: flex-start;
    box-sizing: border-box;
    flex-wrap : wrap;
    margin-left: auto;
    margin-right: auto;
    background-color: #D6F395;
    padding-top: 10px;
    padding-right: 10px;
    padding-left: 10px;
    padding-bottom: 0px;
    border-radius: 10px;
    background-image: url(images/bg4.png);
}	
	 
nav ul li a {
    color: #3c0f0c;
    text-decoration: none;
}	 
	
nav ul li div img {
    width: 90%;
} 
	 
}
 @media screen and (max-width:480px) {

	 
}






/*-----------------------------------*/
/*　　　　 スマホ用ナビ　 　　　  　 */
/*-----------------------------------*/


#sp_navi {
	display: none;
	z-index: 100;
}
/* ++++ トグルボタン ++++ */
	
#navTgl {
	display: none;
}
label {
	cursor: pointer;
	position: fixed;
	top: 0;
	right: 0;
}
.open {
    z-index: 110;
    width: 60px;
    height: 50px;
    transition: background .5s, transform .5s cubic-bezier(0.76, 0.52, 0.29, 1.25);
    box-sizing: border-box;
    background-color: rgba(252,230,27,0.70);/*トグルカラー*/
    border-radius: 10px;
    margin-top: 0.5em;
    margin-right: 0.5em;
}
.open::before, .open::after {
	content: "";
}
.open span, .open::before, .open::after {
	content: "";
	position: absolute;
	top: calc(50% - 1px);
	left: 30%;
	width: 40%;
	border-bottom: 2px solid white;
　/*トグルボタンのサイズとカラー*/
 transition: transform .5s cubic-bezier(0.76, 0.52, 0.29, 1.25);
}
.open::before {
	transform: translateY(-8px);
}
.open::after {
	transform: translateY(8px);
}
.close {
	z-index: 105;
	width: 100%;
	height: 100%;
	pointer-events: none;
	transition: background .5s;
}
#navTgl:checked + .open span {
	transform: scaleX(0);
}
#navTgl:checked + .open::before {
	transform: rotate(45deg);
}
#navTgl:checked + .open::after {
	transform: rotate(-45deg);
}
#navTgl:checked ~ .close {
    background-color: rgba(255,255,255,0.90); /*背景色*/
}
/* ++++ ドロワーメニュー ++++ */
.menu {
	z-index: 120;
	position: fixed;
	overflow: auto;
	top: 50px;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 6%;
	margin: 0;
	box-sizing: border-box;
	transform: translateX(-100%);
	transition: transform .5s cubic-bezier(0.33, 1.01, 0.33, 0.97);
}
#navTgl:checked ~ .menu {
	transform: none;
}
 @media screen and (max-width:768px) {
/*TB SP ナビゲーション*/
#sp_navi {
	display: block;
	width: 100%;
}
.pc_nav {
	display: none;
	width: 100%;
	float: none;
}
}

.sp_add {
    box-sizing: border-box;
    background-color: rgba(128,220,255,0.50);
    padding: 1em;
    border-radius: 20px;
}


/*　ナビゲーション  */










h1 {
    width: 500px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}
h1 img {
	width: 100%;
}
.animated:hover{
animation: shake 1s;
}
.animated2:hover{
animation: rubberBand 1s;
}

h2 {
	text-align: center;
	margin-bottom: 30px;
	margin-top: 30px;
}
h2 img {
	width: 350px;
}

h3 {
    margin-right: auto;
    margin-bottom: 20px;
    margin-left: auto;
    text-align: left;
    color: #67210D;
    font-size: 22px;
    -moz-background-size: 100% auto;
    font-weight: normal;
    padding-bottom: 4px;
    padding-left: 4px;
    margin-top: 20px;
    border-top: 1px dashed #A26F63;
    border-bottom: 1px dashed #A26F63;
    padding-top: 4px;
    background-color: #FFFDDB;
    background-image: url(images/bg265.png);
}


h4 {
	text-align: left;
	font-size: 20px;
	font-weight: normal;
	color: #F84C67;
	margin-top: 10px;
	margin-bottom: 10px;
}

img {
	vertical-align: bottom;
	border: 0px;

}





/*ページ構成*/
html,body {
	height: 100%;
	margin: 0px;
	padding: 0px;
	width: 100%;
	text-align: center;
  font-family: "Kiwi Maru", serif;
	font-size: 18px;
	color: #564235;
	background-color: #fff;
	background-image: url(images/bg_body_l.png),url(images/bg_body_r.png),url(images/bg_body.png);
	background-position: left top,right top,center top;
	background-repeat: no-repeat,no-repeat,repeat-x;
}


#system_main {
	width: 100%;
	text-align: center;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
	background-image: url(images/bg_footer.png);
	background-repeat: repeat-x;
	background-position: center bottom;
	position: relative;
}


header {
    height: auto;
    width: 100%;
    text-align: center;
    padding-top: 40px;
    margin-right: auto;
    margin-left: auto;
}

main {
	text-align: center;
	display: block;
	width: 1200px;
	margin-right: auto;
	margin-left: auto;
	padding-top: 2em;
	background-color: #FFFFFF;
}


footer {
    width: 100%;
    text-align: center;
    padding-bottom: 120px;
}

footer .copy {
	text-align: center;
	font-size: 12px;
	color: #5A3D1C;
	margin-right: auto;
	margin-left: auto;
	padding-top: 20px;
}
footer .copy img {
	height: 30px;
	}


.pagetop {
	position: absolute;
	right: 10px;
	bottom: 50px;

}
.pagetop a:hover img {
animation: swing 1s infinite;
}
	

/* トップ */


#topslide {
	position: relative;
	margin-right: auto;
	margin-left: auto;
	margin-bottom: 40px;
}
.slider img {
	object-fit: cover;
	height: 735px;
	width: 100%;
}

@media screen and (max-width:768px){
.slider img {
	object-fit: cover;
	height: 101vw;
	width: 100%;
}

}

#topimg1 {
	position:absolute;
	top:0px;
	line-height: 0;
}

#topimg1 img {
	width: 100%;
	height: 100%;
}
#topimg1_sp {
	display: none;
}
#topimg2 {
	position:absolute;
	top:100px;
	left: 50px;
	width: 680px;
}
#topimg2 img {
	width: 100%;
}
#topimg3 {
	position:absolute;
	top:480px;
	right: 0px;
	width: 580px;
}
#topimg3 img {
	width: 100%;
}
#topimg4 {
	position:absolute;
	top:150px;
	left: -60px;
	width: 140px;
}
#topimg4 img {
	width: 100%;
}
#topimg5 {
	position:absolute;
	top:190px;
	right: -90px;
	width: 190px;
}
#topimg5 img {
	width: 100%;
}

@media screen and (max-width:1300px){
#topimg4 {
	position:absolute;
	top:150px;
	left: -7px;
	width: 130px;
}
#topimg5 {
	position:absolute;
	top:190px;
	right: -7px;
	width: 170px;
}
}


#news {
	margin-bottom: 80px;
	}

#news ul {
    text-align: left;
    padding-top: 30px;
    padding-right: 30px;
    padding-left: 30px;
    padding-bottom: 30px;
    background-color: #FFFFFF;
    border-radius: 20px;
    margin-left: auto;
    margin-right: auto;
    margin-right: auto;
    margin-left: auto;
    list-style: none;
    border: 4px solid rgba(255,242,156,1.00);
}
#news li {
    text-align: left;
    border-bottom: 1px dashed #A89888;
    margin-bottom: 7px;
    padding-bottom: 10px;
    background-image: url(images/list2.png);
    background-repeat: no-repeat;
    background-position: left top;
    padding-left: 40px;
}

#map {
	margin-bottom: 80px;
	}
	
#map iframe {
	width: 100%;
	height: 300px;
	}

#map dl {
    background-color: #FFE870;
    padding: 20px;
    border-radius: 20px;
    text-align: left;
    margin-bottom: 30px;
}
#map dl dt {
    padding: 10px;
    background-color: #FFFFFF;
    border-radius: 20px;
    margin-bottom: 20px;
    font-size: 1.2rem;
}
#map dl dd {
    border-radius: 20px;
    padding: 10px;
    background-color: rgba(255,255,255,0.69);
}
#kihon {
	margin-bottom: 80px;
	}
#kihon table {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    border: 0px;
    border-collapse: separate;
    margin-bottom: 15px;
}
#kihon th {
    padding: 1em;
    text-align: left;
    white-space: nowrap;
    vertical-align: top;
    font-weight: normal;
    background-color: #E8FDF3;
    border: 0px;
}
#kihon td {
    padding: 1em;
    text-align: left;
    background-color: #FFF9E6;
    border: 0px;
}


#annai {
    margin-bottom: 50px;
}
#annai dl {
    padding: 20px;
    background-color: rgba(255,247,218,0.80);
    border-radius: 20px;
    background-color: rgba(244,248,223,0.90);
    margin-bottom: 20px;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    box-sizing: border-box;
    flex-wrap : wrap;
}


#annai dt {
    width: 70%;
    text-align: left;
    margin-bottom: 0px;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-right: 10px;
    padding-left: 10px;
    background-color: rgba(255,255,255,1.00);
    border-radius: 10px;
}
#annai dd {
	width: 27%;
    margin-bottom: 0px;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-right: 10px;
    padding-left: 10px;

}
#annai dd figure {
    width: 100%;
    text-align: center;

}
#annai dd figcaption {
    background-color: #F1EDE2;
    border-radius: 10px;
    margin-top: 10px;
}
#annai dd figure img {
    width: 100%;
    border-radius: 10px;
}
.flex {
    display: flex;
    justify-content:space-between;
    box-sizing: border-box;
    flex-wrap : wrap;
}


























@media screen and (max-width:768px){

html,body {
    background-image: url(images/bg_body_l.png),url(images/bg_body_r.png),url(images/bg_body.png);
    background-position: left top,right top,center top;
    background-repeat: no-repeat,no-repeat,repeat-x;
    background-size: 40% auto,40% auto,100% auto;
}


header {
	padding-top: 20px;

}
#system_main {

}


h1 {
	width: 60%;
}



footer .copy img {
	width: 60%;
	height:auto;
	}

h2 {

	font-size: 22px;
}
	
main {
	width: auto;
	padding-top: 1em;
	padding-right: 1em;
	padding-bottom: 1em;
	padding-left: 1em;
	border-radius: 0px;
}
#topimg1_sp {
	display: block;
	position:absolute;
	top:0px;
	line-height: 0;
}

#topimg1_sp img {
	width: 100%;
	height: 100%;
}
#topimg1 {
	display: none;
}
	
#topimg2 {
	position: static;
	top:auto;
	left: auto;
	bottom: auto;
	right: auto;
	width: 100%;
	margin-top: 20px;
}

#topimg3 {
    position: static;
    top: auto;
    left: auto;
    bottom: auto;
    right: auto;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

#topimg4 {
	display: none;
}

#topimg5 {
	display: none;
}

#annai dt {
    width: 100%;
margin-bottom: 10px;
}
#annai dd {
	width: 100%;
}	


}

@media screen and (max-width:480px){


h1 {
	width: 80%;
	margin-right: auto;
	margin-left: auto;
}

h2 {
	font-size: 20px;
}

h3 {
	font-size: 17px;
}

footer .copy img {
	width:87%
}
	footer {
		padding-bottom: 100px;
	}
.pagetop {
bottom:130px;
}
.pagetop img {
width: 80%;
}
header {
	height: auto;
}
	#kihon td {
		display: block;
		width: 100%;
		padding: 8px;
		margin-bottom: 10px;
	}	
	#kihon th {
		display: block;
		width: 100%;
		padding: 8px;
	}


	
	
	
}
