@charset "shift_JIS";
/* CSS Document */


* { 
margin: 0;
 padding: 0;
  border: 0;
	box-sizing: border-box;
}
ul,ol {
    margin-left: 1em;
    list-style-position: outside;
}
table {
	border-collapse: collapse;
}
table th {
    padding: 5px;
    border: 1px solid #EBEBEB;
}
table td {
	padding: 5px;
    border: 1px solid #EBEBEB;
}

p {
	padding-top: 2px;
	padding-bottom: 4px;
	margin: 0px;
}

a {
    color: #2F5BD0;
    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: #FFDAE6;
    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: 7px;
    padding-left: 4px;
    margin-top: 20px;
    border-top: 1px dashed #A26F63;
    border-bottom: 1px dashed #A26F63;
    padding-top: 7px;
    background-color: #FFDEE8;
    background-image: url(images/bg280.png);
}

h4 {
    padding: 10px;
    background-color: #FFFFFF;
    margin-bottom: 20px;
    font-size: 20px;
    border-bottom: 2px dashed #B17273;
}

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;
	}
.address {
    font-size: 0.8em;
    color: #A67A4C;
}

.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: 103vw;
	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,225,237,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: #FFE8F0;
    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: #FFF6F9;
}
#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: #FFF8CF;
    border: 0px;
}
#kihon td {
    padding: 1em;
    text-align: left;
    background-color: #F2FFEB;
    border: 0px;
}


#greeting {
    margin-bottom: 50px;
}
#greeting 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;
}


#greeting 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;
}
#greeting dd {
	width: 27%;
    margin-bottom: 0px;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-right: 10px;
    padding-left: 10px;

}
#greeting dd figure {
    width: 100%;
    text-align: center;

}
#greeting dd figcaption {
    background-color: #F1EDE2;
    border-radius: 10px;
    margin-top: 10px;
}
#greeting dd figure img {
    width: 100%;
    border-radius: 10px;
}






#about {
	}


#rinen {
	margin-bottom: 80px;
	}
.rinentxt {
    font-size: 1.3em;
    line-height: 2.3em;
    background-image: url(images/bg_rinen.png);
    background-repeat: no-repeat;
    background-position: center center;
    padding-top: 40px;
    padding-bottom: 40px;
    color: #5E493E;
}

#houshin {
	margin-bottom: 80px;
	}

.houshintxt {
    font-size: 1.3em;
    line-height: 2.3em;
    background-image: url(images/bg_houshin.png);
    background-repeat: no-repeat;
    background-position: center center;
    padding-top: 40px;
    padding-bottom: 40px;
    color: #5E493E;
}
#mokuhyou {
	margin-bottom: 80px;
	}

.flex {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    box-sizing: border-box;
    flex-wrap : wrap;
    margin-left: auto;
    margin-right: auto;
}
.mokuhyoutxt {
    width: 67%;
    text-align: left;
}
.mokuhyouphoto {
	width: 30%;
}
.mokuhyouphoto img {
	width: 100%;
}

#tokushoku {
	margin-bottom: 80px;
	}

#tokushokuflex article {
    padding: 20px;
    margin-bottom: 30px;
    background-color: #FFEFF6;
	}


#tokushokuflex dl {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    box-sizing: border-box;
    flex-wrap : wrap;
    margin-left: auto;
    margin-right: auto;
}
#tokushokuflex dl dt {
    width: 67%;
    text-align: left;
}
#tokushokuflex dl dd {
	width: 30%;
}
#tokushokuflex dl dd img {
	width: 100%;
}

#tokushokuflex article:nth-child(odd) dl dt {
	order:1;
}
#tokushokuflex article:nth-child(odd) dl dd {
	order:2;
}
#tokushokuflex article:nth-child(even) dl dt {
	order:2;
}
#tokushokuflex article:nth-child(even) dl dd {
	order:1;
}


#gaiyou {
	margin-bottom: 80px;
	}
#gaiyou table {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    border: 0px;
    border-collapse: separate;
    margin-bottom: 15px;
}
#gaiyou th {
    padding: 1em;
    text-align: left;
    white-space: nowrap;
    vertical-align: top;
    font-weight: normal;
    background-color: #FFF8CF;
    border: 0px;
}
#gaiyou td {
    padding: 1em;
    text-align: left;
    background-color: #F2FFEB;
    border: 0px;
}
#floor {
	margin-bottom: 80px;
	}

#floor article {
    width: 100%;
    margin-bottom: 20px;
    padding: 20px;
    background-color: rgba(248,232,221,0.4);
	}
#floor dl {
    padding: 30px;
    border-radius: 5px;
    border: 2px dashed #5B3D1E;
    border-radius: 10px;
}


#floor dt {
    text-align: left;
    margin-bottom: 15px;
    font-size: 1.2em;
    border-bottom: 3px double #5B3D1E;
    padding-right: 10px;
    padding-bottom: 10px;
    padding-left: 30px;
    color: #5B3D1E;
    background-image: url(images/list2.png);
    background-repeat: no-repeat;
    background-position: left top;
}

#floor dd {
    border-bottom: 1px dashed #5B3D1E;
    text-align: left;
    margin-bottom: 0px;
    padding-top: 10px;
    padding-bottom: 10px;
}
.fpdf a {
    display: block;
    padding: 5px;
    background-color: #92B022;
    text-align: center;
    color: #FFFFFF;
    border-radius: 20px;
}
.fpdf a:hover {
    display: block;
    padding: 5px;
    background-color: #FFFFFF;
    text-align: center;
    color: #92B022;
    border-radius: 20px;
}
#life {
	}


#daily {
	margin-bottom: 80px;
	}

#daybox {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    box-sizing: border-box;
    flex-wrap : wrap;
    margin-bottom: 30px;

}
#day1 {
    width: calc(50% - 20px);
    background-color: #C3F4FF;
    padding: 30px;
    border-radius: 20px;
    background-image: url(images/bg272.png);
    display: flex;
    justify-content: space-between;
    box-sizing: border-box;
    flex-wrap : wrap;
}

#day1 th {
    white-space: nowrap;
    background-color: #FFE1E6;
    padding: 10px;
    border-width: 0px;
}
#day2 {
    width: calc(50% - 20px);
    background-color: #FFD4E2;
    padding: 30px;
    border-radius: 20px;
    background-image: url(images/bg266.png);
    display: flex;
    justify-content: space-between;
    box-sizing: border-box;
    flex-wrap : wrap;
}
#day2 th {
    white-space: nowrap;
    background-color: #FFF0A4;
    padding: 10px;
    border-width: 0px;
}
#daybox ul {
    width:40%;
	list-style: none;
    margin-left: auto;
    margin-right: auto;
}
#daybox ul li {
    margin-bottom: 10px;
}
#daybox img {
	width: 100%;
}
#daybox ul img {
	width: 100%;
	object-fit: cover;
	height: 140px;
    border-radius: 10px;
}
#daybox table {
    width: 100%;
    border-spacing: 7px;
    margin-bottom: 10px;
	border-collapse: separate;
}
#daybox td {
    padding: 10px;
    background-color: #FFFFFF;
    text-align: center;
	border-width: 0px;
}
#daybox caption {
    background-color: rgba(255,255,255,0.75);
    padding-top: 15px;
    padding-right: 15px;
    padding-bottom: 15px;
    padding-left: 15px;
    border-radius: 10px;
    margin-bottom: 4px;
    margin-left: 5px;
    margin-right: 5px;
}

.daymidashi1 {
    font-size: 1.4rem;
    font-weight: bold;
    color: #33ACDF;
    font-family: "Kosugi Maru", serif;
}
.daymidashi2 {
    font-size: 1.4rem;
    font-weight: bold;
    color: #65A40D;
    font-family: "Kosugi Maru", serif;
}


#event {
	margin-bottom: 80px;
	}
.eflex {
    display: flex;
    justify-content: space-between;
    box-sizing: border-box;
    flex-wrap : wrap;
	list-style: none;
	margin-left: 0px;
}
.eflex li {
	width: 49%;
    padding: 20px;
    margin-bottom: 25px;
    border-radius: 20px;
}
.eflex > li:nth-child(5n) {
    background-color: #F5E3D3;
	width: 100%;
}
.eflex > li:nth-child(5n-2) {
    background-color: #FFF5D8;
    background-image: url(images/bg262.png);
}
.eflex > li:nth-child(5n-3) {
    background-color: #EAFDD1;
    background-image: url(images/bg265.png);
}
.eflex > li:nth-child(5n-1) {
    background-color: #E5E8FF;
    background-image: url(images/bg274.png);
}
.eflex > li:nth-child(5n-4) {
    background-color: #FFEAF4;
    background-image: url(images/bg280.png);
}

.eflex dl {
    display: flex;
    justify-content: space-between;
    box-sizing: border-box;
    flex-wrap : wrap;
}
.eflex dt {
    width: 40%;
}
.eflex dt img {
    width: 100%;
}
.eflex dd {
    width: 57%;
    background-color: #FFFFFF;
    padding: 15px;
    text-align: left;
	border-radius: 10px;
}
.eflex dd ul {

}
.eflex dd ul li {
    width: auto;
    text-align: left;
    padding: 5px;
    background-color: #FFFFFF;
    background-image: url(images/bg000.png);
    margin-top: 1px;
    margin-right: 1px;
    margin-bottom: 1px;
    margin-left: 1px;
}


.epflex {
    display: flex;
    justify-content: flex-start;
    box-sizing: border-box;
    flex-wrap : wrap;
	list-style: none;
	margin-left: 0px;
}
.epflex li {
	width: 22%;
	margin-left: 1.5%;
	margin-right: 1.5%;
    margin-bottom: 40px;

}

.epflex li:nth-child(odd) div {
    background-color: #FFFBC6;
    margin-bottom: 10px;
}
.epflex li:nth-child(even) div {
    background-color: #D3F8FF;
    margin-bottom: 10px;
}

.epflex li:nth-child(odd) figure img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 10px;
	transform: rotate(5deg);
}

.epflex li:nth-child(even) figure img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 10px;
	transform: rotate(-5deg);
}
.epflex li figcaption {
    border-bottom: 1px dashed #BBA699;
    border-top: 1px dashed #BBA699;
    padding-top: 3px;
    padding-bottom: 3px;
    background-color: #FFFFFF;
}

.other {
    display: flex;
    justify-content: flex-start;
    box-sizing: border-box;
    flex-wrap : wrap;
    margin-bottom: 20px;
}
.other dl {
    background-color: #F5E3D3;
	width: 32.3%;
	margin-left: 0.5%;
	margin-right: 0.5%;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 20px;
}
.other dt {
    padding: 10px;
    background-color: #E7C6A9;
}
.other dd {
    padding: 10px;
    background-color: #FFFFFF;
    text-align: left;
}



#kosodate {
	margin-bottom: 80px;
	}
.tflex {
    display: flex;
    justify-content: flex-start;
    box-sizing: border-box;
    flex-wrap : wrap;
}
.tflex article {
    width: 48%;
	margin-left: 1%;
	margin-right: 1%;
    margin-bottom: 30px;
    margin-bottom: 20px;
    padding: 20px;
    background-color: rgba(248,232,221,0.4);
	}
.tflex article dl {
    padding: 30px;
    border-radius: 5px;
    border: 2px dashed #5B3D1E;
    border-radius: 10px;
}

.tflex article dt {
    text-align: left;
    margin-bottom: 15px;
    font-size: 1.2em;
    border-bottom: 3px double #5B3D1E;
    padding-right: 10px;
    padding-bottom: 10px;
    padding-left: 30px;
    color: #5B3D1E;
    background-image: url(images/list1.png);
    background-repeat: no-repeat;
    background-position: left top;
}
.tflex article dd {
    border-bottom: 1px dashed #5B3D1E;
    text-align: left;
    margin-bottom: 0px;
    padding-top: 10px;
    padding-bottom: 10px;
}
.tflex figure {
    text-align: center;
}	


.tflex figure img{
    width: 90%;
    border-radius: 15px;
}
.kopdf a {
    width: 90%;
    padding: 5px;
    display: block;
    background-color: #AF6AD7;
    color: #FFFFFF;
    text-align: center;
    border-radius: 5px;
    margin-left: auto;
    margin-right: auto;
}
.kopdf a:hover {
    background-color: #FCA8B3;
}


#kosodatefaq {
	margin-bottom: 80px;
	}
#kosodatefaq dl {
    padding: 20px;
    background-color: #E9D5F5;
    margin-bottom: 20px;
    border-radius: 20px;
}
#kosodatefaq dt {
    font-size: 1.2em;
    background-color: #FAF4FD;
    margin-bottom: 10px;
    padding: 10px;
}
#kosodatefaq dd {
    background-color: #FFFFFF;
    text-align: left;
    padding: 10px;
}


#recruit {
	margin-bottom: 80px;
	}

#recruit dl {
    padding: 30px;
    background-color: #FFFFFF;
    margin-bottom: 30px;
    border-radius: 30px;
    background-image: url(images/bg264.png);
}
#recruit dt {
    font-size: 1.7em;
    margin-bottom: 15px;
    color: #F44580;
	
}
#recruit dd {
    font-size: 1.2em;
}

#recruit dd div {
    font-size: 2em;
    margin-top: 15px;
}

#recruitbox {
    width: 95%;
    margin-left: auto;
    margin-right: auto;

}
#recruit table {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 30px;
	border-spacing: 0px;
	border:0px;
}
#recruit th {
    padding-top: 14px;
    padding-right: 14px;
    padding-left: 14px;
    padding-bottom: 14px;
    text-align: left;
    white-space: nowrap;
    vertical-align: top;
    font-weight: normal;
    background-color: #FFE695;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    font-size: 1.1em;
    background-image: url(images/bg263.png);
	border:0px;
}
#recruit td {
    padding-top: 20px;
    padding-right: 20px;
    padding-left: 20px;
    padding-bottom: 20px;
    text-align: left;
    background-color: #FFFDE6;
	border:0px;
}
.ktxt {
	width: 75%;
}
.kpdf {

}
.kpdf a {
    width: 90%;
    padding: 5px;
    display: block;
    background-color: #AF6AD7;
    color: #FFFFFF;
    text-align: center;
    border-radius: 5px;
    margin-left: auto;
    margin-right: auto;
}
.kpdf a:hover {
    background-color: #FCA8B3;
}


#recruitfaq {
	margin-bottom: 80px;
	}
#recruitfaq dl {
    padding: 20px;
    background-color: #BCEFEB;
    margin-bottom: 20px;
    border-radius: 20px;
}
#recruitfaq dt {
    font-size: 1.2em;
    background-color: #E5FCFA;
    margin-bottom: 10px;
    padding: 10px;
}
#recruitfaq dd {
    background-color: #FFFFFF;
    text-align: left;
    padding: 10px;
}





#blog {
	margin-bottom: 80px;
}
#blog table td {
	border-width: 0px;
}
#blog h3 {
    width: auto;
    background-color: #B94896;
	padding: 10px;
}
#blogbox {
	width: 100%;
	margin-right: auto;
	margin-left: auto;
    display: flex;
    justify-content: space-between;
    box-sizing: border-box;
    flex-wrap : wrap;
}
#blogside {
    width: 26%;
    padding: 30px;
    margin-bottom: 20px;
    background-image: url(images/bg_blog.png);
    background-repeat: no-repeat;
    background-position: center top;
    background-color: #faf7f0;
}
#blogside ul {
    counter-reset: list;
    list-style-type: none;
    line-height: 1.6;
    padding-top: 15px;
    padding-right: 15px;
    padding-left: 15px;
    padding-bottom: 15px;
    text-align: left;
    background-color: #FFFFFF;
    margin-top: 15px;
    border-radius: 20px;
    margin-left: auto;
    margin-right: auto;
}
#blogside ul li{
    position: relative;
    padding: 0 0 0 20px;
    margin: 7px 0 7px 0px;
    font-size: 14px;
    line-height: 30px;
    border-bottom: 1px dashed #B94896;
}
#blogside ul li:before{
    counter-increment: list;
    content: "";
    display: block;
    position: absolute;
    left: 0px;
    height: 15px;
    width: 15px;
    border-radius: 50%;
    background-color: #B94896;
    top: 50%;
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
#blogside ul li:after{
  content: "";
  display: block;
  position: absolute;
  left: 6px;
  height: 0;
  width: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 5px solid #fff;
  top: 50%;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
#blogside ul li a{
    text-decoration: none;
    color: #3E6DFD;
}
#blogside ul li a:hover{
    color: #F56A00;
}
#blog_o {
    text-align: center;
    width: 70%;
    margin-top: 0px;
    margin-bottom: 20px;
}

#blog .blogmain {
    text-align: center;
    margin-bottom: 55px;
    padding-bottom: 30px;
    padding-top: 30px;
    padding-right: 30px;
    padding-left: 30px;
    background-image: url(images/bg_blog.png);
    background-repeat: no-repeat;
    background-position: center top;
    background-color: #faf7f0;
}

#blog table {
	width: 100%;
	border-spacing: 6px 6px;
	padding-bottom: 10px;
}
#blog table tr .blogtext {
    text-align: left;
    padding-left: 30px;
    width: auto;
    background-repeat: no-repeat;
    background-position: left top;
    margin-top: 10px;
    margin-bottom: 10px;
    padding-bottom: 10px;
    padding-right: 10px;
    padding-top: 10px;
    background-color: #FFFFFF;
    border-radius: 10px;
}

#blog table tr .blogtext img {
    width: 50%;
    border: solid 4px #FFF;
    box-shadow: 1px 1px 4px 0px #D5D3D1;
    margin-top: 10px;
}
#blog .blogphoto {
	width: 33%;
	padding-top: 10px;
	padding-bottom: 10px;
}


#blog .blogphoto img {
	width: 90%;
	border:solid 10px #FFF;
	box-shadow: 1px 1px 4px 0px #D5D3D1;
}
#blog table tr .blogcomment {
	
	font-size: 75%;
	text-align: center;
	padding: 5px;
	margin:5px;
	background-color:#FFF276;
	border-radius:7px;
	-moz-border-radius:7px;
	-webkit-border-radius:7px;
}
#blog .blogdate {
    font-size: 12px;
    text-align: right;
    padding: 5px;
    width: auto;
    background-color: #FFF7F7;
    border-radius: 10px;
}

#blog dl {}
#blog dt {
    text-align: center;
    margin-bottom: 10px;
}
#blog dd {
    text-align: center;
    font-size: 12px;
    margin-left: 5px;
    margin-right: 5px;
    padding-top: 3px;
    padding-right: 3px;
    padding-bottom: 3px;
    padding-left: 3px;
    margin-top: 5px;
    background-color: #FFFFFF;
    border-radius: 10px;
}


.blogpdf {
	text-align: center;
	padding: 10px;
}
.blogpdf a {
    width: 97%;
    margin-left: auto;
    margin-right: auto;
    padding: 6px;
    display: block;
    background-color: #B94896;
    color: #FFFFFF;
    text-decoration: none;
}
.blogpdf a:hover {
    background-color: #8ED44D;
    color: #FFFFFF;
}

.youtube {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    margin-bottom: 15px;
}
.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}


/*ページ送り*/
.pager  ul.pagination {
  text-align: center;
  margin: 0;
  padding: 0;
}

.pager .pagination li {
    display: inline;
    margin: 0 2px;
    padding: 0;
    display: inline-block;
    background-color: #31A0DF;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    position: relative;
    font-size: 0.9em;
    list-style-type: none;
}

.pager .pagination li a{
  vertical-align: middle;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  display:table;
  color: #fff;
  text-decoration: none;
}

.pager .pagination li a span{
  display:table-cell;
  vertical-align:middle;
}

.pager .pagination li a:hover,
.pager .pagination li a.active{
    color: #430001;
    background-color: #FFDFEC;
    border-radius: 50%;
}





@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;
	}


	
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;
}
#greeting dt {
    width: 100%;
margin-bottom: 10px;
}
#greeting dd {
	width: 100%;
}	

.rinentxt {
    font-size: 1.1em;
    line-height: 1.5em;
    background-image: url(images/bg_rinen.png);
    background-repeat: no-repeat;
    background-position: center center;
    padding-top: 20px;
    padding-bottom: 20px;
    background-size: 100% 70%;
}
.houshintxt {
    font-size: 1.1em;
    line-height: 1.5em;
    background-image: url(images/bg_houshin.png);
    background-repeat: no-repeat;
    background-position: center center;
    padding-top: 20px;
    padding-bottom: 20px;
    background-size: 100% 70%;
}
.mokuhyoutxt {
    width: 100%;
    text-align: left;
	margin-bottom: 15px;
}
.mokuhyouphoto {
    width: 100%;
}
.tflex article {
	width: 100%;
	margin-left: auto;
	margin-right: auto;
    margin-bottom: 20px;
    padding: 10px;
	}
.tflex article dl {
    padding: 15px;
}		
	
#day1 {
	display: block;
	width: 100%;
	padding: 16px;
	margin-bottom: 20px;
}
#day2 {
	display: block;
	width: 100%;
	padding: 16px;
}	

#daybox table {
    width:100%;
}	
#daybox ul {
    width:100%;
}		
#daybox ul img {
	height: auto;
}
		
.eflex li {
	width: 100%;
    padding: 20px;
    margin-bottom: 25px;
    border-radius: 20px;
}
.eflex dt {
    width: 39%;
}	
.eflex dd {
    width: 60%;
    padding: 10px;
}	
	
.epflex li {
	width: 96%;
	margin-left: 2%;
	margin-right: 2%;
    margin-bottom: 40px;
}
.epflex li figure img {
    width: 100%;
    height: auto;
}	
.epflex li:nth-child(odd) figure img {
    width: 100%;
    height: auto;
}

.epflex li:nth-child(even) figure img {
    width: 100%;
    height: auto;
}
.other dl {
    background-color: #F5E3D3;
	width: 100%;
    padding: 20px;
    margin-bottom: 25px;
    border-radius: 20px;
}
	
	
	
#blog td{
	width: auto;
	display:block;
}

#blog table tr .blogphoto {
	width: auto;
	padding: 10px;
}
#blogside, #blog_o {
	width: 100%;
}	
#blogside {
    padding: 20px;
}
#blog .blogmain {
    padding-bottom: 20px;
    padding-top: 20px;
    padding-right: 20px;
    padding-left: 20px;
}
#blog .blogphoto img {
	width: 100%;
}
	
	
	
	
/*ページ送り*/
.pager .pagination li.pre,
  .pager .pagination li.next{
    display: inline-block;
    width: 40%;
    height: 40px;
    text-align: center;
	  
  }

  .pager .pagination li.pre a,
  .pager .pagination li.next a{
    width: 100%;
    text-align: center;

  }

  .pager .pagination li.pre span::after{
    content: "　前の10件へ";
  }

  .pager .pagination li.next span::before{
    content: "次の10件へ　";

  }	
	
	
	
.pager .pagination li {
	border-radius: 0%;
}
.pager .pagination li a:hover,
.pager .pagination li a.active{
	border-radius: 0%;
}
	
		
	
}

@media screen and (max-width:480px){


h1 {
	width: 80%;
	margin-right: auto;
	margin-left: auto;
}

footer .copy img {
	width:87%
}
	footer {
		padding-bottom: 100px;
	}
.pagetop {
bottom:40px;
	right: 0px;
}
.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;
	}

	
	#gaiyou td {
		display: block;
		width: 100%;
		padding: 8px;
		margin-bottom: 10px;
	}	
	#gaiyou th {
		display: block;
		width: 100%;
		padding: 8px;
	}

	
	
	
	
#tokushokuflex dl dt {
    width: 100%;
    text-align: left;
	margin-bottom: 10px;
}
#tokushokuflex dl dd {
	width: 100%;
}
#tokushokuflex dl dd img {
	width: 100%;
}

#tokushokuflex article:nth-child(odd) dl dt {
	order:1;
}
#tokushokuflex article:nth-child(odd) dl dd {
	order:2;
}
#tokushokuflex article:nth-child(even) dl dt {
	order:1;
}
#tokushokuflex article:nth-child(even) dl dd {
	order:2;
}	
	
	
	
	
	
	
	
	
	
	

#recruit dt {
    font-size: 1.3em;
    margin-bottom: 15px;
    color: #F44566;
	
}
#recruit dd {
    font-size: 1.1em;
}

#recruit dd div {
    font-size: 1.3em;
}

#recruitbox {
    width: 95%;
    margin-left: auto;
    margin-right: auto;
}
#recruit table {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 30px;
	border-spacing: 0px;
}
#recruit th {
    padding-top: 20px;
    padding-right: 20px;
    padding-left: 20px;
    padding-bottom: 20px;
    text-align: left;
    white-space: nowrap;
    vertical-align: top;
    font-weight: normal;
    background-color: #FFE695;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    font-size: 1.1em;
    background-image: url(images/bg263.png);
}
#recruit td {
    padding-top: 20px;
    padding-right: 20px;
    padding-left: 20px;
    padding-bottom: 20px;
    text-align: left;
    background-color: #FFFFFF;

}
	
	.ktxt {
		display: block;
		width: auto;
	}	
	.kpdf {
		display: block;
		width: auto;	
}	
		
.eflex dt {
    width: 44%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
}	
.eflex dd {
    width: 100%;
    padding: 10px;
}	
	
#blog table tr .blogtext {
    margin-top: 0px;
    margin-bottom: 0px;
}	
#blog table tr .blogphoto {
    width: auto;
    padding-right: 5px;
    padding-left: 5px;
    padding-top: 5px;
    padding-bottom: 5px;
}
#blog table tr .blogtext img {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}
		
	
	
}







.br-sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .br-pc {
    display: none;
  }

  .br-sp {
    display: inline-block;
  }
}
