﻿@charset "utf-8";
/* CSS Document */

/* パソコンで見たときは"pc"のclassがついた画像が表示される */	
/* ここからがリセットスタイルシートになります。
-------------------------------------------------------------- */

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, ins, kbd, q, s, samp, small, strike, sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
	border: 0;
	font-family: inherit;
	font-size: 100%;
	font-style: inherit;
	font-weight: inherit;
	margin: 0;
	outline: 0;
	padding: 0;
	vertical-align: baseline;
}
/*フォーカスとは、ブラウザの画面上でマウスをクリックし、入力状態にあるまでの動作を指します*/
:focus {/* remember to define focus styles! */
	outline: 0;
}
body {/*行の高さをフォントサイズと同じにしています*/
	line-height: 1;
}
ol, ul {
	list-style: none;
}
table {/* 隣接するセルのボーダーを結合し、間隔を0に指定しています */
	border-collapse: collapse;
	border-spacing: 0;
}
caption, th, td {/*captionとはテーブル（表）にキャプションをつける。キャプションとは、主に図版や写真について説明のために付け加えられた文字情報のことである。*/
	font-weight: normal;
	text-align: left;
}
blockquote:before, blockquote:after, q:before, q:after {/*blockquote要素、q要素の前後にコンテンツを追加しないように指定しています*/
	content: "";
}
blockquote, q {/*引用符の表示が出ないようにしています*/
	quotes: "" "";
}
a img {
	border: 0;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {/*html5の新しいタグをブロック要素として表示される。*/
	display: block;
}
/* reset.cssに下記を追加 */
header, footer, main, nav, article, aside, section {
	display: block;
}
/* ここまでがリセットスタイルシートになります。
-------------------------------------------------------------- */
body, td, th {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.wf-roundedmplus1c {
	font-family: "Rounded Mplus 1c";
}
html {
	margin: 0px;
	padding: 0px;
	height: 100%;
	width: 100%;
}
body {
	margin: 0px;
	padding: 0px;
}
.clearfix:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}
.clearfix {
	zoom: 1;
}
a {
	font-weight: bold;
	text-transform: none;
	color: #09C;
}
a:hover {
	color: #F60;
	text-decoration: underline;
}
.link-item {
	position: relative;
	width: 100%;
	height: 100%;
}
.link-item a {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;
}
/*=======================================================*/
/*　　　　　　　　　header                               */
/*=======================================================*/

header {
	box-sizing: border-box;
	width: 100%;
	margin: 0px;
	min-height: 10vh; /*最小の高さ*/
	background-color: #FFF9CC;
	text-align: center;
	background-image: url(images/bg_hrader2.png), url(images/bg_hrader.png);
	background-repeat: no-repeat, repeat-x;
	background-position: center top, center top;
	background-size: 100%, auto;
}
.logo {
	padding: 15px 1em 50px 1em;
 margin- inline: auto;
}
.logo img {
	max-width: 100%;
	height: auto;
}
/*=======================================================*/
/*　　　　　　　　 footer                                */
/*=======================================================*/

#footer {
	width: 100%;
	text-align: center;
	color: #993399;
	background-color: #EDDBFF;
	background-image: url(images/bg3_top.png), url(images/bg_footer.png);
	background-position: center top, center top 15%;
	background-repeat: repeat-x, no-repeat;
	background-size: auto, 100%;
	box-sizing: border-box;
	padding: 80px 1em 50px 1em;
}
#footer img {
	max-width: 100%;
	height: auto;
	margin-bottom: 20px;
}
/*=======================================================*/
/*　　　　　　　　　ナビゲーション                       */
/*=======================================================*/

nav {
	width: 100%;
}
nav ul {
	width: min(100% - 2em, 1000px);
	margin-inline: auto;
	box-sizing: border-box;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	align-items: stretch;
	padding-top: 10px;
	padding-bottom: 20px;
}
nav ul li {
	width: calc(100% / 6 - 10px);
	height: auto;
	display: block;
	text-align: center;
	align-self: center;
}
nav ul li img {
	max-width: 90%;
	height: auto;
	transition-duration: 0.5s;
}
/*ナビボタン*のアニメーション*/

nav a:hover img {
	transform: scale(1.2, 1.2);
}
 @media screen and (max-width:768px) {
nav ul li img {
	max-width: 90%;
	height: auto;
	transition-duration: 0.5s;
}
nav ul li {
	width: calc(100% / 3 - 10px);
	width : -webkit-calc(100% / 3 - 10px);
	margin-bottom: 2em;
}
}
 @media screen and (max-width:480px) {
nav ul li {
	width: calc(100% / 2 - 10px);
	width : -webkit-calc(100% / 2 - 10px);
	margin-bottom: 2em;
	;
}
}
/*-----------------------------------*/
/*　　　     SP用ナビ　　 　　　  　 */
/*-----------------------------------*/

/*=======================================================================*/

#sp_navi {
	display: none;
	z-index: 9999;
}
/* ++++ トグルボタン ++++ */
	
#navTgl {
	display: none;
}
label {
	cursor: pointer;
	position: fixed;
	top: 0;
	right: 0;
}
.open {
	z-index: 9998;
	box-sizing: border-box;
	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: #9966CC;/*トグルカラー*/
	border-radius: 0px;
}
.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: 9997;
	width: 100%;
	height: 100%;
	pointer-events: none;
	transition: background .5s;
}
.active + .open span {
	transform: scaleX(0);
}
.active + .open::before {
	transform: rotate(45deg);
}
.active + .open::after {
	transform: rotate(-45deg);
}
.active ~ .close {
	background-color: rgba(255,255,255,0.9); /*背景色*/
}
/* ++++ ドロワーメニュー ++++ */
.menu {
	z-index: 9997;
	position: fixed;
	overflow: auto;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 60px 6% 6% 6%;
	margin: 0;
	box-sizing: border-box;
	transform: translateX(-100%);
	transition: transform .5s cubic-bezier(0.33, 1.01, 0.33, 0.97);
}
.active ~ .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;
}
}
/**=======================================================**/



/*=======================================================*/
/*　　　　　　　　　TOPに戻る                            */
/*=======================================================*/

/*jquery トップに戻る　*/
#page-top {
	position: fixed;
	bottom: 20px;
	right: 5px;
	font-size: 77%;
	z-index: 99999;
}
#page-top img {
	max-width: 100%;
	height: auto;
}
#page-top a {
	text-decoration: none;
	color: #fff;
	width: 70px;
	text-align: center;
	display: block;
}
#page-top a:hover {
	text-decoration: none;
	opacity: 0.5;
}
/*=======================================================*/
/*　　　　　　　　　全ページ共通                         */
/*=======================================================*/

/*mainとboxエリア*/

main {
	height: 100%;
	min-height: 80vh; /*最小の高さ*/
	width: 100%;
	margin-right: auto;
	margin-left: auto;
}
.txt_box {
	/*width: 90%;*/
	margin-inline: auto;
	line-height: 135%;
	color: #004080;
}
.box {
	/*width: 90%;*/
	margin-inline: auto;
}
/*リンクのホバー*//*
a:hover {
	opacity: 0.6;
}
*/

.link-item {
	position: relative;
	width: 100%;
	height: 100%;
}
.link-item a {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;
}
/*-------------見出し-----------------*/
h1 {
	width: 100%;
	height: 150px;
	background-image: url(images/bg_h1.png);
	background-position: center center;
	background-repeat: repeat-x;
	display: flex;
	justify-content: center;
	align-items: center;
	font-family: "Mochiy Pop One", sans-serif;
	font-size: 1.8em;
	margin-bottom: .5em;
}
h2 {
	box-sizing: border-box;
	width: min (100% - 2em);
	margin-bottom: 1em;
	margin-inline: auto;
	font-size: 1.8em;
	color: #fff;
	display: block;
	background-repeat: no-repeat;
	background-position: center center;
	font-family: "Mochiy Pop One", sans-serif;
	font-weight: 400;
	font-style: normal;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100px;
}
#toppage h2 {
	background-image: url(images/h2_index.png);
}
#about h2 {
	background-image: url(images/h2_about.png);
}
#life h2 {
	background-image: url(images/h2_life.png);
}
#kosodate h2 {
	background-image: url(images/h2_kosodate.png);
}
/*----PDFリンク----*/
.pdf {
	width: min(100% - 2em, 800px);
	margin-inline: auto;
	box-sizing: border-box;
}
.pdf li {
	width: 100%;
	box-sizing: border-box;
	margin-bottom: 1em;
	background-color: #E0EAF1;
	border-radius: 15px;
	padding: 0.5em 1em 0.5em 1em;
}
.pdf li a {
	text-decoration: none;
	display: block;
	color: #009966;
	width: 100%;
	padding: 0.5em 2em 0.5em 2em;
	box-sizing: border-box;
	border-radius: 15px;
}
.pdf li ::before {
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: "\f15b";
	margin-right: 1em;
	color: #98D1E4
}
/* マウスオーバー時 */
.pdf li:hover {
	color: #0066CC;
	background-color: #CFEFDF;
	cursor: pointer;
}
/*-------テキストの修飾-----------------*/


.txt_r {
	text-align: right;
}
.txt_l {
	text-align: left;
}
/*--------リンクエリアの設定-------------*/

.link-item {
	position: relative;
	width: 100%;
	height: 100%;
}
.link-item a {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;
}
/*=======================================================*/
/*　　　　　　レスポンシブテーブル                       */
/*=======================================================*/



.re_table {
/*border-collapse: collapse;
	width: 100%;*/
}
.re_table th, .re_table td {
/*border: 1px solid #999999;
	padding: 8px;*/
}
.re_table th {
	text-align: left;
}
 @media only screen and (max-width: 768px) {
.re_table tr, .re_table th, .re_table td {
	display: block;
	width: auto;
}
.re_table tr:first-child {
/*border-top: 1px solid #999999;*/
}
.re_table th, .re_table td {
/*border-top: none;*/
}
}
/*レスポンシブテーブルここまで*/





/*=======================================================*/
/*　　　　　　　　　写真の表示　　                       */
/*=======================================================*/
/*アルバム　横4枚*/
.album4 {
	width: min(100% - 2em, 1200px);
	margin: 0 auto 2em auto;
	box-sizing: border-box;
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
}
.album4 li {
	width: calc(100% / 4 - 10px);
	margin-bottom: 1em;
	text-align: center;
	box-sizing: border-box;
}
.album4 li img {
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 300px;
	margin-bottom: 10px;
	border-radius: 1em;
	box-shadow: 3px 3px 5px rgba(0,0,0,0.3);
}
.album4 li p {
	font-size: 0.8em;
	color: #663300;
	box-sizing: border-box;
	width: 100%;
	padding: 5px 10px 5px 10px;
	text-align: center;
}
/*アルバム　横3枚*/
.album3 {
	width: min(100% - 2em, 1200px);
	margin: 0 auto 2em auto;
	box-sizing: border-box;
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
}
.album3 li {
	width: calc(100% / 3 - 10px);
	margin-bottom: 1em;
	text-align: center;
	box-sizing: border-box;
}
.album3 li img {
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 300px;
	margin-bottom: 10px;
	border-radius: 1em;
	box-shadow: 3px 3px 5px rgba(0,0,0,0.3);
}
.album3 li p {
	font-size: 0.8em;
	color: blue;
	box-sizing: border-box;
	width: 100%;
	padding: 5px 10px 5px 10px;
	text-align: center;
}
/*アルバム　横2枚*/	
.album2 {
	width: 90%;
	max-width: 1000px;
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
	margin-right: auto;
	margin-left: auto;
}
.album2 li {
	width: calc(100% / 2 - 10px);
	margin-bottom: 1em;
	text-align: center;
}
.album2 li img {
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 300px;
	margin-bottom: 10px;
	border-radius: 1em;
	box-shadow: 3px 3px 5px rgba(0,0,0,0.3);
}
.album2 li p {
	font-size: 0.8em;
	color: blue;
	box-sizing: border-box;
	width: 100%;
	padding: 5px 10px 5px 10px;
	text-align: center;
}
 @media screen and (max-width:768px) {
.album3 li, .album4 li {
	width: calc(100% / 2 - 10px);
	margin-bottom: 1em;
}
}
 @media screen and (max-width:480px) {
.album2 li {
	box-sizing: border-box;
	width: 100%;
	height: autot;
	padding: 10px;
	margin-bottom: 1em;
}
.album3 li, .album4 li {
	box-sizing: border-box;
	width: 100%;
	height: auto;
	padding: 10px;
	margin-bottom: 1em;
}
}
/*写真の表示ここまで*/



/*=======================================================*/
/*　　　　　　　　　Flex-box                             */
/*=======================================================*/


/*左右の端による配置 ※左右いっぱいにしたいときはこちら*/	
.flexboxb {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: stretch;
}
/*均等割り付け*/	
.flexboxa {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	align-items: stretch;
}
/*中のbox*/		
.inbox2 {
	width: calc(100% / 2 - 20px);
	margin-bottom: 10px;
}
.inboxy {
	width: calc(100% / 2 - 20px);
	margin-bottom: 10px;
}
.inbox3 {
	width: calc(100% / 3 - 10px);
	margin-bottom: 10px;
}
.inbox4 {
	width: calc(100% / 4 - 10px);
	margin-bottom: 10px;
}
 @media screen and (max-width:768px) {
.inboxy {
	width: calc(100% / 1 - 0px);
}
.inbox2 {
	width: calc(100% / 1 - 0px);
}
.inbox3 {
	width: calc(100% / 2 - 10px);
}
.inbox4 {
	width: calc(100% / 2 - 10px);
}
}
 @media screen and (max-width:480px) {
.inbox3 {
	width: calc(100% / 1 - 0px);
}
.inbox4 {
	width: calc(100% / 1 - 0px);
}
}
/*=======================================================
　　　　　　　　PCスマホ表示の切り替

 　　　　　　 .pc　.sp　タブレット以下切り替え
 
 　　　　　　 .pc2 .sp2　スマホ切り替え          
       
=======================================================*/




/*-- PC版表示CSS  --*/


.pc, .pc2 {
	display: block;
}
.sp, sp2 {
	display: none;
}


/*-- スマホ版表示CSS  --*/


@media screen and (max-width: 768px) {
.pc {
	display: none;
}
.sp {
	display: block;
}
}
 @media screen and (max-width: 480px) {
.pc2 {
	display: none;
}
.sp2 {
	display: block;
}
}
/*=========================================================================================================================================================*/

/*----------------ここより下各ページ---------------------------*/

/*=========================================================================================================================================================*/



.contents {
	width: min(100% - 2em, 1200px);
	margin-inline: auto;
}
.bg1 {
	background-image: url(images/bg_fujil.png), url(images/bg_fujir.png);
	background-repeat: no-repeat, no-repeat;
	background-position: left top, right top;
	background-size: 30%, 30%;
}
.bg2 {
	background-image: url(images/bg2_fujil.png), url(images/bg2_fujir.png);
	background-repeat: no-repeat, no-repeat;
	background-position: left top, right top;
	background-size: 30%, 30%;
}
.bg3 {
	background-image: url(images/bg3_fujil.png), url(images/bg3_fujir.png);
	background-repeat: no-repeat, no-repeat;
	background-position: left top, right top;
	background-size: 30%, 30%;
}
.bg4 {
	background-image: url(images/bg4_fujil.png), url(images/bg4_fujir.png);
	background-repeat: no-repeat, no-repeat;
	background-position: left top, right top;
	background-size: 30%, 30%;
}
/*-----------------------------------------------------------------------
　　　　■■■　　　TOPページ　　　■■■
-------------------------------------------------------------------------*/


.bg_toppage {
	padding-top: 100px;
	padding-bottom: 100px;
	background-color: #F5E2FA;
	background-image: url(images/bg3_top.png), url(images/bg3_bottom.png), url(images/bg_stripe.png);
	background-position: center top, center bottom, center center;
	background-repeat: repeat-x, repeat-x, repeat;
}
/*-------TOPイメージ-----*/


#topimg {
	position: relative;
}
.topphoto {
	width: 100%;
}
.topphoto img {
	width: 100%;
	height: auto;
}
.topimg_top {
	position: absolute;
	top: 0;
	left: 0;
	background-image: url(images/topimg_top.png);
	background-position: center top;
	background-repeat: no-repeat;
	background-size: 100%;
	width: 100%;
	height: 120px;
}
.topimg_bottom {
	position: absolute;
	bottom: 0;
	left: 0;
	background-image: url(images/topimg_bottom.png);
	background-position: center bottom;
	background-repeat: no-repeat;
	background-size: 100%;
	width: 100%;
	height: 100px;
}
/*-----BBS新着情報-----*/


#board {
	margin: 2em auto 2em auto;
	width: min(100% - 2em, 1000px);
}
#board iframe {
	background-color: #FFF;
	height: 500px;
	margin-right: auto;
	margin-left: auto;
	width: 100%;
	border-radius: 2vw 0 0 2vw;       /* 角丸の指定 */
	border: 3px solid #0cc;
}
/*----基本情報----*/


#kihon {
}
#kihon .container {
	width: min(100% - 2em, 1000px);
	margin-inline: auto;
}
#kihon .box {
}
#gaiyo {
	box-sizing: border-box;
	padding: 1em;
	background: #FFFFFF;
	border-radius: 1em;
	border: 3px solid #82DFDB;
	margin-bottom: 2em;
}
#gaiyo table {
	box-sizing: border-box;
	width: 100%;
	margin-right: auto;
	margin-left: auto;
	line-height: 1.2em;
}
#gaiyo .re_table tr {
	background-image: url(images/bg_sen_bottom.png);
	background-repeat: repeat-x;
	background-position: left bottom;
}
#gaiyo .re_table th {
	white-space: nowrap;
	padding-right: 1em;
	color: #009999;
	padding-top: .5em;
	padding-bottom: 1em;
	font-size: 1.1em;
	font-family: "Zen Maru Gothic", serif;
	font-weight: 600;
	font-style: normal;
}
#gaiyo .re_table td {
	padding-top: 0.5em;
	padding-bottom: 1em;
	color: #535353;
	line-height: 150%;
}
#gaiyo table h3 {
	color: #2C8F9A;
}
/*----Googleマップ----*/

#map {
	box-sizing: border-box;
	width: 100%;
}
#map iframe {
	border-radius: 1em;
	width: 100%;
	height: 450px;
	border: 3px solid #82DFDB;
	box-sizing: border-box;
}
/*--------沿革--------*/

#enkaku {
	margin-bottom: 20px;
}
#enkaku .container {
	width: min(100% - 2em, 750px);
	margin-inline: auto;
}
#enkaku dl {
	display: flex;
	flex-wrap: wrap;
}
#enkaku dl dt {
	width: 20%;
	box-sizing: border-box;
	margin-bottom: 1em;
	color: #339999;
	font-family: "M PLUS Rounded 1c", sans-serif;
	font-weight: 600;
	font-style: normal;
	border-bottom: solid 2px #C2E6E9;
	padding-bottom: 5px;
}
#enkaku dl dd {
	width: 80%;
	box-sizing: border-box;
	margin-bottom: 1em;
	border-bottom: solid 2px #C2E6E9;
	padding-bottom: 5px;
	color: #666666;
}
/*--------園舎案内--------*/

#ensha {
	margin-bottom: 100px;
}
#ensha .container {
	width: min(100% - 2em, 1200px);
	margin-inline: auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: stretch;
	margin-bottom: 2em;
}
#ensha .box {
	padding: 1em;
	box-sizing: border-box;
}
#ensha .box img {
	max-width: 100%;
	height: auto;
}
/*--------苦情解決-------*/	
#kujo {
	margin-bottom: 50px;
	border-top-width: 5px;
	border-top-style: dotted;
	border-top-color: #ECD9EC;
}
#kujo .container {
	width: min(100% - 2em, 200px);
	margin-inline: auto;
	box-sizing: border-box;
	padding-top: 100px;
	text-align: center;
}
#kujo a {
	color: #0CC;
	font-size: 16px;
	font-weight: bold;
	background: transparent;
	width: 200px;
	height: 60px;
	text-align: center;
	line-height: 60px;
	border: 2px solid #0cc;
	position: relative;
	z-index: 1;
	display: block;
	overflow: hidden;
	transition: .3s;
	text-decoration: none;
	box-sizing: border-box;
}
#kujo a::before, #kujo a::after {
	content: "";
	width: 100%;
	position: absolute;
	top: 0;
	z-index: -1;
	transition: transform ease .3s;
}
#kujo a::before {
	right: -60px;
	border-right: 60px solid transparent;
	border-bottom: 60px solid #0cc;
	transform: translateX(-100%);
}
#kujo a::after {
	left: -60px;
	border-left: 60px solid transparent;
	border-top: 60px solid #0cc;
	transform: translateX(100%);
}
#kujo a:hover {
	color: #fff;
}
#kujo a:hover::before {
	transform: translateX(-49%);
}
#kujo a:hover::after {
	transform: translateX(49%);
}
/*-----------------------------------------------------------------------
　　　　■■■　　　園の紹介　　　■■■
-------------------------------------------------------------------------*/
.bg_about {
	padding-top: 100px;
	padding-bottom: 100px;
	background-color: #FDECF1;
	background-image: url(images/bg3_top.png), url(images/bg3_bottom.png), url(images/bg_stripe.png);
	background-position: center top, center bottom, center center;
	background-repeat: repeat-x, repeat-x, repeat;
}
#about h1 {
	background-color: #FEE2EC;
	color: #FF6699;
}
#about {
}
/*---------保育目標--------*/
#moku {
	padding-top: 2em;
}
.moku_top {
	width: min(100% - 2em, 800px);
	margin-inline: auto;
	margin-bottom: 2em;
}
.moku_top h3 {
	text-align: center;
	margin-bottom: 1em;
}
.moku_top h3 img {
	max-width: 100%;
	height: auto;
}
.moku_top p {
	font-size: 1.2em;
	color: #663333;
	line-height: 135%;
	font-family: 'Kosugi Maru', sans-serif;
}
#moku .container {
	width: min(100% - 2em, 1000px);
	margin-inline: auto;
	margin-bottom: 2em;
}
#moku .container h3 {
	text-align: center;
	font-family: 'Mochiy Pop One', sans-serif;
	font-size: 1.6em;
	margin-bottom: 1em;
}
#moku .box1, #moku .box2, #moku .box3 {
	line-height: 150%;
	text-align: center;
	box-sizing: border-box;
	padding: 2em;
	color: #663300;
	font-family: 'Kosugi Maru', sans-serif;
}
#moku .box1 {
	border-radius: 51% 48% 47% 53% / 50% 58% 40% 49%;
	background-color: #FFE8E8;
}
#moku .box2 {
	border-radius: 42% 59% 39% 61% / 62% 52% 47% 37%;
	background-color: #C9F1E2;
}
#moku .box3 {
	border-radius: 42% 59% 52% 51% / 65% 67% 36% 34%;
	background-color: #FDEDD2;
}
#moku .box1 h3 {
	color: #FF6633;
}
#moku .box2 h3 {
	color: #009999;
}
#moku .box3 h3 {
	color: #FF9966;
}
/*---------園長方針--------*/
#hoshin {
}
#hoshin .container {
	width: min(100% - 2em, 1000px);
	margin-inline: auto;
	margin-bottom: 2em;
	text-align: center;
	line-height: 150%;
	font-family: 'Mochiy Pop One', sans-serif;
	font-size: 1.4em;
	margin-bottom: 2em;
	color: #663333;
}
/*---------園の特徴--------*/
#toku {
}
#toku .container {
	width: min(100% - 2em, 1200px);
	margin-inline: auto;
	margin-bottom: 2em;
}
#toku .box {
	background-color: #FBF9F7;
	box-sizing: border-box;
	border-radius: 2vw;
	padding: 5em 1em 1em 1em;
	line-height: 135%;
	color: #663333;
	position: relative;
	border: 4px solid #FEB4BF;
}
#toku .box h4 {
	font-size: 1.1em;
	color: #993333;
	font-family: 'Kosugi Maru', sans-serif;
	margin-bottom: 1em;
	background-color: #FFEAEA;
	padding: 0.5em;
	border-radius: 20px;
}
#toku .box h5 {
	font-size: 1em;
	color: #336699;
	font-family: 'Kosugi Maru', sans-serif;
	margin-bottom: 0.5em;
}
#toku .box ul {
	margin-bottom: 1.5em;
}
#toku h3 {
	width: 100%;
	box-sizing: border-box;
	padding: 0.7em;
	border-radius: 2vw 2vw 0 0;
	background-color: #FEB4BF;
	position: absolute;
	top: -4px;
	left: 0;
	text-align: center;
	color: #fff;
	font-family: 'Mochiy Pop One', sans-serif;
	font-size: 1.4em;
	font-family: 'Kosugi Maru', sans-serif;
}
#toku hr {
	border-top-width: 3px;
	border-top-style: solid;
	border-top-color: #FFE1E9;
}
.list1 li:before {
	content: "\f0c8"; /*アイコン番号*/
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	margin-right: 5px;
	color: #FFBDD2;
　/*色*/
}
.list1 li {
	display: flex;
	align-items: baseline;
	　　justify-content: center;
}
.list2 li:before {
	content: "\f621"; /*アイコン番号*/
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	margin-right: 5px;
	color: #F69;
　/*色*/
}
.list2 li {
	display: flex;
	align-items: baseline;
	　　justify-content: center;
	margin-bottom: .5em;
}
/*---------入園について--------*/
#nyuen {
}
#nyuen .container {
	width: min(100% - 2em, 800px);
	margin-inline: auto;
	margin-bottom: 2em;
	line-height: 150%;
	color: #663333;
}
#nyuen h3 {
	width: 100%;
	padding: 0.5em 1em;
	box-sizing: border-box;
	border-radius: 1vw;
	margin-bottom: 1em;
	background-color: #FED6DC;
	font-size: 1.2em;
	font-family: "Kosugi Maru", sans-serif;
	font-weight: 600;
	color: #E45878;
}
#nyuen .info {
	box-sizing: border-box;
	width: min(100% - 2em, 400px);
	margin: 1em auto;
	padding: 1em;
	background-color: #FDEAF2;
	border-radius: 1vw;
	color: #006699;
	font-family: 'Kosugi Maru', sans-serif;
	text-align: center;
}
/*-----------------------------------------------------------------------
　　　　■■■　　　園の生活　　　■■■
-------------------------------------------------------------------------*/
.bg_life {
	padding-top: 100px;
	padding-bottom: 100px;
	background-color: #E7FAE4;
	background-image: url(images/bg3_top.png), url(images/bg3_bottom.png), url(images/bg_stripe.png);
	background-position: center top, center bottom, center center;
	background-repeat: repeat-x, repeat-x, repeat;
}
#life {
}
#life h1 {
	background-color: #D0F1AB;
	color: #64BA3A;
}
/*----------------一日の生活----------------*/

#daily {
	padding-top: 2em;
}
#daily .container {
	box-sizing: border-box;
	width: min(100% - 2em, 1000px);
	margin: 2em auto;
}
#daily .box1, #daily .box2 {
	box-sizing: border-box;
	padding: 70px 1em 1em 1em;
	border-radius: 2vw;
	position: relative;
	background-image: url(images/bg_daybox.png), url(images/bg_daybox.png);
	background-position: top left, top right;
	background-repeat: no-repeat, no-repeat;
	background-size: 40%, 40%;
}
#daily .box1 {
	background-color: #EEDEFC;
}
#daily .box2 {
	background-color: #FDEDBB;
}
#daily .box1 h3, #daily .box2 h3 {
	text-align: center;
	width: 100%;
	position: absolute;
	top: -31px;
	left: 0;
}
#daily .box1 table, #daily .box2 table {
	box-sizing: border-box;
	width: min(100%, 350px);
	margin-inline: auto;
}
#daily table tr {
	background-image: url(images/bg_sen2_bottom.png);
	background-position: left bottom;
	background-repeat: repeat-x;
}
#daily .box1 table th {
	font-family: "M PLUS Rounded 1c", sans-serif;
	font-weight: 600;
	padding: .5em;
	color: #B53CB5;
	font-size: 1.3em;
}
#daily .box2 table th {
	font-family: "M PLUS Rounded 1c", sans-serif;
	font-weight: 600;
	padding: .5em;
	color: #DB6639;
	font-size: 1.3em;
}
#daily table td {
	padding: 1em;
	font-family: "Kosugi Maru", sans-serif;
	line-height: 150%;
	color: #666666;
}
/*---------------年間行事------------------*/

#year {
}
#year .container {
	box-sizing: border-box;
	width: min(100% - 70px, 1000px);
	margin: 2em auto;
}
.y_info {
	width: 100%;
	padding: 1em;
	box-sizing: border-box;
	text-align: center;
	font-family: "Kosugi Maru", sans-serif;
	color: #663300;
	margin-bottom: 1em;
}
.inboxy {
	box-sizing: border-box;
	margin-bottom: 3em;
	background-color: #FFFFFF;
	border-radius: 2vw;
	font-family: "Kosugi Maru", sans-serif;
}
.inboxy h3 {
	width: 100%;
	height: 80px;
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	align-items: center;
	font-family: "Stick", sans-serif;
	font-weight: 400;
	font-size: 2em;
	margin-bottom: 1em;
}
.haru {
	border: 5px solid #FBCCE2;
	color: #ED749E;
}
.natu {
	border: 5px solid #9FDD9D;
	color: #339966;
}
.aki {
	border: 5px solid #F8B398;
	color: #CC6666;
}
.fuyu {
	border: 5px solid #B5CADB;
	color: #6666CC;
}
.mon {
	border: 5px solid #DBA3ED;
	color: #663399;
}
.etc {
	border: 5px solid #88D9D2;
	color: #009999;
}
.haru h3 {
	background-image: url(images/bg_haru.png);
	background-position: center bottom;
	background-repeat: no-repeat;
}
.natu h3 {
	background-image: url(images/bg_natu.png);
	background-position: center bottom;
	background-repeat: no-repeat;
}
.aki h3 {
	background-image: url(images/bg_aki.png);
	background-position: center bottom;
	background-repeat: no-repeat;
}
.fuyu h3 {
	background-image: url(images/bg_fuyu.png);
	background-position: center bottom;
	background-repeat: no-repeat;
}
.mon h3 {
	background-image: url(images/bg_mon.png);
	background-position: center bottom;
	background-repeat: no-repeat;
}
.etc h3 {
	background-image: url(images/bg_etc.png);
	background-position: center bottom;
	background-repeat: no-repeat;
}
.inboxy ul {
	width: min(90%, 250px);
	margin-inline: auto;
	margin-bottom: 2em;
}
.inboxy ul li {
	margin-bottom: 1em;
}
/*--------年間目標--------*/
#y_moku {
}
#y_moku .container {
	box-sizing: border-box;
	width: min(100% - 2em, 1200px);
	margin: 2em auto;
}
#y_moku .inbox3 {
	box-sizing: border-box;
	padding: 1em;
	border-radius: 2vw;
	background-color: #E1F2D2;
}
#y_moku h3 {
	margin-bottom: 1em;
	font-family: "Kiwi Maru", serif;
	text-align: center;
	border-bottom: solid 2px;
	padding-bottom: 10px;
	font-size: 1.5em;
	color: #009900;
}
#y_moku ul {
}
#y_moku ul li {
	margin-bottom: 1em;
	line-height: 135%;
	color: #663333;
}
#y_moku li {
	display: flex;
	align-items: baseline;
	　　justify-content: center;
}
#y_moku li:before {
	content: "\f621"; /*アイコン番号*/
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	margin-right: 5px;
	color: #093;
　/*色*/
}
/*-----------------------------------------------------------------------
　　　　■■■　　　子育て支援センター　　　■■■
-------------------------------------------------------------------------*/
.bg_kosodate {
	padding-top: 100px;
	padding-bottom: 50px;
	background-color: #DCEFFE;
	background-image: url(images/bg3_top.png), url(images/bg3_bottom.png), url(images/bg_stripe.png);
	background-position: center top, center bottom, center center;
	background-repeat: repeat-x, repeat-x, repeat;
}
#kosodate {
}
#kosodate h1 {
	background-color: #74C0FA;
	color: #FFFFFF;
	text-align: center;
}
#medakakko_top {
	background-image: url(images/bg_kosodate.png);
	background-repeat: repeat-x;
	background-position: center top;
}
#medakakko_top h3 {
	text-align: center;
	font-family: "RocknRoll One", sans-serif;
	font-size: 2em;
	color: #3399CC;
	margin-bottom: 1em;
}
.kosodate_img {
	text-align: center;
	box-sizing: border-box;
	width: min(100% - 2em, 900px);
	margin-inline: auto;
	padding-bottom: 1em;
}
#kosodate_img img {
	max-width: 100%;
	height: auto;
}
#medakakko_top .container {
	width: min(100% - 2em, 700px);
	margin-inline: auto;
	margin-bottom: 3em;
	box-sizing: border-box;
	font-size: 1.3em;
	font-family: "Kosugi Maru", sans-serif;
	color: #955F42;
	font-size: 1.3em;
}
#medakakko_top .container2 {
	width: min(100% - 2em, 700px);
	margin-inline: auto;
	margin-bottom: 2em;
	box-sizing: border-box;
	font-size: 1.3em;
	font-family: "Kosugi Maru", sans-serif;
	color: #955F42;
	font-size: 1em;
	line-height: 150%;
}
#medakakko_top .container2 h4 {
	text-align: center;
	font-family: "RocknRoll One", sans-serif;
	font-size: 1.5em;
	color: #FF9966;
	margin-bottom: 1em;
}
#medakakko_top .container2 .box {
	width: min(100% - 2em, 550px);
	margin-inline: auto;
	margin-bottom: 2em;
	background-color: #ECF8FD;
	box-sizing: border-box;
	border-radius: 20px;
	padding: 1em;
}
#medakakko_top .container2 .box h5 {
	text-align: center;
	color: #0066CC;
	font-family: "RocknRoll One", sans-serif;
	font-size: 1.3em;
	margin-bottom: 1em;
}
#medakakko_top .container2 .box .txt1 {
	text-align: center;
	color: #0066CC;
	font-size: 1.1em;
	margin-bottom: 1em;
}
#medakakko_top .container2 .tel {
	text-align: center;
	line-height: 150%;
	font-size: 1.2em;
}
#medakakko_top .container2 .box .list2 {
	padding-top: 1em;
}
	
#medakakko {
}
#medakakko .container {
	width: min(100% - 2em, 1200px);
	margin-inline: auto;
	margin-bottom: 2em;
	box-sizing: border-box;
}

#medakakko .box {
	box-sizing: border-box;
	background-color: #FFFFFF;
	background-image: url(images/bg_medaka.png);
	background-repeat: no-repeat;
	background-position: right bottom;
	line-height: 135%;
	color: #663300;
	padding: 3em 1em 1em 1em;
	border-radius: 1vw;
	margin-bottom: 3em;
	position: relative;
	border: solid 3px #FAE492;
}
#medakakko .box h3 {
	position: absolute;
	top: -20px;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	box-sizing: border-box;
	padding: 0.5em;
	background-color: #FAE492;
	color: #933;
	width: 80%;
	text-align: center;
	font-family: 'RocknRoll One', sans-serif;
	font-size: 1.1em;
	border-radius: 20px;
}
#medakakko .box .info {
	width: 80%;
	margin-inline: auto;
	box-sizing: border-box;
	padding: 0.5em;
	margin-bottom: 1em;
	line-height: 150%;
	color: #3366CC;
	font-family: "Kosugi Maru", sans-serif;
	border-top-width: 3px;
	border-bottom-width: 3px;
	border-top-style: dotted;
	border-right-style: none;
	border-bottom-style: dotted;
	border-left-style: none;
	border-top-color: #74C0FA;
	border-bottom-color: #74C0FA;
	text-align: center;
}
.information {
	box-sizing: border-box;
	padding: 3em 1em;
	line-height: 150%;
	width: min(100% - 2em, 350px);
	margin-inline: auto;
	text-align: center;
}
.information a {
	color: #fff;
	font-size: 1.5em;
	font-weight: bold;
	padding: 18px 30px;
	display: inline-block;
	transition: .3s;
	text-decoration: none;
	font-family: "Kosugi Maru", sans-serif;
	background-color: #FE8D67;
}
.information a:hover {
	border-radius: 30px;
}
/*---------------------------------レスポンシブ-------------------------------------------------*/



/*----------------------------------------------------------------------------------*/
/*----------------------タブレット以下での表示--------------------------------------*/
/*----------------------------------------------------------------------------------*/





.------sp_w767------------------------- {
}
@media screen and (max-width:767px) {
}
 @media screen and (max-width:768px) {
.------sp_w768------------------------- {
}
/*======================================
            sp-index
======================================*/

#daily .box1 {
	margin-bottom: 50px;
}
}





/*--------------------------------------------------------------------------------*/
/*----------------------スマートフォンでの表示------------------------------------*/	 
/*--------------------------------------------------------------------------------*/




 @media screen and (max-width:480px) {
.------sp_w480------------------------- {
}
/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */	 

body {
	font-size: 18px;
}
header {
	box-sizing: border-box;
	width: 100%;
	margin: 0px;
	min-height: 10vh; /*最小の高さ*/
	background-color: #FFF9CC;
	text-align: center;
	background-image: url(images/sp_bg_hrader2.png), url(images/bg_hrader.png);
	background-repeat: no-repeat, repeat-x;
	background-position: center top, center top;
	background-size: 100%, auto;
}
.logo {
	padding: 80px 1em 30px 1em;
 margin- inline: auto;
}
.logo img {
	max-width: 100%;
	height: auto;
}
#footer {
	padding-bottom: 100px;
	background-image: url(images/bg3_top.png), url(images/sp_bg_footer.png);
}
h2 {
	box-sizing: border-box;
	width: 80%;
	margin-bottom: 1em;
	margin-inline: auto;
	font-size: 1.2em;
	color: #fff;
	display: block;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
	font-family: "Mochiy Pop One", sans-serif;
	font-weight: 400;
	font-style: normal;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 80px;
}
#board iframe {
	background-color: #FFF;
	height: 300px;
	margin-right: auto;
	margin-left: auto;
	width: 100%;
	border-radius: 2vw 0 0 2vw;       /* 角丸の指定 */
	border: 2px solid #C9E0F5;
}
#enkaku dl dt {
	width: 100%;
	border: none;
}
#enkaku dl dd {
	width: 100%;
}
.haru h3, .natu h3, .aki h3, .fuyu h3, .mon h3, .etc h3 {
	background-size: contain;
}
}
/*==========================フォント===========================================*/

.m-plus-rounded-1c-regular {
	font-family: "M PLUS Rounded 1c", sans-serif;
	font-weight: 400;
	font-style: normal;
}
 Kiwi Maru: CSS class .kiwi-maru-regular {
 font-family: "Kiwi Maru", serif;
 font-weight: 400;
 font-style: normal;
}
 Yusei Magic: CSS class .yusei-magic-regular {
 font-family: "Yusei Magic", sans-serif;
 font-weight: 400;
 font-style: normal;
}
 Yomogi: CSS class .yomogi-regular {
 font-family: "Yomogi", cursive;
 font-weight: 400;
 font-style: normal;
}
 Stick: CSS class .stick-regular {
 font-family: "Stick", sans-serif;
 font-weight: 400;
 font-style: normal;
}
 Mochiy Pop One: CSS class .mochiy-pop-one-regular {
 font-family: "Mochiy Pop One", sans-serif;
 font-weight: 400;
 font-style: normal;
}
 Kosugi Maru: CSS class .kosugi-maru-regular {
 font-family: "Kosugi Maru", sans-serif;
 font-weight: 400;
 font-style: normal;
}
 RocknRoll One: CSS class .rocknroll-one-regular {
 font-family: "RocknRoll One", sans-serif;
 font-weight: 400;
 font-style: normal;
}
 Zen Maru Gothic: CSS class .zen-maru-gothic-regular {
 font-family: "Zen Maru Gothic", serif;
 font-weight: 400;
 font-style: normal;
}
 M PLUS 1p: CSS class .m-plus-1p-regular {
 font-family: "M PLUS 1p", sans-serif;
 font-weight: 400;
 font-style: normal;
}
/*=========================アニメーション===========================================*/

.fuwafuwa01 {
	animation: fuwafuwa01 2s infinite;
}
@keyframes fuwafuwa01 {
 0%, 100% {
 transform: translate(0, 0);
}
 50% {
 transform: translate(0, 15px);
}
}
.fuwafuwa02 {
	animation: fuwafuwa02 2s infinite;
}
@keyframes fuwafuwa02 {
 0%, 100% {
 transform: translate(0, 0);
}
 50% {
 transform: translate(0, -15px);
}
}
.fuwafuwa03 {
	animation: fuwafuwa03 3s infinite;
}
@keyframes fuwafuwa03 {
 0%, 100% {
 transform: translate(0, 0);
}
 50% {
 transform: translate(0, 20px);
}
}
.yurayura {
	transform-origin: center bottom;
	animation: yurayura 3s linear infinite;
}
 @keyframes yurayura {
 0%, 100% {
 transform: rotate(10deg);
}
 50% {
 transform: rotate(-10deg);
}
}
