/* SmartPhone style */

.koujichuu{
	min-height: 400px;
}

.koujichuu p{
	text-align: center;
	margin: 50px 0;
}

.koujichuu img{
	width: 200px;
	height: auto;
}

/* ===================================================================== sp-only ===================================================================== */
.sp-only{
	display: block;
}

.sp-fnt08em{
	font-size: 0.8em;
}

.sp-br:before{
	content: '\A';
	white-space: pre;
}

/* ===================================================================== common ===================================================================== */
html, body{
	font-size: 16px;
}

#blind{
	position: absolute;
	z-index: 9999;
	background: #fff;
	width: 100%;
	height: 100vh;
	top: -100vh;
}

.wrapper{
	margin-bottom: 20px;
}

.wrapper-inner{
	width: auto;
	margin: 0 10px;
}

#btn-box-wrapper{
	background: #efefef;
	padding: 10px 0;
	margin-bottom: 20px;
}

.btn-box{
	overflow: hidden;
}

.btn-box .btn-back{
	display: inline-block;
	float: left;
	padding: 10px 8px;
	background: #ddd;
	color: #666;
	border: 1px solid #aaa;
	border-radius: 8px;
	font-size: 0.7em;
}

.btn-box .btn-logout{
	display: inline-block;
	float: right;
	padding: 10px 8px;
	background: #ffffaf;
	color: #ff8e1e;
	border: 1px solid #ff8e1e;
	border-radius: 8px;
	font-size: 0.7em;
}

#article-wrapper{
	min-height: 300px;
	margin-bottom: 60px;
}

h2{
	min-height: 20px;
	background: url(../images/common/h2line.svg) no-repeat;
	background-size: contain;
	background-position: center bottom;
	text-align: center;
	font-size: 1.5em;
	margin-bottom: 20px;
}

h3{
	margin-top: 30px;
	margin-bottom: 10px;
	font-size: 1.3em;
	color: #dc6000;
	border-left: 5px solid #dc6000;
	padding-left: 7px;
}

h4{
	margin-top: 20px;
	margin-bottom: 10px;
	font-size: 1.1em;
}

h5{
	margin-top: 10px;
	margin-bottom: 10px;
	font-size: 1.0em;
}

.ind1{
	margin-left: 10px;
}

.ind2{
	margin-left: 20px;
}

.ind3{
	margin-left: 30px;
}

.ind4{
	margin-left: 40px;
}

.ind-1{
	padding-left: 1em;
	text-indent: -1em;
}

.ind-4{
	padding-left: 4em;
	text-indent: -4em;
}

ul.in-b li{
	display: inline-block;
	margin-right: 5px;
}

.download-file{
	display: inline-block;
	padding: 10px;
	margin: 10px 10px 10px 0;
	border: 1px solid #dc6000;
	color: #dc6000;
}

.sp-scroll-box{
	overflow: scroll;
	-webkit-overflow-scrolling: touch;
}

.sp-scroll-message{
	font-size: 0.8em;
	color: #999;
	text-align: center;
	margin-top: 20px;
}

/* ===================================================================== header ===================================================================== */
#header-wrapper{
	margin-bottom: 10px;
}

header{
	position: relative;
	background: #fff;
}

header h1{
	font-size: 0.7em;
	font-weight: normal;
	background: #fff;
	position: relative;
	z-index: 3;
	padding: 5px 0 10px 0;
}

header #header-logo-wrapper{
	overflow: hidden;
}

header #header-logo{
	position: relative;
	z-index: 4;
	background: #fff;
}

header #header-logo img{
	width: 70vw;
}

header #header-logo address{
	display: none;
}

header #header-logo address .adr{
	text-align: left;
	font-size: 0.8em;
}

header #header-logo address .tel{
	text-align: left;
	font-size: 1.4em;
	font-weight: bold;
}

header nav {
	position: absolute;
	z-index: 2;
	background: #fff;
	color: #000;
	text-align: center;
	width: 100%;
	transform: translateY(-100%);
}

@keyframes nav-active{
	0% {
		transform: translateY(-100%);
		}
	100% {
		transform: translateY(0%);
		}
}

@keyframes nav-close{
	0% {
		transform: translateY(0%);
		}
	100% {
		transform: translateY(-100%);
		}
}

/* このクラスを、jQueryで付与・削除する */
header nav.active {
	animation: nav-active 0.6s forwards;
/*	transform: translateY(0%);
	transition: all 0.6s;*/
}
header nav.close {
	animation: nav-close 0.6s forwards;
/*	transform: translateY(-100%);
	transition: all 0.6s;*/
}

header nav #sun{
	position: absolute;
	top: 10px;
	right: 10px;
	width: 30%;
	height: auto;
	animation: sun 1s ease-in-out infinite alternate;
}

@keyframes sun{
	0% { transform: rotate(0); }
	100% { transform: rotate(5deg); }
}

header nav #piyo{
	position: absolute;
	bottom: 10px;
	left: 10px;
	width: 20%;
	height: auto;
	animation: piyo 1s ease-in-out infinite alternate;
}

@keyframes piyo{
	0% { transform: translateY(0); }
	25% { transform: translateY(0); }
	50% { transform: translateY(-10px); }
	75% { transform: translateY(0); }
	100% { transform: translateY(0); }
}

header nav ul {
	background: #ffdd4f;
	margin: 0 auto;
	padding: 0;
	width: 100%;
}

header nav ul li {
	font-size: 1em;
	list-style-type: none;
	padding: 0;
	width: 100%;
	border-bottom: 1px solid #ffa905;
}

header nav ul li #icon-lock{
	width: auto;
	height: 1em;
}

/* 最後はラインを描かない */
header nav ul li:last-child {
	padding-bottom: 0;
	border-bottom: none;
}

header nav ul li a {
	display: block;
	color: #333;
	padding: 1em 0;
	font-weight: bold;
}

header #navToggle{
	position: absolute;
	top: 32px;
	right: 15px;
	width: 45px;
	height: 51px;
	cursor: pointer;
	z-index: 5;
	background: #666;
	text-align: center;
	border-radius: 5px;
}

header #navToggle span {
	display: block;
	position: absolute;
	width: 33px;
	border-bottom: solid 3px #eee;
	-webkit-transition: .35s ease-in-out;
	-moz-transition: .35s ease-in-out;
	transition: .35s ease-in-out;
	left: 6px;
}
 
header #navToggle span:nth-child(1) {
	top: 9px;
}
 
header #navToggle span:nth-child(2) {
	top: 18px;
}
 
header #navToggle span:nth-child(3) {
	top: 27px;
}
 
header #navToggle span:nth-child(4) {
	border: none;
	color: #eee;
	font-size: 8px;
	font-weight: bold;
	top: 36px;
}

/* 最初のspanをマイナス45度に */
header #navToggle.active span:nth-child(1) {
	top: 18px;
	left: 6px;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

/* 2番目と3番目のspanを45度に */
header #navToggle.active span:nth-child(2),
header #navToggle.active span:nth-child(3) {
	top: 18px;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	transform: rotate(45deg);
}

/* ===================================================================== footer ===================================================================== */
footer #footer-logo{
	width: 250px;
	margin: 0 auto;
}

footer #footer-logo img{
	display: block;
	margin: 0 auto;
}

footer #footer-logo img#f-rainbow{
	width: 180px;
}

footer #footer-logo img#f-logo{
	width: 250px;
}

footer address li{
	display: block;
	border-top: 1px solid #ccc;
	padding: 10px 18px;
}

footer address li:last-child{
}

footer address li p:nth-child(1){
	font-weight: bold;
	margin-bottom: 8px;
}

footer address li p:nth-child(2){
	font-size: 0.9em;
	margin-bottom: 3px;
}

footer address li p:nth-child(3){
	font-size: 0.9em;
	margin-bottom: 3px;
}

footer address li p:nth-child(4){
	font-size: 0.9em;
	margin-bottom: 3px;
}

footer #footer-nav{
	background-color: #fff9f2;
	margin-bottom: 0;
	padding: 15px 0;
	font-size: 0.8rem;
	color: #333;
}

footer #footer-nav nav{
	/*text-align: center;*/
}

footer #footer-nav nav ul{
	/*overflow: hidden;
	display: inline-block;*/
}

footer #footer-nav nav ul li{
	display: inline-block;
	padding: 5px 12px;
}

footer #footer-nav nav ul li:last-child{
	/*border-right: 0;*/
}

footer #footer-nav nav ul li a:hover{
	text-decoration: underline;
}

footer #footer-nav nav ul li #icon-lock{
	width: auto;
	height: 1em;
}

footer #copy-wrapper{
	margin: 0;
	background: #fbb03b;
}

footer #copy-wrapper small{
	display: block;
	height: 2em;
	line-height: 2em;
	text-align: center;
	font-size: 0.6em;
	color: #fff;
}

/* ===================================================================== index ===================================================================== */
#index #slide-wrapper{
	/*margin-bottom: 60px;*/
}

#index #slide{
	position: relative;
	margin-bottom: 30px;
}

#index #slide .slide-cover{
	position: relative;
	overflow: hidden;
	height: 300px;
}

#index #slide .slide-cover img{
	position: absolute;
	object-fit: cover;
	min-width: 100vw;
	max-width: 100vw;
	min-height: 300px;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

#index #slide .slide-cover .slide-date{
	display: block;
	width: 100vw;
	font-size: 0.8em;
	text-align: center;
	color: #fff;
	text-shadow: 3px 3px 3px #000;
	z-index: 9999;
	position: absolute;
	bottom: 40px;
}

#index #slide .slide-cover .slide-title{
	display: block;
	width: 100vw;
	font-size: 0.8em;
	text-align: center;
	color: #fff;
	text-shadow: 3px 3px 3px #000;
	z-index: 9999;
	position: absolute;
	bottom: 20px
}

#index #kakuen-wrapper{
	margin-bottom: 40px;
}

#index #kakuen-button{
	overflow: hidden;
	/*margin-left: -10px;*/
	text-align: center;
}

#index #kakuen-button a{
	position: relative;
	display: inline-block;
	/*float: left;*/
	width: calc((100vw - 20px) / 2 - 15px);
	height: calc((100vw - 20px) / 2 - 15px);
	border-radius: 50%;
	margin: 5px;
	color: #fff;
	text-align: center;
	font-size: 0;
	font-weight: bold;
	text-shadow: 3px 3px 3px #000;
}

#index #kakuen-button a span:nth-child(1){
	display: block;
	position: absolute;
	left: 50%;
	top: 40%;
	-webkit-transform: translate(-50%, -40%);
	-ms-transform: translate(-50%, -40%);
	transform: translate(-50%, -40%);
	width: 100%;
	font-size: 0.7rem;
}

#index #kakuen-button a span:nth-child(2){
	display: block;
	position: absolute;
	left: 50%;
	top: 55%;
	-webkit-transform: translate(-50%, -55%);
	-ms-transform: translate(-50%, -55%);
	transform: translate(-50%, -55%);
	width: 100%;
	font-size: 1.4rem;
}

#index #kakuen-button a:nth-child(1){
	background: url(../images/index/mayumi2022.jpg);
	background-size: cover;
}

#index #kakuen-button a:nth-child(2){
	background: url(../images/index/yakata.jpg);
	background-size: cover;
	background-position: 50%;
}

#index #kakuen-button a:nth-child(3){
	background: url(../images/index/place.jpg);
	background-size: cover;
	background-position: 40%;
}

#index #kakuen-button a:nth-child(4){
	background: url(../images/index/shien.jpg);
	background-size: cover;
	background-position: 50%;
}

#index #kakuen-button a:nth-child(5){
	background: url(../images/index/child.jpg);
	background-size: cover;
	background-position: 70%;
}

#index #kakuen-button a:nth-child(6){
	background: url(../images/index/den.jpg);
	background-size: cover;
	background-position: 65%;
}

#index #kakuen-button a:nth-child(7){
	background: url(../images/index/marble.jpg);
	background-size: cover;
	background-position: 50%;
}

#index #other-wrapper{
	text-align: center;
	padding-bottom: 20px;
}

#index #other-wrapper .btn-inspection{
	font-size: 1.4em;
	font-weight:bold;
	padding: 10px 20px;
	background: #00a0dd;
	color: #fff;
	/*border: 1px solid #0063a4;*/
	border-radius: 8px;
}

#news-wrapper{
	background: #fff9f2;
	padding: 40px 0;
	margin-bottom: 40px;
}

#news-list{
}

#news-list li{
	margin: 30px 10px 30px 20px;
}

#news-list li .post-date{
	display: inline-block;
	margin-bottom: 10px;
}

#news-list li .post-new{
	display: inline-block;
	padding: 3px;
	background: #f00;
	color: #fff;
	border-radius: 8px;
	font-size: 0.6em;
	margin-left: 3px;
}

#news-list li .post-title{
	display: block;
	margin-left: 15px;
}

/* ===================================================================== child-index ===================================================================== */
#child-index #slide-wrapper{
	/*margin-bottom: 60px;*/
	background: #ffedd3;
}

#child-index #slide{
	position: relative;
	margin-bottom: 60px;
}

#child-index #slide .slide-cover{
	position: relative;
	overflow: hidden;
	height: 250px;
}

#child-index #slide .slide-cover img{
	position: absolute;
	object-fit: cover;
	min-width: 100vw;
	max-width: 100vw;
	min-height: 250px;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

#child-index #slide .slide-cover .slide-date{
	display: block;
	width: 100vw;
	font-size: 0.8em;
	text-align: center;
	color: #fff;
	text-shadow: 3px 3px 3px #000;
	z-index: 9999;
	position: absolute;
	bottom: 40px;
}

#child-index #slide .slide-cover .slide-title{
	display: block;
	width: 100vw;
	font-size: 0.8em;
	text-align: center;
	color: #fff;
	text-shadow: 3px 3px 3px #000;
	z-index: 9999;
	position: absolute;
	bottom: 20px;
}

#child-index-menu #kakuen-wrapper{
	margin: 0;
	padding: 0;
	background: #ffedc4;
	background: #ddd;
}

#child-index-menu #kakuen-wrapper .wrapper-inner{
	position: relative;
	margin: 0;
}

#child-index-menu #kakuen-wrapper h2{
	display: none;
}

#child-index-menu #kakuen-button{
	position: relative;
	overflow: hidden;
	background: #fff;
	height: 255px;
}

#child-index-menu #kakuen-button a{
	position: relative;
	float: left;
	height: 60px;
	border-radius: 0;
	color: #fff;
	text-align: center;
	/*line-height: 220px;*/
	font-weight: bold;
	text-shadow: 3px 3px 3px #000;
}

#child-index-menu #kakuen-button a.active{
	position: absolute;
	bottom: 0;
	display: block;
	width: 100%;
	filter:alpha(opacity=100);
	-moz-opacity: 1;
	opacity: 1;
	height: 100px;
	border-bottom: 5px solid #ffa905;
	font-size: 1.3em;
}

#child-index-menu #kakuen-button a.inactive{
	position: absolute;
	top: 0;
	display: inline-block;
	width: 50%;
	filter:alpha(opacity=70);
	-moz-opacity: 0.7;
	opacity: 0.7;
	height: 50px;
	font-size: 0.7em;
}

#child-index-menu #kakuen-button a:nth-child(2){
	left: 0;
}

#child-index-menu #kakuen-button a:nth-child(3){
	left: 50%;
}

#child-index-menu #kakuen-button a:nth-child(4){
	left: 0%;
	top: 50px;
}

#child-index-menu #kakuen-button a:nth-child(5){
	left: 50%;
	top: 50px;
}

#child-index-menu #kakuen-button a:nth-child(6){
	left: 0%;
	top: 100px;
}

#child-index-menu #kakuen-button a:nth-child(7){
	left: 50%;
	top: 100px;
}

#child-index-menu #kakuen-button a.inactive:hover{
	animation: kakuen-child 0.2s ease-in-out forwards;
}

@keyframes kakuen-child{
	0% {
		filter:alpha(opacity=70);
		-moz-opacity: 0.7;
		opacity: 0.7;
		}
	100% {
		filter:alpha(opacity=100);
		-moz-opacity: 1;
		opacity: 1;
		}
}

#child-index-menu #kakuen-button a span:nth-child(1){
	display: block;
	position: absolute;
	left: 50%;
	top: 20%;
	-webkit-transform: translate(-50%, -20%);
	-ms-transform: translate(-50%, -20%);
	transform: translate(-50%, -20%);
	width: 100%;
	font-size: 0.8em;
}

#child-index-menu #kakuen-button a span:nth-child(2){
	display: block;
	position: absolute;
	left: 50%;
	top: 60%;
	-webkit-transform: translate(-50%, -60%);
	-ms-transform: translate(-50%, -60%);
	transform: translate(-50%, -60%);
	width: 100%;
	font-size: 1.4em;
}

#child-index-menu #kakuen-button a.active span:nth-child(2){
	font-size: 1.6em;
}

#child-index-menu #kakuen-button a#hc-mayumi{
	background: url(../images/index/mayumi2022.jpg);
	background-size: cover;
	background-position: 50% 55%;
}

#child-index-menu #kakuen-button a#hc-yakata{
	background: url(../images/index/yakata.jpg);
	background-size: cover;
	background-position: 50% 45%;
}

#child-index-menu #kakuen-button a#hc-place{
	background: url(../images/index/place.jpg);
	background-size: cover;
	background-position: 50% 60%;
}

#child-index-menu #kakuen-button a#hc-shien{
	background: url(../images/index/shien.jpg);
	background-size: cover;
	background-position: 50% 50%;
}

#child-index-menu #kakuen-button a#hc-child{
	background: url(../images/index/child.jpg);
	background-size: cover;
	background-position: 50% 50%;
}

#child-index-menu #kakuen-button a#hc-den{
	background: url(../images/index/den.jpg);
	background-size: cover;
	background-position: 50% 50%;
}

#child-index-menu #kakuen-button a#hc-marble{
	background: url(../images/index/marble.jpg);
	background-size: cover;
	background-position: 50% 50%;
}

#child-index-menu #child-menu-wrapper{
	/*background: #ffe2a5;*/
	background: url(../images/common/ptn-orange.jpg);
	margin-top: 0;
	margin-bottom: 5px;
}

#child-index-menu #child-menu-wrapper #child-menu{
}

#child-index-menu #child-menu-wrapper #child-menu li{
	border-bottom: 1px solid #999;
	text-align: center;
}

#child-index-menu #child-menu-wrapper #child-menu li:last-child{
	border-bottom: 0;
}

#child-index-menu #child-menu-wrapper #child-menu li a{
	display: block;
	padding: 15px 0;
	color: #333;
	font-size: 1.1em;
	font-weight: bold;
}

#child-index-menu #child-menu-wrapper #child-menu li a:hover{
	text-decoration: underline;
}

#diary-wrapper{
}

#diary-wrapper #diary-list li{
	float: left;
	margin: 0 10px 40px 0;
	display: block;
	position: relative;
	width: calc(100vw - 20px);
}

#diary-wrapper #diary-list li a{
	display: block;
	position: relative;
	overflow: hidden;
	width: calc(100vw - 20px);
	height: 200px;
	color: #333;
}

#diary-wrapper #diary-list li a .post-img{
	position: absolute;
	object-fit: cover;
	min-width: calc(100vw - 20px);
	max-width: calc(100vw - 20px);
	min-height: calc(100vw / 4 * 3);
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

#diary-wrapper #diary-list li a .post-wrapper{
	display: block;
	position: absolute;
	bottom: 0;
	width: calc(100vw - 40px);
	background: rgba(255,255,255,0.7);
	padding: 10px;
}

#diary-wrapper #diary-list li a .post-date{
	display: block;
	font-size: 0.8em;
	margin-bottom: 5px;
}

#diary-wrapper #diary-list li a .post-title{
	display: block;
}

#diary-wrapper #diary-list li a .post-new{
	display: block;
	position: absolute;
	top: 10px;
	right: 10px;
	padding: 4px;
	background: #f00;
	color: #fff;
	border-radius: 8px;
	font-size: 0.8em;
}

/* ===================================================================== single ===================================================================== */
.single h2{
	height: 1.2em;
	background: none;
	text-align: center;
	font-size: 1em;
	margin-bottom: 20px;
	border-top: 1px solid #fbb03b;
	border-bottom: 1px solid #fbb03b;
	color: #fbb03b;
	padding: 5px;
}

.single .post-date{
	text-align: center;
	font-size: 0.8em;
	font-weight: bold;
	color: #888;
	margin-bottom: 10px;
}

.single h3{
	text-align: center;
	font-size: 1.4em;
	margin-top: 10px;
	margin-bottom: 40px;
	color: #333 !important;
	border-left: 0 !important;
	padding-left: 0 !important;
}

.single p.article{
	margin-bottom: 20px;
}

.single .img-box{
	overflow: hidden;
	/*margin-left: -10px;*/
}

.single .img-crop-box{
	position: relative;
	overflow: hidden;
	float: left;
	width: 100vw;
	height: calc(100vw / 4 * 3);
	margin: 0 0 20px 0;
}

.single .img-crop-box img{
	position: absolute;
	object-fit: cover;
	min-width: 100%;
	max-width: 100%;
	min-height: calc(100vw / 4 * 3);
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.single .img-crop-box .img-caption{
	position: absolute;
	bottom: 0;
	display: block;
	width: 100%;
	height: auto;
	padding: 8px;
	background: rgba(255,255,255,0.7);
	font-size: 0.8em;
}

.single .youtube-box-16-9 iframe{
	width: calc( 100vw - 20px ) !important;
	height: calc( (100vw - 20px) / 16 * 9 ) !important;
}

.single .youtube-box-4-3 iframe{
	width: calc( 100vw - 20px ) !important;
	height: calc( (100vw - 20px) / 4 * 3 ) !important;
}

/* ===================================================================== page ===================================================================== */
.page #article-wrapper p{
	margin-bottom: 10px;
}

.page #article-wrapper th, .page #article-wrapper td{
	border: 1px solid #999;
	padding: 10px 5px;
	text-align: center;
	vertical-align: middle;
}

.page #article-wrapper th{
	background: #eee;
}

/* ===================================================================== page【入園案内】 ===================================================================== */
.page #admission{
}

.page #admission .align-left{
	text-align: left;
}

.page #admission .encho-heijitsu{
	/*text-align: left;
	padding-left: 130px;*/
}

.page #admission .kyoikujikan{
	text-align: left;
	padding-left: 30px;
}

/* ===================================================================== page【子どもの館　園紹介】 ===================================================================== */
.page #yakata-intro{
}

.page #yakata-intro p{
	line-height: 1.1em;
}

.page #yakata-intro #row01{
	overflow: hidden;
}

.page #yakata-intro #row01 p{
	/*float: right;*/
}

.page #yakata-intro #row01 #yakata-intro01{
	float: left;
	width: 120px;
	margin: 0 10px 10px 0;
}

.page #yakata-intro #row01 #yakata-intro01 img{
	width: 100%;
	height: auto;
	border-radius: 15px;
}

.page #yakata-intro #row02,
.page #yakata-intro #row04,
.page #yakata-intro #row06{
	overflow: hidden;
	margin-left: -10px;
}

.page #yakata-intro #row02 img,
.page #yakata-intro #row04 img,
.page #yakata-intro #row06 img{
	width: 100%;
	height: 100%;
	border-radius: 10px;
	object-fit: cover;
}

.page #yakata-intro #row02 #yakata-intro02,
.page #yakata-intro #row02 #yakata-intro03,
.page #yakata-intro #row02 #yakata-intro04,
.page #yakata-intro #row04 #yakata-intro05,
.page #yakata-intro #row04 #yakata-intro06,
.page #yakata-intro #row04 #yakata-intro07,
.page #yakata-intro #row04 #yakata-intro08,
.page #yakata-intro #row04 #yakata-intro09,
.page #yakata-intro #row04 #yakata-intro10,
.page #yakata-intro #row04 #yakata-intro11,
.page #yakata-intro #row04 #yakata-intro12,
.page #yakata-intro #row04 #yakata-intro13,
.page #yakata-intro #row04 #yakata-intro14,
.page #yakata-intro #row06 #yakata-intro15,
.page #yakata-intro #row06 #yakata-intro16,
.page #yakata-intro #row06 #yakata-intro17,
.page #yakata-intro #row06 #yakata-intro18,
.page #yakata-intro #row06 #yakata-intro19,
.page #yakata-intro #row06 #yakata-intro20,
.page #yakata-intro #row06 #yakata-intro21,
.page #yakata-intro #row06 #yakata-intro22,
.page #yakata-intro #row06 #yakata-intro23,
.page #yakata-intro #row06 #yakata-intro24{
	float: left;
	width: calc( (100vw - 30px) / 2 );
	height: calc( (100vw - 30px) / 2 );
	margin: 0 0 10px 10px;
}


/* ===================================================================== archive ===================================================================== */
.archive #diary-wrapper{
	margin: 50px 0;
}

.wp-pagenavi {
	clear: both;
	text-align:center;
	margin-top: 20px;
}
.wp-pagenavi a, .wp-pagenavi span {
	font-size: 0.9em;
	color: #666;
	background-color: #FFF;
	border: solid 1px #999;
	padding: 8px 13px;
	margin: 0 2px;
	white-space: nowrap;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	-webkit-transition: 0.2s ease-in-out;
	-moz-transition: 0.2s ease-in-out;
	-o-transition: 0.2s ease-in-out;
	transition: 0.2s ease-in-out;
	text-align: center;
	text-decoration:none;
}

.wp-pagenavi a:hover{
	color:#FFF; 
	background-color:#999; 
	border-color:#999;
}

.wp-pagenavi span.current{
	color: #FFF;
	background-color: #dc6000;
	border-color: #dc6000;
	font-weight: bold;
}

/* ===================================================================== page【視察をご希望の方へ】 ===================================================================== */
#inspection-form-wrapper{
	border: 1px solid #999;
	padding: 20px;
	background: #f9f9f9;
}

.inspection-form{
	margin-bottom: 15px;
}

.inspection-form .inspection-head{
	font-weight: bold;
}

.inspection-form .inspection-input{
}

.inspection-form .required{
	display: block;
	color: #f00;
	font-size: 0.8em;
}

.inspection-form .example{
	display: block;
	font-size: 0.8em;
	margin-left: 10px;
}

.inspection-form input[type="submit"]{
	width: 200px;
	height: 50px;
	padding: 10px;
	border-radius: 5px;
	cursor: pointer;
	margin-top: 20px;
	font-size: 1em;
}

.inspection-form input[type="text"],
.inspection-form input[type="tel"],
.inspection-form input[type="email"],
.inspection-form textarea{
	border: 1px solid #999;
	font-size: 1em;
}

.page #inspection #course{
	width: 600px;
}

/* ===================================================================== page【まゆみ　園紹介】 ===================================================================== */
.page #mayumi-edu-intro{
}

.page #mayumi-edu-intro #p1{
	text-align: center;
}

.page #mayumi-edu-intro #p2{
	text-align: center;
	margin-top: 10px;
}

.page #mayumi-edu-intro .doc-img{
	text-align: center;
}

.page #mayumi-edu-intro .doc-img img{
	max-width: 100%;
	height: auto;
}

.page #mayumi-edu-intro .pc-only{
	display: none !important;
}

.page #mayumi-edu-intro .pc-col2{
	text-align: center;
}

.page #mayumi-edu-intro .pc-col3{
	text-align: center;
}

.page #mayumi-edu-intro .pc-col3-2{
}

.page #mayumi-edu-intro .book{
	border: 1px solid #999;
	box-shadow: 3px 3px 3px rgba(0,0,0,0.4);
	max-width: 80%;
	height: auto;
	margin: 10px 0;
}

.page #mayumi-edu-intro .pc-col2 p.note{
	display: inline-block;
	width: 80%;
	border: 1px solid #999;
	padding: 1%;
	text-align: left;
}

.page #mayumi-edu-intro .stepup{
	border: 1px solid #999;
	box-shadow: 3px 3px 3px rgba(0,0,0,0.4);
	max-width: 80%;
	height: auto;
	margin: 5% 10%;
}

.page #mayumi-edu-intro .step1{
	display: block;
	margin-left: 1em;
	font-weight: bold;
}

.page #mayumi-edu-intro .step2{
	display: block;
	margin-left: 2em;
}

.page #mayumi-edu-intro .step3{
	display: block;
	margin-left: 3em;
}

/*.page #mayumi-intro .photo-box1{
}

.page #mayumi-intro .photo-box1 #photo1{
	margin-bottom: 10px;
}

.page #mayumi-intro .photo-box1 #photo2{
	margin-bottom: 10px;
}

.page #mayumi-intro .photo-box2{
}

.page #mayumi-intro .photo-box2 #photo3{
	margin-bottom: 10px;
}

.page #mayumi-intro .photo-box2 #photo4{
	margin-bottom: 10px;
}

.page #mayumi-intro .photo-box2 #photo5{
	margin-bottom: 10px;
}

.page #mayumi-intro .photo-box2 #photo6{
	margin-bottom: 10px;
}

.page #mayumi-intro .photo-box2 #photo7{
	margin-bottom: 10px;
}*/

.page #mayumi-intro .photo-container{
}

.page #mayumi-intro .photo-container>.title{
	font-weight: bold;
	text-align: center;
}
.page #mayumi-intro .photo-container .description-full{
	font-size: 0.9rem;
}

.page #mayumi-intro .photo-container .photo-box{
	margin-bottom: 10px;
}

.page #mayumi-intro .photo-container .photo-box img{
	width: 100%;
	height: auto;
}

.page #mayumi-intro .photo-container .photo-box .title{
	font-weight: bold;
	text-align: center;
}

.page #mayumi-intro .photo-container .photo-box .description{
	font-size: 0.9rem;
}


/* ===================================================================== page【こどもの家　園紹介】 ===================================================================== */
.page #kodomo-intro{
}

.page #kodomo-intro #p1{
	text-align: center;
	font-size: 1.5em;
	font-weight: bold;
	margin: 30px 0 60px 0;
}

.page #kodomo-intro .qa-box{
	margin: 30px 0;
}

.page #kodomo-intro .qa-box .q{
}

.page #kodomo-intro .qa-box .q span:nth-child(1){
	display: inline-block;
	width: 3em;
	height: 3em;
	font-weight: bold;
	color: #fff;
	text-align: center;
	line-height: 3em;
	background-color: #21A366;
	border-radius: 50%;
	margin-right: 10px;
}

.page #kodomo-intro .qa-box .q span:nth-child(2){
	display: inline-block;
	vertical-align: middle;
	width: calc( (100vw - 20px) - 3em - 10px );
}

.page #kodomo-intro .qa-box .a{
}

.page #kodomo-intro .qa-box .a span:nth-child(1){
	display: inline-block;
	width: 3em;
	height: 3em;
	font-weight: bold;
	color: #fff;
	text-align: center;
	line-height: 3em;
	background-color: #DD5246;
	border-radius: 50%;
	margin-right: 10px;
}

.page #kodomo-intro .qa-box .a span:nth-child(2){
	display: inline-block;
	vertical-align: middle;
	width: calc( (100vw - 20px) - 3em - 10px );
}


/* ===================================================================== page【こどもの家　病後児保育】 ===================================================================== */
.page #kodomo-byougoji{
}

.page #kodomo-byougoji ul#example1{
	margin-left: 60px;
	margin-bottom: 10px;
	list-style: disc outside;
}

.page #kodomo-byougoji ul#example1 li{
	margin: 5px 0;
}

.page #kodomo-byougoji #tejun div{
	margin-left: 10px;
	margin-right: 10px;
	padding: 20px;
	border: 1px solid #DC6000;
}

.page #kodomo-byougoji #tejun p.arrow{
	text-align: center;
	margin-bottom: 0;
}

.page #kodomo-byougoji #tejun p.arrow img{
	width: 80px;
	height: auto;
}

.page #kodomo-byougoji #tejun div p:nth-child(1){
	font-size: 1.2em;
	font-weight: bold;
}

.page #kodomo-byougoji #tejun div p:nth-child(2){
	margin-left: 30px;
}

.page #kodomo-byougoji ul#motimono{
	margin-left: 60px;
	margin-bottom: 10px;
	list-style: disc outside;
}

.page #kodomo-byougoji ul#motimono li{
	margin: 5px 0;
}


/* ===================================================================== page【こどもの家　共同利用事業所募集】 ===================================================================== */
.page #kodomo-bosyu{
}

.page #kodomo-bosyu #p1{
	text-align: center;
	font-size: 1.3em;
	font-weight: bold;
	margin: 30px 0 60px 0;
}

.page #kodomo-bosyu #sec1 img:nth-child(1){
	width: calc( 100vw - 20px );
	height: auto;
}

.page #kodomo-bosyu #sec1 img:nth-child(2){
	width: calc( 100vw - 20px );
	height: auto;
}

.page #kodomo-bosyu #sec2{
}

.page #kodomo-bosyu #sec2 div:nth-child(1){
}

.page #kodomo-bosyu #sec2 div:nth-child(1) p:nth-child(4),
.page #kodomo-bosyu #sec2 div:nth-child(1) p:nth-child(5){
	color: #f00;
}

.page #kodomo-bosyu #sec2 div:nth-child(2){
	text-align: center;
}

.page #kodomo-bosyu #sec3 h4{
	padding: 10px;
	margin-bottom: 0;
	background-color: #CDDE68;
}

.page #kodomo-bosyu #sec3 #itaku{
	border: 2px solid #CDDE68;
	padding: 10px;
}

.page #kodomo-bosyu #sec3 #itaku > div:nth-child(1){
	padding: 10px;
}

.page #kodomo-bosyu #sec3 #itaku > div:nth-child(1) img{
	width: calc( 100vw - 20px - 20px - 20px - 4px );
	height: auto;
}

.page #kodomo-bosyu #sec3 #itaku > div:nth-child(2){
	padding: 10px;
}

.page #kodomo-bosyu #sec3 #itaku > div:nth-child(2) > div:nth-child(1){
	padding: 20px;
	background-color: #3498E8;
	color: #fff;
	border-radius: 10px;
	margin-bottom: 10px;
}

.page #kodomo-bosyu #sec3 #itaku > div:nth-child(2) > div:nth-child(1) p:nth-child(1){
	font-size: 1.6em;
	font-weight: bold;
}

.page #kodomo-bosyu #sec3 #riyou{
	border: 2px solid #CDDE68;
	padding: 10px;
}

.page #kodomo-bosyu #sec3 #riyou > div:nth-child(1){
	padding: 10px;
}

.page #kodomo-bosyu #sec3 #riyou > div:nth-child(1) img{
	width: calc( 100vw - 20px - 20px - 20px - 4px );
	height: auto;
}

.page #kodomo-bosyu #sec3 #riyou > div:nth-child(2){
	padding: 10px;
}

.page #kodomo-bosyu #sec3 #riyou > div:nth-child(2) > div:nth-child(1){
	padding: 20px;
	background-color: #FC86D8;
	color: #fff;
	border-radius: 10px;
	margin-bottom: 10px;
}

.page #kodomo-bosyu #sec3 #riyou > div:nth-child(2) > div:nth-child(1) p:nth-child(1){
	font-size: 1.6em;
	font-weight: bold;
}

.page #kodomo-bosyu #sec4{
	margin-top: 30px;
}

.page #kodomo-bosyu #sec4 div{
	margin: 10px auto;
}

.page #kodomo-bosyu #sec4 div:nth-child(1),
.page #kodomo-bosyu #sec4 div:nth-child(2),
.page #kodomo-bosyu #sec4 div:nth-child(3){
	width: 170px;
	height: 170px;
	padding: 30px;
	border-radius: 50%;
}

.page #kodomo-bosyu #sec4 div:nth-child(1){
	background-color: #D7F150;
}
.page #kodomo-bosyu #sec4 div:nth-child(1) p{
	margin-top: 35px;
}

.page #kodomo-bosyu #sec4 div:nth-child(2){
	background-color: #FADEA0;
}
.page #kodomo-bosyu #sec4 div:nth-child(2) p{
	margin-top: 35px;
}

.page #kodomo-bosyu #sec4 div:nth-child(3){
	background-color: #FEFA65;
}
.page #kodomo-bosyu #sec4 div:nth-child(3) p{
	margin-top: 50px;
}

.page #kodomo-bosyu #sec4 div:nth-child(4){
	width: 180px;
}
.page #kodomo-bosyu #sec4 div:nth-child(4) p{
	margin-top: 30px;
}

.page #kodomo-bosyu #last-p{
	text-align: center;
	font-size: 1.1em;
	font-weight: bold;
	margin-top: 30px;
}


/* ===================================================================== page【教職員募集】 ===================================================================== */
.page #recruit{
}

.page #recruit p.subhead{
	font-size: 1.3rem;
	text-align: center;
	padding-top: 40px;
	padding-bottom: 40px;
}

.page #recruit .recruit_list{
	position: relative;
}

.page #recruit .recruit_list .box{
	margin: 20px;
}

.page #recruit .recruit_list .box ul li{
	margin: 10px 0 10px 20px;
    list-style-type: disclosure-closed;
    list-style-position: outside;
}

.page #recruit .recruit_list .recruit_image{
	text-align: center;
	padding-top: 30px;
}

.page #recruit .recruit_list .recruit_image img{
	display: inline-block;
	width: 70vw;
	height: auto;
    margin-bottom: -10px;
    transform: rotate(4deg);
    box-shadow: 6px 6px 7px #bbb;
}

.page #recruit .recruit_voice{
	padding-top: 20px;
}

.page #recruit .recruit_voice ul li{
	position: relative;
    list-style: none;
    background-color: #fff2ef;
    padding: 20px;
	border-radius: 15px;
	margin: 0 20px 30px 20px;
	margin-bottom: 30px;
}

.page #recruit .recruit_voice ul li img{
	display: block;
    width: 30vw;
    height: auto;
    border-radius: 50%;
	margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
}

.page #recruit .recruit_voice ul li p:nth-child(2){
    font-size: 1.3rem;
	text-align: center;
	margin-bottom: 20px;
}

.page #recruit .recruit_voice ul li p:nth-child(3){
}


/* ===================================================================== page【お問い合わせ】 ===================================================================== */
#contact .form-wrapper{
	border: 1px solid #999;
	padding: 20px;
	background: #f9f9f9;
}

#contact .form{
	margin-bottom: 15px;
}

#contact .form .head{
	font-weight: bold;
}

#contact .form .input{
}

#contact .form .required{
	display: block;
	color: #f00;
	font-size: 0.8em;
}

#contact .form .example{
	display: block;
	font-size: 0.8em;
	margin-left: 10px;
}

#contact .form input[type="submit"]{
	width: 200px;
	height: 50px;
	padding: 10px;
	border-radius: 5px;
	cursor: pointer;
	margin-top: 20px;
	font-size: 1em;
}

#contact .form input[type="text"],
#contact .form input[type="tel"],
#contact .form input[type="email"],
#contact .form textarea{
	border: 1px solid #999;
	font-size: 1em;
	width: 94%;
}
