@charset "UTF-8";


/*=======================================================*/
/*      		セクション毎のCSS   			  		  */
/*======================================================*/

/*============ 共通 =========== */
/*タイトル(共通)*/
.spot-heading01{
	/*font-size: clamp(45px,4vw,50px);*/	/*英字*/
	font-size: clamp(29px,3.5vw,40px);
	line-height: 1.2em;
	font-style: italic;
	text-align: center;
	color: #776c60;
	/*font-family: "Montserrat", sans-serif;*/
	font-family: 'Kiwi Maru', sans-serif;
	letter-spacing: -2px;/*↑キウイマルの場合気になるため*/
}
.spot-heading02{
	/*font-size: clamp(20px, 2.5vw, 27px);*/
	font-size: clamp(19px, 2vw, 21px);
	line-height: 1.2em;
	font-weight: 400;
	text-align: center;
	color: var(--accent-color2);
	font-family: "Montserrat", sans-serif;
}
.spot-heading02 + p{
	line-height: 1.5em;
	font-size: clamp(20px, 2.3vw, 25px);
	font-weight: bold;
	inline-size: fit-content;
	margin-inline: auto;
	font-family: 'Noto Serif JP', serif;
}
.line{
	width: 1px;
	height: auto;
	padding-top: 3.8%;
	background-color: #2d2d2d;
	margin: 1.1% auto;
}
@media (max-width: 768px) {
	.line{
		padding-top: 7%;
	}
}
/*文字シャドウ*/
.tx-sha {
	text-shadow: #000 1px 0 10px;
}
/*印刷には表示されない*/
@media print{
	.print_none{
		display: none;
	}
}
/*調整*/
.adjus{
	padding-top: 15px;
}
/*パンくず*/
.sec_pankuzu{
	padding: 0px;
	background-color: var(--base-color);
	position: relative;
	z-index: 1;
}
/*画像角丸*/
img.borad {
	border-radius: 7px;
}
img.borad2 {
	border-radius: 30px;
}
/*文字左から中央*/
.sptx-c {
	/*text-align: left;*/
}
@media screen and (max-width: 768px) {
	.sptx-c {
		text-align: center;
		margin: 0 auto;
	}
}
/*よく使うリスト*/
ul.list-design{
	margin: 0 -10px 5px -10px;/*リストの開始位置調整*/
}
.list-design {
	list-style: none;
	padding: 0 .8em .5em;
	position: relative;
	margin: 0 auto;
}
.list-design li {
	border-bottom: 1px dashed #6f6f6f;
	padding: .5em 0 .5em 2em;
	/*padding: .1em 0 .1em 2em;*/
	font-size: clamp(15px, 1.6vw, 17px);
}
.list-design li:before {
	color: #67bdc3;
	content: "\f138";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	left : 1em;
	margin: 3px 0;
	position: absolute;
}
.list-design li.nolide:last-child {
	border-bottom: 0;
}

@media (max-width: 768px)  {
	ul.list-design {
		padding: 0 .8em;
	}
}
/*見出し装飾*/
.puti{
	font-size: clamp(18px, 2.3vw, 25px);
	position: relative;
	/*font-family: serif, 'Noto Serif JP';*/
	/*display: inline-block;*/
	/*padding: 0 2em;*/
	/*text-align: center;*/
	margin: 0 auto 10px auto;
}
.puti:before,
.puti:after {
	font-family: 'Font Awesome 5 Free';
	line-height: 1;
	/*position: absolute;
	top: calc(50% - .5em);*/
	color: #eb6100;
}
.puti:before {
	left: 0;
	content: '\f101';
}
.puti:after {
	right: 0;
	content: '\f100';
}
/**/
@media (max-width: 768px)  {
	.puti{
		text-align: center;
	}
}

/*装飾タイトル*/
h2.dech2 {
	text-align: center;
	font-weight: 400;
	font-size: clamp(33px, 3.5vw, 40px);
	position: relative;
	/*padding-top: 1em;*/
	padding-top: 75px;
	line-height: 1;
	color: var(--accent-color1);
	font-family: 'Kiwi Maru', sans-serif;
	letter-spacing: -2px;/*↑キウイマルの場合気になるため*/
}
h2.dech2::first-letter {
	color: var(--main-color);
}
h2.dech2::before {
	content: "";
	border: 0;
	position: absolute;
	left: calc(50% - 75px);
	background-image: url(../img/dech2t.png);
	background-position: center bottom;
	background-repeat: no-repeat;
	background-size: contain;
	width: 150px;	/*300以上にならないように*/
	height: 75px;
	top: 0px;/*h2.dech2のpadding-top: 75pxにしているため*/
}
h2.dech2 + p{
	text-align: center;
	font-size: clamp(16px, 1.6vw, 17px);
	margin-top: 5px;
	margin-bottom: 50px;
	color: var(--accent-color2);
	font-family: "Montserrat", sans-serif;
}
h2.dech2 + p.nob{
	margin-bottom: 5px;
}
/**/
.kukuri{
	padding: 12px 20px 0 20px;
	margin: 10px 0;
	border: 1px solid #eae7e2;
	background: rgba(255, 253, 234, 0.5);
	/*width: fit-content;*/
}
@media (max-width: 568px) {
	.kukuri{
		padding: 12px 15px 0 15px;
	}
}
/*印刷時の為*/
@media print{
	.kukuri{
		padding: 12px 20px 0 20px;
		margin: 10px 0;
		border: 1px solid #eae7e2;
		background: rgba(255, 253, 234, 0.5);
	}
}

/*テキストcenter→justify*/
.tx-ctj {
	margin: 0px auto;
	text-align: center;
}
@media (max-width: 968px) {
	.tx-ctj {
		text-align: justify;
	}
}
/*印刷時の為*/
@media print{
	.tx-ctj {
		margin: 0px auto;
		text-align: center;
	}
}

/*よく使う見出し*/
h3.ab{
	font-size: clamp(18px, 1.8vw, 19px);
	margin: 0 0 10px 0;
	padding: 3px 3px 2px 20px;
	color: #000;
	position: relative;
	background-color: #ffe3d5e3;
	font-family: "Sawarabi Gothic", "M PLUS 1p", sans-serif;
	border-radius: 7px;
}
h3.ab::before {
	position: absolute;
	content: "";
	width: 20px;
	height: 20px;
	display: inline-block;
	border: 10px solid transparent;
	box-sizing: border-box;
	border-left-color: #fb974f;
	top: 7px;
	left: 0;
}
/*ヘッダー部分のインスタアイコン*/
.head-sns {
	display: inline-block;
}
.head-sns a {
	font-size: 20px;
	display: grid;
	place-items: center;
	width: 30px;
	height: 30px;
	aspect-ratio: 1 / 1;
	background-color: #f2b800;
	color: #ffffff;
	clip-path: circle(50%);
	margin-right: 5px;
	margin-top: 3px;
	margin-bottom: 3px;
}
/*画像の縁：写真風*/
.pho{
	border: solid 1px #ece5dd;
	padding: 10px;
	box-sizing: border-box;
	background-color: #FFFFFF;
	/*box-shadow: 0 3px 18px -4px rgba(0, 0, 0, 0.4);*/
}
/**/
.mb20{
	margin-bottom: 20px;
}
/*□装飾*/
.cp_htitle {
	position: relative;
	padding: 2px 2px 2px 29px;
}
.cp_htitle::before,
.cp_htitle::after {
	position: absolute;
	content: '';
	width: 10px;
	height: 10px;
	border: 2px solid #D2CC6B;
}
.cp_htitle::before {
	top: 6px;
	left: 5px;
}
.cp_htitle::after {
	top: 10px;
	left: 10px;
}


/*======= TOPページ ======*/
/*ご挨拶*/
.greeting {
	padding: var(--v-space) 0 clamp(40px, 5vw, 60px) 0;
	background-image: url(../img/bg_04_left.png),url(../img/bg_04_right.png);
	background-position: left top,right center;
	background-repeat: no-repeat,no-repeat;
	background-size: auto 100%,auto 100%;
}
@media screen and (max-width: 1168px) {
	.greeting {
		background-position: left top,right top;
		background-size: 10% auto,10% auto;
	}
}
@media screen and (max-width: 968px) {
	.greeting {
		background-repeat: repeat-y,repeat-y;
	}
}


/**/
p.grp{
	font-size: 14px;
	/*padding: 15px 20px;*/
	margin: 0 auto 10px auto;
	/*border: 1px solid #ccc;*/
	width: fit-content;
}

/*TELバナー*/
.tel_bnr{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: 1fr;
	grid-column-gap: 15px;
	grid-row-gap: 10px;
	align-items: end;
}
@media (max-width: 568px) {
	.tel_bnr{
		grid-template-columns: repeat(1, 1fr);
		grid-row-gap: 15px;
	}
}
/*印刷時の為*/
@media print{
	.tel_bnr{
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		grid-template-rows: 1fr;
		grid-column-gap: 15px;
		grid-row-gap: 10px;
		align-items: end;
	}
}



/*sec2 宮元保育園の特徴*/
.sec2 {
	padding: clamp(40px, 5vw, 60px) 0 150px 0;
	background: rgba(251, 197, 26, 0.1);
	background-image: url("../img/bg_02.png");
	/*background-size: cover;*/
	background-position: bottom center;
	background-repeat: no-repeat;
}
@media screen and (max-width: 568px) {
	.sec2 {
		background-position: 63% 100%;
	}
}

/*3つ*/
.sec2-item-container {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px 10px;
}
@media (max-width: 1068px) {
	.sec2-item-container {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 668px) {
	.sec2-item-container {
		grid-template-columns: repeat(1, 1fr);
	}
}
/*印刷時*/
@media print{
	.sec2-item-container {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 20px 10px;
	}
}
/**/
.sec2-item-container h3{
	font-size: clamp(16px, 1.9vw, 25px);
	text-align: center;
	line-height: 1.3;
	font-family: 'Kiwi Maru', sans-serif;
	letter-spacing: -2px;
	margin: 10px auto 10px auto;
	border-bottom: 5px double #acd595;
	padding: 3px 0;
	color: #4a392a;
}
@media (max-width: 768px) {
	.sec2-item-container h3{
		font-size: 19px;
	}
}

/**/
.sec2-item-container p{
	font-size: clamp(13px, 1.4vw, 14px);
	text-align: justify;
	line-height: 1.5;
	/*background: rgba(255, 255, 255, 0.8);*/
}
/*特徴 1つ１つの背景*/
.sec2-item01{
	padding: 15px 30px 20px 30px;
	background-image: url("../img/sec2-item01bg.png");
	background-size: cover;
	background-position: top center;
	background-repeat: no-repeat;
}
.sec2-item02{
	padding: 15px 30px 20px 30px;
	background-image: url("../img/sec2-item02bg.png");
	background-size: cover;
	background-position: top center;
	background-repeat: no-repeat;
}
.sec2-item03{
	padding: 15px 30px 20px 30px;
	background-image: url("../img/sec2-item03bg.png");
	background-size: cover;
	background-position: top center;
	background-repeat: no-repeat;
}
.sec2-item04{
	padding: 15px 30px 20px 30px;
	background-image: url("../img/sec2-item04bg.png");
	background-size: cover;
	background-position: top center;
	background-repeat: no-repeat;
}
.sec2-item05{
	padding: 15px 30px 20px 30px;
	background-image: url("../img/sec2-item05bg.png");
	background-size: cover;
	background-position: top center;
	background-repeat: no-repeat;
}

/*各ページ遷移バナー*/
.topbnr_sec{
	padding: 50px 0;/*フッターと別カテ*/
	/*padding: 50px 0 10px 0;*//*フッターと一体型*/
	background-color: #fff;
}
.topbnr_sec-container {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-template-rows: 1fr;
	grid-column-gap: 10px;
	grid-row-gap: 10px;
}

@media (max-width: 568px) {
	.topbnr_sec-container {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		grid-template-rows: 2fr;
		grid-column-gap: 10px;
		grid-row-gap: 10px;
	}
}




















/*======= 当園の紹介 about ======*/
/**/
.about_sec1 {
	padding: 0 0 var(--v-space) 0;
	margin-top: 15px;/*下層ページ今回のみ*/
	/*background-image: url("../img/bg_02.png");
	background-size: cover;
	background-position: top center;
	background-repeat: no-repeat;*/
}

/*a-sec1 保育目標*/
.a-sec1 {
	padding: 30px 0 0 0;
}
/*装飾タイトル*/
h2.dech2ab {
	text-align: center;
	font-weight: 400;
	font-size: clamp(33px, 3.5vw, 40px);
	position: relative;
	/*padding-top: 1em;*/
	padding-top: 90px;
	line-height: 1;
	color: var(--accent-color1);
	font-family: 'Kiwi Maru', sans-serif;
	letter-spacing: -2px;/*↑キウイマルの場合気になるため*/
}
h2.dech2ab::first-letter {
	color: var(--main-color);
}
h2.dech2ab::before {
	content: "";
	border: 0;
	position: absolute;
	left: calc(50% - 100px);
	background-image: url(../img/dech2tabout.png);
	background-position: center bottom;
	background-repeat: no-repeat;
	background-size: contain;
	width: 200px;	/*300以上にならないように*/
	height: 100px;
	top: 0px;
}
h2.dech2ab + p{
	text-align: center;
	font-size: clamp(16px, 1.6vw, 17px);
	margin-top: 5px;
	margin-bottom: 50px;
	color: var(--accent-color2);
	font-family: "Montserrat", sans-serif;
}
h2.dech2ab + p.nob{
	margin-bottom: 5px;
}







/*3つ*/
.a-sec1-item-container {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}
@media (max-width: 568px) {
	.a-sec1-item-container {
		grid-template-columns: repeat(1, 1fr);
	}
}
/*印刷時*/
@media print{
	.a-sec1-item-container {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 20px;
	}
}
/**/
.a-sec1-item p{
	text-align: center;
	font-family: "Sawarabi Gothic", "M PLUS 1p", sans-serif;
	font-size: clamp(17px, 1.9vw, 19px);
}

/**/
.ribon {
	position: relative;
	/*padding: 1rem 2rem 0.8rem 3.5em;*/
	padding: 0.7rem 2rem 0.7rem 3.5em;
	background: #ffc50e;
	margin: -35px auto 10px auto;/*中央*/
	/*margin: 0 0 10px 0;*/
	border-radius: 50px;
	width: fit-content;
	box-shadow: 3px 3px 3px 0px rgba(145, 145, 145, 0.3);
}
.ribon h3{
	font-size: clamp(19px, 2.1vw, 25px);
	line-height: 1.3;
	/*color: #fff;*/
}
.ribon span {
	position: absolute;
	top: -10px;
	left: 20px;
	display: inline-block;
	width: 26px;
	height: 20px;
	text-align: center;
	background: #fa4141;
}
.ribon span:before,
.ribon span:after {
	position: absolute;
	content: '';
	width: 13px;
	box-sizing: border-box;
}

.ribon span:before {
	right: -10px;
	width: 0;
	height: 0;
	border-right: 10px solid transparent;
	border-bottom: 10px solid #d90606;
}

.ribon span:after {
	top: 50%;
	left: 0;
	display: block;
	height: 50%;
	border: 13px solid #fa4141;
	border-bottom-width: 15px;
	border-bottom-color: transparent;
	z-index: -1;
}
.ribon span.num {
	z-index: 3;
	color: #fff100;
	font-size: 25px;
	line-height: 2;
	font-family: Century Gothic, Arial, "Sawarabi Gothic", "M PLUS 1p", sans-serif;
}





/*a-sec2 保育内容*/
.a-sec2 {
	padding: 50px 0 0 0;
}

/*2つ*/
.a-sec2-item-container {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}
@media (max-width: 568px) {
	.a-sec2-item-container {
		grid-template-columns: repeat(1, 1fr);
	}
}
/*印刷時*/
@media print{
	.a-sec2-item-container {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}
}

/*施設の紹介*/
.a-sec3 {
	padding: 50px 0 0 0;
}

/* 施設の紹介部分のテーブル */
table.a-sec3tb{
	font-family: "Sawarabi Gothic", "M PLUS 1p", sans-serif;
}
table.a-sec3tb tr{
	display: flex;
	border-bottom: 1px solid #e4dfde;
	padding: 15px 2px;
	align-items: center;
}
table.a-sec3tb tr td:nth-of-type(1) {
	font-size: clamp(17px, 1.8vw, 19px);
	font-weight: 400;
	box-sizing: border-box;
	text-align: left;
	line-height: 1.3;
	display: inline;
	width: 12em;
	content: "";
	padding: 13px 5px 13px 45px;
	background: url(../img/a-sec3-icon01.png) no-repeat 10px center;
	background-size: 30px;
	background-color: #b97d600f;
	border-radius: 13px;
}
table.a-sec3tb tr td:nth-of-type(2)  {
	font-size: clamp(16px, 1.6vw, 17px);
	padding: 13px 10px;
	box-sizing: border-box;
	width: calc((100% - 12em) / 1);
}
/*特別文字サイズ*/
table.a-sec3tb tr td.info2:nth-of-type(2)  {
	font-size: clamp(13px, 1.4vw, 14px);
}


@media screen and (max-width: 568px) {
	table.a-sec3tb tr{
		display: block;
	}
	table.a-sec3tb tr td:nth-of-type(1)  {
		display: block;
		width: 100%;
	}
	table.a-sec3tb tr td:nth-of-type(2) {
		display: block;
		padding: 10px 5px 7px 5px;
		width: 100%;
	}
}


/*定員*/
.a-sec4 {
	padding: 50px 0 0 0;
}
/**/
h2.heading42 span {
	font-size: clamp(16px, 1.7vw, 18px);
}


/*テーブル */
table.a-sec4tab{
	font-size: clamp(14px, 1.5vw, 17px);
	margin: 10px 0;
	border-top: 1px solid #e1d7ce;
	border-left: 1px solid #e1d7ce;
}
table.a-sec4tab td{
	border-bottom: 1px solid #e1d7ce;
	border-right: 1px solid #e1d7ce;
	padding: 5px;
	text-align: center;
}
table.a-sec4tab td:nth-of-type(1) {
	background-color: #ffc50e21;
	text-align: left;
}
table.a-sec4tab td[rowspan] {
	background-color: #ffc50e;
	width: 3rem;
	text-align: center;
}
table.a-sec4tab td[rowspan] + td {
	background-color: #ffc50e21;
	text-align: left;
}



/*アイコン画像*/
.i-icon01 {
	display: inline-block;
	width: 40px;
	vertical-align: middle;
	margin: 0 0 2px 0;
}

/*3つ*/
.a-sec4-item-container {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}
@media (max-width: 768px) {
	.a-sec4-item-container {
		display: grid;
		grid-template-columns: repeat(1, 1fr);
		gap: 20px;
	}
}
/*印刷時*/
@media print{
	.a-sec4-item-container {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 20px;
	}
}








/*一日の流れ*/
.about_sec2 {
	padding: var(--v-space) 0;
	/*background: rgba(251, 197, 26, 0.1) url("../img/bg_02.png") center bottom no-repeat;*/
	background-color: #9d9d9d17;
	background-color: #ffea9917;
}

/*3つ*/
.about_sec2-item-container {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 50px 20px;
}
@media (max-width: 568px) {
	.about_sec2-item-container {
		grid-template-columns: repeat(1, 1fr);
	}
}
/*印刷時*/
@media print{
	.about_sec2-item-container {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 50px 20px;
	}
}
/*矢印*/
.about_sec2-item{
	background-image: url(../img/ar03.png);
	background-position: right bottom;
	background-repeat: no-repeat;
	background-size: auto 25%;
}
@media (max-width: 968px) {
	.about_sec2-item{
		background-image: url(../img/ar03.png);
		background-position: right bottom;
		background-repeat: no-repeat;
		background-size: auto 10%;
	}
}
@media (max-width: 568px) {
	.about_sec2-item{
		background-image: url(../img/ar04.png);
		background-position: right bottom;
		background-repeat: no-repeat;
		background-size: auto 15%;
	}
}
/*印刷時*/
@media print{
	.about_sec2-item{
		background-image: url(../img/ar03.png);
		background-position: right bottom;
		background-repeat: no-repeat;
		background-size: auto 25%;
	}
}


/*一日の流れ 時間外保育のところのグリッド*/
.about_sec2-griditem {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: 1fr;
	grid-column-gap: 20px;
	grid-row-gap: 20px;
}

.about_sec2-item2l { grid-area: 1 / 1 / 2 / 2; }
.about_sec2-item2r { grid-area: 1 / 2 / 2 / 4; } 

@media (max-width: 568px) {
	.about_sec2-griditem {
		display: grid;
		grid-template-columns: repeat(1, 1fr);
		grid-template-rows: 1fr;
		grid-column-gap: 20px;
		grid-row-gap: 50px;
		margin-top: 50px;
	}
	.about_sec2-item2l { grid-area: 1 / 1 / 2 / 2; }
	.about_sec2-item2r { grid-area: 2 / 1 / 2 / 2; }
}




/**/
p.timep{
	font-size: clamp(17px, 1.8vw, 19px);
	font-family: 'Kiwi Maru', sans-serif;
	font-weight: 600;
	color: #dd6800;
	line-height: 1.1;
	margin-bottom: 7px;
}
@media (max-width: 568px) {
	p.timep{
		text-align: center;
	}
}



/**/
p.daenw{
	padding: 15px 5px;
	background-color: #3aa4311c;
	border-radius: 30px;
	margin: 0 auto;
	line-height: 1.3;
	text-align: center;
}
/**/
p.daenw2{
	padding: 15px 5px;
	background-color: #bb7f0b1a;
	border-radius: 30px;
	margin: 0 auto;
	line-height: 1.3;
	text-align: center;
}
/**/
p.daenw3{
	padding: 15px 5px;
	background-color: #bb0b451a;
	border-radius: 30px;
	margin: 0 auto;
	line-height: 1.3;
	text-align: center;
}
/**/
p.daenw4{
	padding: 15px 5px;
	background-color: #0b9fc11a;
	border-radius: 30px;
	margin: 0 auto;
	line-height: 1.3;
	text-align: center;
}
/**/
p.daenw5{
	padding: 15px 5px;
	background-color: #af3db91a;
	border-radius: 30px;
	margin: 0 auto;
	line-height: 1.3;
	text-align: center;
}






/*======= 年間行事・園の様子 event ======*/
/*年間行事*/
.event_sec1 {
	padding: 0 0 var(--v-space) 0;
	margin-top: 15px;/*下層ページ今回のみ*/
	/*background-image: url("../img/bg_02.png");
	background-size: cover;
	background-position: top center;
	background-repeat: no-repeat;*/
}
/*装飾タイトル*/
h2.dech2ev {
	text-align: center;
	font-weight: 400;
	font-size: clamp(33px, 3.5vw, 40px);
	position: relative;
	/*padding-top: 1em;*/
	padding-top: 90px;
	line-height: 1;
	color: var(--accent-color1);
	font-family: 'Kiwi Maru', sans-serif;
	letter-spacing: -2px;/*↑キウイマルの場合気になるため*/
}
h2.dech2ev::first-letter {
	color: var(--main-color);
}
h2.dech2ev::before {
	content: "";
	border: 0;
	position: absolute;
	left: calc(50% - 100px);
	background-image: url(../img/dech2tevent.png);
	background-position: center bottom;
	background-repeat: no-repeat;
	background-size: contain;
	width: 200px;	/*300以上にならないように*/
	height: 100px;
	top: 0px;
}
h2.dech2ev + p{
	text-align: center;
	font-size: clamp(16px, 1.6vw, 17px);
	margin-top: 5px;
	margin-bottom: 50px;
	color: var(--accent-color2);
	font-family: "Montserrat", sans-serif;
}
h2.dech2ev + p.nob{
	margin-bottom: 5px;
}

/*通年*/
.ev-sec1 {
	padding: clamp(10px, 2vw, 30px) 0;
}
/*3つ*/
.ev-sec1-item-container {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}
@media (max-width: 568px) {
	.ev-sec1-item-container {
		grid-template-columns: repeat(1, 1fr);
	}
}
/*印刷時*/
@media print{
	.ev-sec1-item-container {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 20px;
	}
}
/**/
.ev-sec1-item h3 {
	text-align: center;
	font-family: "Sawarabi Gothic", "M PLUS 1p", sans-serif;
	font-size: clamp(17px, 1.9vw, 19px);
}

/**/
.box20 {
	position: relative;
	padding: 10px;
	margin: 10px 0;
	top: 0;
	background: #8685e214;
}
.box20:before{ 
	position: absolute;
	top: 0;
	content:'';
	width: 10px;
	height: 100%;
	display: inline-block;
	box-sizing: border-box;
}
.box20:after{ 
	position: absolute;
	top: 0;
	content:'';
	width: 10px;
	height: 100%;
	display: inline-block;
	box-sizing: border-box;
}
.box20:before{
	border-left: dotted 2px #8685e2;
	border-top: dotted 2px #8685e2;
	border-bottom: dotted 2px #8685e2;
	left: 0;
	box-sizing: border-box;
	margin-left: 0.7px;
}
.box20:after{
	border-top: dotted 2px #8685e2;
	border-right: dotted 2px #8685e2;
	border-bottom: dotted 2px #8685e2;
	right: 0;
	box-sizing: border-box;
}


/*春*/
.ev-sec2 {
	padding: clamp(10px, 2vw, 30px) 0;
}
/*2つ*/
.ev-sec2-item-container {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	align-items: center;
	gap: 20px;
}
@media (max-width: 568px) {
	.ev-sec2-item-container {
		grid-template-columns: repeat(1, 1fr);
	}
}
/*印刷時*/
@media print{
	.ev-sec2-item-container {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}
}



/*夏*/
.ev-sec3 {
	padding: clamp(10px, 2vw, 30px) 0;
}
/*2つ*/
.ev-sec3-item-container {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	align-items: center;
	gap: 20px;
}
@media (max-width: 568px) {
	.ev-sec3-item-container {
		grid-template-columns: repeat(1, 1fr);
	}
}
/*印刷時*/
@media print{
	.ev-sec3-item-container {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}
}





/*秋*/
.ev-sec4 {
	padding: clamp(10px, 2vw, 30px) 0;
}
/*2つ*/
.ev-sec4-item-container {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	align-items: center;
	gap: 20px;
}
@media (max-width: 568px) {
	.ev-sec4-item-container {
		grid-template-columns: repeat(1, 1fr);
	}
}
/*印刷時*/
@media print{
	.ev-sec4-item-container {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}
}



/*冬*/
.ev-sec5 {
	padding: clamp(10px, 2vw, 30px) 0;
}
/*2つ*/
.ev-sec5-item-container {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	align-items: center;
	gap: 20px;
}
@media (max-width: 568px) {
	.ev-sec5-item-container {
		grid-template-columns: repeat(1, 1fr);
	}
}
/*印刷時*/
@media print{
	.ev-sec5-item-container {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}
}

/*よく使うリスト2*/
ul.list-design2{
	margin: auto 0px auto -10px;/*リストの開始位置調整*/
}
.list-design2 {
	list-style: none;
	padding: 0 .8em .5em;
	position: relative;
	margin: 0 auto;
}
.list-design2 li {
	border-bottom: 1px dashed #6f6f6f;
	padding: .5em 0 .5em 2em;
	/*padding: .1em 0 .1em 2em;*/
	font-size: clamp(15px, 1.6vw, 17px);
}
.list-design2 li:before {
	color: #67bdc3;
	content: "\f138";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	left : 1em;
	margin: 3px 0;
	position: absolute;
}
.list-design2 li.nolide:last-child {
	border-bottom: 0;
}

@media (max-width: 768px)  {
	ul.list-design2 {
		padding: 0 .8em;
	}
}









/*園の様子*/
.event_sec2{
	padding: var(--v-space) 0;
	background-image: url("../img/bg_05.png");
	background-position: center bottom;
	background-repeat: no-repeat;
	background-size: cover;
}
@media (max-width: 568px) {
	.event_sec2{
		background-position: left bottom;
		background-repeat: repeat-y;
		background-size: auto;
	}
}

/*4つ*/
.event_sec2-item-container {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}
@media (max-width: 568px) {
	.event_sec2-item-container {
		grid-template-columns: repeat(1, 1fr);
	}
}
/*印刷時*/
@media print{
	.event_sec2-item-container {
		display: grid;
		grid-template-columns: repeat(4, 1fr);
		gap: 20px;
	}
}











/*======= よくある質問 ======*/
/* よくある質問 FAQ */
.faq_sec1 {
	padding: var(--v-space) 0;
	/*padding: 0px 0 100px 0;*/	/*別ページの場合*/
	/*background-color: #dce4ec;*/
	background-color: #151515;
	position: relative; /* sectionの位置を相対的にする*/
	z-index: 1; /* 背景画像より上に表示 */
}
h2 span.tbst {
	color: #fff;
	text-shadow: none;
}
/*通常デザイン*/
/*
div.faq2 p.b {
	font-weight: 600;
	color: #000;
}
div.faq2 p.b::first-letter {
	color: var(--main-color);
	font-size: 110%;
	font-weight: 600;
}
div.faq2 p {
	margin-top: 10px;
	line-height: 1.4;
	font-size: 105%;
	text-align: justify;
	text-indent: -1em;
	padding-left: 1em;
	display: block;
	color: #555;
}
div.faq2 p::first-letter {
	color: #eb6100;
	font-weight: 600;
	font-size: 110%;
}
*/

/*枠付きデザイン*/
/**/
.onecours{
	background-color: rgba(255, 255, 255, 0.95);
	border-radius: 7px;
	padding: 15px 20px;
	margin: 20px 0;
}
.onecours:first-child{
	margin: 0px;
}
/**/
hr.faqHr2 {
	height: 0px;
	border-bottom: 1px dotted #7b7b7b;
	margin: 5px auto;
}

div.faq2 p.b {
	font-weight: 600;
	color: #000;
}
div.faq2 p.b::first-letter {
	color: var(--main-color);
	font-weight: 600;
}
div.faq2 p {
	margin-top: 5px;
	line-height: 1.4;
	text-align: justify;
	text-indent: -1.3em;
	padding-left: 1.3em;
	display: block;
	color: #555;
}
div.faq2 p::first-letter {
	color: #c89b63;
	font-weight: 600;
	font-size: 115%;
}

/*---------------------------------------------------------*/















/*======= 当園概要ページ ======*/
/*info_sec1*/
.info_sec1{
	padding: 0px 0 150px 0;
	margin-top: 15px;/*下層ページ今回のみ*/
	background-image: url(../img/bg_03.png);
	background-position: bottom center;
	background-repeat: no-repeat;
	background-size: cover;
}
@media screen and (max-width: 768px) {
	.info_sec1{
		background-position: 15% 100%;
	}
}


/**/
.bg_b{
	background: rgba(255, 255, 255, 0.9);
	padding: 50px;
	border-radius: 30px;
}
@media screen and (max-width: 568px) {
	.bg_b {
		padding: 20px;
	}
}


/* 概要部分のテーブル */
table.inftb{
	font-family: "Sawarabi Gothic", "M PLUS 1p", sans-serif;
}
table.inftb tr{
	display: flex;
	border-bottom: 1px solid #e4dfde;
	padding: 15px 2px;
	align-items: center;
}
table.inftb tr td:nth-of-type(1) {
	font-size: clamp(17px, 1.8vw, 19px);
	font-weight: 400;
	box-sizing: border-box;
	text-align: left;
	line-height: 1.3;
	display: inline;
	width: 9em;
	content: "";
	padding: 13px 5px 13px 45px;
	background: url(../img/info-icon01.png) no-repeat 10px center;
	background-size: 30px;
	background-color: #b97d600f;
	border-radius: 13px;
}
table.inftb tr td:nth-of-type(2)  {
	font-size: clamp(16px, 1.6vw, 17px);
	padding: 13px 10px;
	box-sizing: border-box;
	width: calc((100% - 9em) / 1);
}
/*特別文字サイズ*/
table.inftb tr td.info2:nth-of-type(2)  {
	font-size: clamp(13px, 1.4vw, 14px);
}


@media screen and (max-width: 568px) {
	table.inftb tr{
		display: block;
	}
	table.inftb tr td:nth-of-type(1)  {
		display: block;
		width: 100%;
	}
	table.inftb tr td:nth-of-type(2) {
		display: block;
		padding: 10px 5px 7px 5px;
		width: 100%;
	}
}




/*保育士募集*/
/*info_sec2*/
.info_sec2{
	padding: var(--v-space) 0;
}
/**/
.spot-heading03{
	font-size: clamp(27px,3.3vw,37px);
	line-height: 1.2em;
	/*font-style: italic;*/
	text-align: center;
	color: var(--accent-color2);
	font-family: 'Kiwi Maru', sans-serif;
	letter-spacing: -2px;/*↑キウイマルの場合気になるため*/
}

/**/
h4.kadm {
	font-weight: 400;
	text-align: justify;
	border-radius: 10px;
	background-color: #fbf0da;
	border: 0;
	margin: 5px 0 10px 0;
	padding: 15px 20px;
	line-height: 1.4;
	height: fit-content;
}
/**/
.emphasis {
	box-sizing: border-box;
	font-size: clamp(17px, 1.6vw, 19px);
	line-height: 1.4;
	display: block;
	border: 3px double #d0123f;
	margin: 15px auto 5px auto;
	padding: 7px 10px;
	font-family: "Sawarabi Gothic", "M PLUS 1p", sans-serif;
	/*width: fit-content;*/
}



/*アクセス*/
.access_sec1 {
	padding: var(--v-space) 0 50px 0;
	background-color: #9d9d9d17;
	position: relative;
	z-index: 1;
}

/* アクセス部分のテーブル */
.info3 {
	font-weight: bold;
	border-bottom: 1px dashed #999;
	padding: 5px;
	width: 10em;
	color: #000;
}
.info4 {
	border-bottom: 1px dashed #999;
	padding: 5px;
}
@media screen and (max-width: 568px) {
	.info3 {
		display: block;
		padding: 8px 2px 8px 2px;
		width: 100%;
		background-color: #0000000f;
	}
	.info4 {
		display: block;
		padding: 8px 2px;
		width: 99%;
	}
}





/*------------------------------------------------*/
/*セクションの間イメージ画像*/
.sec-adimg{
	padding: 0px;
	background-color: var(--base-color);
}
.sec-adimg-container {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	grid-template-rows: 1fr;
	grid-column-gap: 0px;
	grid-row-gap: 0px;
}
.sec-adimg-container-item1 { grid-area: 1 / 1 / 2 / 2; }
.sec-adimg-container-item2 { grid-area: 1 / 2 / 2 / 3; }
.sec-adimg-container-item3 { grid-area: 1 / 3 / 2 / 4; }
.sec-adimg-container-item4 { grid-area: 1 / 4 / 2 / 5; }
.sec-adimg-container-item5 { grid-area: 1 / 5 / 2 / 6; }

@media (max-width: 568px) {
	.sec-adimg-container {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		grid-template-rows: 1fr;
		grid-column-gap: 0px;
		grid-row-gap: 0px;
	}
	
	.sec-adimg-container-item1 { display: none; }
	.sec-adimg-container-item2 { grid-area: 1 / 1 / 2 / 2; }
	.sec-adimg-container-item3 { grid-area: 1 / 2 / 2 / 3; }
	.sec-adimg-container-item4 { grid-area: 1 / 3 / 2 / 4; }
	.sec-adimg-container-item5 { display: none; }
}
/*------------------------------------------------*/





/*-----------------------------------------------*/
/*-----------------------------------------------*/
/*======= お問い合わせページ ======*/
::placeholder {
	color: #979797;
	font-family: sans-serif;
	font-size: 80%;
}






