
/*
Theme Name: miraikko
Theme URI: http://miraikko.local
Description: 保育園ホームページ
Version: 1.0.0
Author: yuka kondo
Author URI: 




/*===========
PC・スマホ共通
===========*/
body {
    font-family: "Zen Maru Gothic", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
  }
  
  p {
    font-size: 14px;
		color: #696969;
  }
  
  .pc {
      display: block;
  }
  
  .sp {
      display: none !important;
  }

/*PC用ヘッダー*/

header {
	display: flex;
	justify-content: space-between;
	position: fixed;
	z-index: 10001;
	background-color: #fff;
	padding: 8px 20px 20px 0;
	width: 100%;
}

#header-logo-container {
	position: relative;
}

#header-logo {
	margin-right: 16px;
	position: absolute;
	top: 0;
	z-index: 1000;
	background-color: #fff;
	padding: 5px 50px 70px 30px;
	border-radius: 100% 0% 88% 0 / 0% 39% 64% 99%;
}

#header-logo.headerLogoScroll {
  padding: 5px 0 0 20px;
  border-radius: 0;
  top: 0;
  margin-top: 0;
  transition: all 2s ease;
}
#header-logo img {
	width: 180px;
}

/* 初期状態 */
.header-logo.-before {
	display: block;
}
.header-logo.-after {
	display: none;
}

/* スクロール後：.js-header に .headerLogoScroll が付いたら */
.js-header.headerLogoScroll .-before {
	display: none;
}

.js-header.headerLogoScroll .-after {
	display: block;
}

.header-recruit {
	width: 180px;
	background-color: #1AB0AC;
	color: #fff !important;
	border-radius: 15px;
	font-weight: bold;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
	height: 50px;
}

.header-contact {
	background-color: #FF577F;
	color: #fff !important;
	border-radius: 15px;
	font-weight: bold;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
	width: 180px;
	height: 50px;
}

#nav-pc a {
	margin-left: 24px;
	color: #454545;
	transition: color 0.4s ease;
	font-weight: 500;
}

#nav-pc {
	margin-top: 8px;
	display: flex;
	align-items: center;
	font-size: 14px;
}

#nav-pc a:hover {
	color: #F19720;
}

.nav-arrow::after {
	content: url(images/logo/nav-icon.svg);
	margin-left: 8px;
	height: 15px;
}

.nav-item {
  position: relative;
  display: inline-block;
}

.nav-item .dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  padding: 10px 0;
  border-radius: 8px;
  z-index: 999;
  min-width: 150px;
  opacity: 0;
  transform: translateY(-3px); /* ← ここを -10px に！ */
  pointer-events: none;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.nav-item:hover .dropdown {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-item .dropdown li {
  list-style: none;
  padding: 0;
}

.nav-item .dropdown li a {
  display: block;
	font-size: 13px;
  padding: 10px 0 10px 10px;
  color: #696969;
  text-decoration: none;
  white-space: nowrap;
}

.hover-zoom {
  display: inline-block;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.hover-zoom:hover {
  transform: scale(1.05); /* 1.1でもOK、少し大きくなる */
}

.hover-zoom-big {
  display: inline-block;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.hover-zoom-big:hover {
  transform: scale(1.1); /* 1.1でもOK、少し大きくなる */
}

#overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5); /* 半透明の黒 */
	display: none; /* 初期状態では非表示 */
	z-index: 998; /* メニューより低く、他の要素より高い */
}


/* メニューが開いたときにオーバーレイを表示 */
.nav-open #overlay {
display: block;
}

@media screen and (max-width: 1120px) {

	#nav-pc a {
		margin-left: 16px;
	}
	
	#nav-pc {
		font-size: 12px;
	}

	.header-recruit img {
		width: 25px;
	}

	.header-contact img {
		width: 25px;
	}
}

@media screen and (max-width: 1000px) {

	#nav-pc a {
		margin-left: 16px;
	}
	
	#nav-pc {
		font-size: 10px;
	}

}

	@media screen and (max-width: 930px) {

		#nav-pc a {
			margin-left: 16px;
		}
		
		#nav-pc {
			font-size: 10px;
		}
	

		#header-logo img {
			width: 150px;
		}

		.header-contact {
			width: 120px;
			height: 40px;
		}

		.header-recruit {
			width: 120px;
			height: 40px;
		}

}


/*PC用メイン*/

#main-visual {
	position: relative;
}

.top-carousel-img {
	width: 100%;
	z-index: -100;
}

@keyframes zoomIn {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}

.top-carousel-swiper {
  width: 100%;
  height: auto;
  animation: zoomIn 12s ease-in-out infinite alternate;
  object-fit: cover;
}

#topics {
	background-color: #fff;
	position: absolute;
	bottom: 70px;
	right: 80px;
	z-index: 10000;
	padding: 15px 50px 15px 50px;
	border-radius: 30px;
	display: flex;
	gap: 20px;
}

#topics-line {
	margin-left: 20px;
}

#topics a {
	display: flex;
}

#topics h2 {
	color: #F19720;
	font-weight: bold;
}

#topics-h1 {
	margin-left: 24px;
	color: #696969;
	z-index: 10000;
}


@keyframes tiltWobble {
  0%   { transform: rotate(0deg); }
  50%  { transform: rotate(6deg); }
  100% { transform: rotate(0deg); }
}

#kids-illust {
  position: absolute;
  z-index: 1000;
  bottom: -50px;
  right: 0;
  transform-origin: center bottom; /* ← 足元を軸に回転 */
  animation: tiltWobble 1s steps(1, end) infinite;
}

#kids-illust img {
	width: 150px;
}

#ab {
	position: absolute;
	bottom: 550px;
	right: 60px;
	transform-origin: center bottom; /* ← 足元を軸に回転 */
  animation: tiltWobble 1s steps(1, end) infinite;
}

#ab img {
	width: 150px;
}

#kids-second {
	position: absolute;
	left: 60px;
	transform-origin: center bottom; /* ← 足元を軸に回転 */
  animation: tiltWobble 1s steps(1, end) infinite;
}

#kids-second img {
	width: 150px;
}

#bird {
  position: absolute;
  top: 20px;
  right: 70px;
  transform-origin: center bottom; /* ← 足元を軸に回転 */
  animation: tiltWobble 1s steps(1, end) infinite;
}

#bird img {
	width: 200px;
}



@media screen and (max-width: 767px) {

	#kids-illust img {
		width: 100px;
	}

	#ab img {
		width: 100px;
	}

	#bird img {
		width: 100px;
	}

	#kids-second img {
		width: 100px;
	}

	#bird {
		top: -30px;
		right: 30px;
	}

}



/* 初期状態 */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s, transform 1s;
} 

/* スクロールして表示されるときの状態 */
.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}



@keyframes growTree {
  to {
    opacity: 1;
    transform: translateY(0);
		z-index: 100;
  }
}


/*旧ブログリンク*/
#old-hp {
	margin-top: 32px;
	display: flex;
	justify-content: center;
}

/*PC用お知らせ一覧*/

#top-news {
	display: flex;
	margin: 80px auto;
	max-width: 1080px;
	position: relative;
	justify-content: space-around;
	gap: 64px;
}

#top-news-itiran {
	display: flex;
	z-index: 10000;
}

#top-news-itiran img {
	width: 10px;
}

.top-news-line {
	width: 100%;
}

#top-news-itiran h2 {
	margin-left: 24px;
	margin-top: 32px;
	color: #454545;
}

#top-news-itiran img {
	margin-top: 32px;
	margin-left: 16px;
	height: 20px;
}

.top-news-title {
	display: flex;
	align-items: center;
	margin-top: 16px;
	gap: 24px;
}


.news-name {
	margin-left: 24px;
	width: 118px;
	height: 30px;
	border-radius: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: bold;
	font-size: 12px;
}

#top-news-kitakahei {
	border: solid 1.5px #FF91AC;
	color: #FF91AC;
}

#top-news-nisiarai {
	border: solid 1.5px #47CAC6;
	color: #47CAC6;
}

#top-news-higashimukoujima {
  border: solid 1.5px #0FA6F5;
	color: #0FA6F5;
}

.subtitle {
	background-color: #F19720;
	border-radius: 60% 48% 45% 67% / 53% 53% 43% 47%;
	height: 136px;
	width: 136px;
}

.subtitle-second {
	background-color: #F19720;
	border-radius: 61% 48% 61% 48% / 44% 47% 59% 60%;
	height: 136px;
	width: 136px;
}


.subtitle-h1 {
	padding-top: 45px;
	font-size: 24px;
	color: #fff;
	text-align: center;
	font-weight: bold;
}

.subtitle-h3 {
	color: #fff;
	text-align: center;
	padding-top: 5px;
	font-weight: bold;
}

.top-news-title h4 {
	font-size: 16px;
	color: #696969;
	margin-top: 24px;
	margin-left: 40px;
}


.top-news-title-h2 {
	font-size: 16px;
	color: #696969;
	font-weight: 500;
	margin-left: 40px;
	word-break: normal;
}

.news_post_small_title {
	color: #696969;
	display: flex;
	align-items: center;
	word-break: keep-all;
}



@media screen and (max-width: 1080px) {
	#top-news {
		margin: 48px 24px;
	}
}

/*PC用園のこと*/

#aboutus {
	position: relative;
	width: 100%;
}

.maintitle {
	z-index: -10;
	position: relative;
}

#maintitle-img img {
	width: 100%;
}

.maintitle-orange {
	text-align: center;
}

.maintitle-p {
	text-align: center;
	position: absolute;
	right: 0;
	left: 0;
	bottom: 20px;
}

.maintitle-p h1 {
	font-weight: bold;
	font-size: 32px;
	color: #fff;
}

.maintitle-p h3 {
	font-weight: bold;
	color: #fff;
}


#aboutus-philosophy {
	display: flex;
	margin: 0 auto 0 0;
	padding: 80px 0 0 0;
	flex-wrap: wrap;
	justify-content: space-around;
	background-color: #FFFCF7;
}

#aboutus-philosophy-container {
	display: flex;
	flex-wrap: wrap;
	gap: 56px;
	justify-content: center;
	align-items: center;
}

#philosophy-title {
	text-align: center;
}

#philosophy-title h1 {
	font-size: 30px;
	font-weight: bold;
	color: #F19720;
	margin-bottom: 32px;
}

#philosophy-title p {
	line-height: 32px;
	font-size: 14px;
}


#philosophy-p {
	max-width: 500px;
	margin-left: 48px;
	margin-top: 24px;
	line-height: 24px;
}

#fertures-life-container {
	display: flex;
	margin: 48px auto;
	max-width: 1280px;
	flex-wrap: wrap;
	justify-content: center;
}

.fertures-life-wrap {
	margin: 40px;
	position: relative;
}

.fertures-life-wrap-h2 {
	font-size: 18px;
	color: #F19720;
}

.fertures-life-titile {
	background-color: #FFFCF7;
	display: flex;
	padding: 15px 60px 17px 60px;
	border-radius: 30px 0 30px 0;
	position: absolute;
	right: -20px;
	bottom: -10px;
	align-items: center;
	gap: 24px;
}

.fertures-life-wrap-img {
	height: 15px;
}

.fertures-life-img {
	width: 400px;
}


/*各園のご案内*/

#information {
	overflow: hidden;
}

.swiper03 {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 21px 0;
	position: relative;
	margin-bottom: 50px;
}

@media screen and (max-width: 1080px) {

	#aboutus {
		margin-bottom: 0;
	}

	#fertures-life-container {
		margin-bottom: 0;
	}

	#information {
		margin-top: 0;
	}

	.swiper03 {
		width: 800px;
		padding-top: 10px;
	}

	#topics {
		bottom: 40px;
		right: 70px;
	}

	#topics a {
		font-size: 14px;
	}

	#topics h2 {
		font-size: 14px;
	}
}

@media screen and (max-width: 900px) {
	.swiper03 {
		width: 700px;
	}
}

.swiper03 .swiper-wrapper {
  overflow: visible;
}

.swiper03 .swiper-slide {
  transform: scale(0.85);
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0.5;
}

.swiper03 .swiper-slide-active {
  transform: scale(1.1);
  opacity: 1;
  z-index: 2;
}

.swiper03 .swiper-slide-prev,
.swiper03 .swiper-slide-next {
  transform: scale(0.85);
  opacity: 0.7;
}

.information-img {
  width: 100%;
  border-radius: 20px;
  display: block;
}

.swiper-a {
	position: relative;
	display: block;
}

.information-slide {
  position: absolute;
  bottom: -20px;
  right: -30px;
  background-color: #fff;
  border-radius: 30px 0 20px 0;
  padding: 20px 70px 40px 50px;
  text-align: center;
  word-break: keep-all;
}

.information-slide h1 {
	font-size: 18px;
	font-weight: 500;
	color: #F19720;
}

.information-slide h4 {
	color: #696969;
	font-size: 10px;
	font-weight: 500;
	margin-top: 8px;
}

.imformation-slide-name {
	display: flex;
	align-items: center;
	gap: 8px;
}

.imformation-slide-name img {
	width: 11px;
	height: 11px;
}


.swiper-button-next {
	position: absolute;
	right: -18px;
}

.swiper-button-prev {
	position: absolute;
	left: -48px;
}

.swiper-button-prev:after,
.swiper-button-next:after{
  content: ""; /*contentを空にする*/
}

/*園児募集タグ*/

#recruit-kids {
	margin: 80px auto;
	max-width: 1080px;
}

#recruit-kids-container {
	display: flex;
	margin-left: 80px;
	justify-content: center;
}

#recruit-kids-contact {
	display: flex;
	flex-wrap: wrap;
}

#recruit-kids-box {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	border: solid 2px #FFF5E3;
	padding: 45px 100px;
	border-radius: 30px;
	position: relative;
	text-align: center;
	gap: 48px;
	align-items: center;
}

#recruit-kids-h1 {
	padding-top: 40px;
	font-size: 24px;
	color: #fff;
	text-align: center;
	font-weight: bold;
}

#recruit-kids-orange {
	background-color: #F19720;
	border-radius: 54% 43% 43% 51% / 64% 61% 45% 41%;
	height: 136px;
	width: 136px;
	margin-right: 16px;
	position: absolute;
	left: -90px;
}

.recruit-kids-wrap h1 {
	font-size: 20px;
	color: #454545;
	margin-bottom: 24px;
}

.recruit-kids-wrap p {
	font-size: 14px;
	line-height: 24px;
}

#recruit-kids-contact h2 {
	color: #F19720;
	font-size: 16px;
	margin: 0 8px;
	font-weight: bold;
}

@media screen and (max-width: 1080px) {

	#recruit-kids-box {
		display: block;
		padding: 50px 100px;
		text-align: center;
	}

	#recruit-kids-orange {
		left: -60px;
	}

	.recruit-kids-wrap h1 {
		margin-bottom: 24px;
		text-align: center;
	}

	#recruit-kids-contact {
		margin-top: 40px;
		justify-content: center;
	}

}

/*PC用フッター*/

#footer-top {
	display: flex;
	margin: 80px auto;
	justify-content: center;
	flex-wrap: wrap;
}

#footer-logo img {
	width: 150px;
}

.footer-icon {
	height: 8px;
	width: 8px;
	margin-top: 8px;
}

.footer-menu {
	display: flex;
	align-items: center;
	gap: 8px;
}

#footer-recruit-contact {
	margin: 0 auto;
}

#footer-top-container {
	display: flex;
}

#footer-menu-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.footer-top-wrap {
	margin: 16px 32px;
}

.footer-top-wrap a {
	font-size: 16px;
	color: #454545;
}

.footer-top-wrap h2 {
	font-size: 12px;
	color: #696969;
	margin-top: 8px;
}

.footer-menu h2:hover {
	color: #F19720;
}

.footer-top-wrap {
	transition: color 0.5s ease, transform 0.5s ease, ;
}


.footer-top-wrap a:hover {
	color: #F19720;
	transform: translateX(8px); 
}


#footer-recruit {
	background-color: #1AB0AC;
	height: 55px;
	width: 190px;
	border-radius: 15px;
	font-weight: bold;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	margin-bottom: 24px;
}

#footer-contact {
	background-color: #FF577F;
	height: 55px;
	width: 190px;
	border-radius: 15px;
	font-weight: bold;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
}

#footer-bottom {
	display: flex;
	background-color: #F19720;
	justify-content: center;
	flex-wrap: wrap;
}

.footer-bottom-wrap {
	margin: 72px;
	text-align: center;
}

.footer-bottom-wrap h1 {
	font-size: 20px;
	font-weight: bold;
	color: #fff;
}

.footer-bottom-wrap p {
	margin-top: 16px;
	font-size: 14px;
	color: #fff;
}

#footer-bottom img {
	height: 150px;
	margin: auto 0;
}




@media screen and (max-width: 767px) {

	.pc {
		display: none !important;
	}

	.sp {
		display: block !important;
	}



	
 /* PC用ナビゲーション非表示 */
 #nav-pc {
	display: none;
}

#menu-sp {
	display: block;
	position: fixed;
	background-color: #F19720;
	padding: 15px;
	top: 0;
	right: 0;
	z-index: 10000;
	font-size: 14px;
	
}

#nav-sp.nav-open {
	position: fixed;
	top: 0;
	visibility: visible;
}

#nav-sp {
	visibility: hidden;
	position: absolute;
	top: -80vh;
	transition: 0.5s ease-in-out;
	right: 0;
	background-color: #fff;
	z-index: 10001;
	padding: 30px;
	width: 100%;
	height: 640px;
	font-size: 16px;
}

#hm-logo {
	text-align: center;
}

.menu {
	display: block;
	text-align: center;
	margin-top: 32px;
}

.dropdown-sp {
	font-size: 13px;
	text-align: center;
}

.dropdown-sp li {
	margin-top: 6px;
}

.dropdown-sp li img {
	height: 8px;
	width: 8px;
	margin-right: 8px;
	margin-bottom: 4px;
}

header {
	padding: 0px 10px 10px 0;
	background-color: transparent;
}

#header-logo {
	display: flex;
	position: fixed;
	top: 0;
	margin-right: 16px;
	margin-top: 0;
	background-color: #fff;
	padding: 5px 35px 35px 5px;
	border-radius: 0 0 100% 0;
}

#header-logo img {
	width: 65px;
	height: 65px;
}

#header-logo.headerLogoScroll {
  padding: 5px 35px 35px 5px;
  border-radius: 0 0 100% 0;
  top: 0;
  margin-top: 0;
	margin-right: 16px;
  transition: none;
	position: fixed;
}


#close {
	position: absolute;
	top: 15px;
	right: 15px;
}

#logo-sp img {
	height: auto;
	width: auto;
}

.header-recruit {
	width: 200px;
	margin: 32px auto;
	display: flex;
	justify-content: center;
	text-align: center;
	gap: 10px;
	height: 48px;
}

.header-contact {
	width: 200px;
	margin: 32px auto;
	display: flex;
	justify-content: center;
	text-align: center;
	gap: 10px;
	height: 48px;
}


/*スマホ用メイン*/

#topics {
	bottom: 30px;
	padding: 14px 20px 14px 20px;
	font-size: 12px;
	word-break: keep-all;
}

#topics a {
	display: block;
}

#topics h2 {
	font-size: 13px;
}

#topics-h1 {
	margin-left: 5px;
	margin-top: 5px;
	font-size: 14px;
	width: 150px;
}

#topics-line {
	display: none;
}

#tree-svg {
	position: absolute;
	bottom: -120px;
	z-index: 1000;
}

/*スマホ用お知らせ*/
#top-news-container {
	display: flex;
}

#top-news {
	display: flex;
	margin: 48px 16px;
	flex-wrap: wrap;
	gap: 24px;
}

#top-news-itiran h2 {
	margin-left: 0;
	margin-top: 30px;
	font-size: 16px;
	color: #696969;
}

#top-news-itiran img {
	margin-top: 32px;
	margin-left: 10px;
	height: 15px;
}

.top-news-title {
	display: block;
}

#aboutus-philosophy-container {
	justify-content: center;
}

.subtitle {
	height: 84px;
	width: 84px;
	margin-left: 24px;
	margin-right: 24px;
}

.subtitle-second {
	border-radius: 61% 48% 61% 48% / 44% 47% 59% 60%;
	height: 84px;
	width: 84px;
}

.subtitle-h1 {
	padding-top: 25px;
	font-size: 16px;
}

.subtitle-h3 {
	font-size: 10px;
	padding-top: 5px;
}

.top-news-title h4 {
	font-size: 13px;
	margin-left: 32px;
	margin-right: 24px;
}
.top-news-title h2 {
	font-size: 16px;
	margin-top: 8px;
	margin-left: 32px;
}

.news-name {
	margin-left: 0;
	margin-bottom: 6px;
}

/*スマホ用園のこと*/

#aboutus {
	width: 100%;
}

.maintitle-p {
	bottom: 20px;
}

.maintitle-p h1 {
	font-size: 20px;
}

.maintitle-p h3 {
	font-size: 13px;
}

#aboutus-philosophy {
	margin: 0;
	justify-content: left;
	padding: 30px 0;
}

#aboutus-philosophy-container img {
	width: 150px;
}

#aboutus-philosophy-container {
	gap: 16px;
	margin: 0 16px;
}

#philosophy-title h1 {
	font-size: 20px;
	margin-bottom: 30px;
}

#philosophy-title p {
	line-height: 20px;
	font-size: 12px;
}

#fertures-life-container {
	margin: 0 8px;
}

.fertures-life-wrap-h2 {
	font-size: 16px;
}

.fertures-life-titile {
	padding: 15px 30px 17px 30px;
	border-radius: 30px 0 30px 0;
	right: -20px;
	bottom: -10px;
	align-items: center;
	gap: 10px;
	word-break: keep-all;
}

.fertures-life-wrap-img {
	height: 10px;
	width: 10px;
}

#tree-gray-svg {
	height: 100px;
	position: absolute;
	bottom: 10px;
	z-index: -10;
}

.fertures-life-wrap img {
	width: 100%;
}

#life-img {
	margin-top: 5px;
}

/*スマホ用各園のご案内*/

#information {
	margin: 0;
}

#information {
	padding-top: 100px;
}

.swiper03 {
  width: 80%;
  margin: 0 auto;
  padding: 10px 0;
	margin-bottom: 50px;
}

.information-img {
  width: 100%;
  border-radius: 20px;
  display: block;
}

.information-slide {
	right: -10px;
  border-radius: 15px 0 20px 0;
  padding: 10px 40px 30px 30px;
}

.information-slide h1 {
	font-size: 10px;
	font-weight: bolder;
	color: #F19720;
}

.imformation-slide-name img {
	width: 8px;
}

.information-slide h4 {
	color: #696969;
	font-size: 7px;
	font-weight: bolder;
	margin-top: 3px;
}

.swiper-button-next {
	position: absolute;
	right: -22px;
}

.swiper-button-prev {
	position: absolute;
	left: -22px;
}

.swiper-button-prev:after,
.swiper-button-next:after{
  content: ""; /*contentを空にする*/
}

/*スマホ用園児募集タグ*/


#recruit-kids {
	margin: 32px 16px 16px 16px;
}

#recruit-kids-container {
	margin-left: 0;
	justify-content: center;
}

#recruit-kids-box {
	display: block;
	padding: 48px 16px;
	border-radius: 50px;
}

#recruit-kids-h1 {
	padding-top: 24px;
	font-size: 16px;
}

#recruit-kids-orange {
	height: 84px;
	width: 84px;
	margin-right: 10px;
	position: absolute;
	left: 38%;
	top: -50px;
}

.recruit-kids-wrap {
	margin-left: 0;
	text-align: center;
}

.recruit-kids-wrap h1 {
	font-size: 20px;
	color: #454545;
}

.recruit-kids-wrap p {
	font-size: 10px;
	margin-top: 24px;
}

#recruit-kids-contact h2 {
	font-size: 16px;
	margin: 0 6px;
	font-weight: bold;
}

#recruit-kids-contact {
	margin-top: 40px;
	justify-content: center;
}


/*スマホ用フッター*/

#footer-top {
	margin: 48px 16px;
}


.footer-menu {
	display: flex;
}

#footer-recruit-contact {
	margin: 24px auto;
}

#footer-recruit-contact a {
	margin-bottom: 24px;
}

#footer-menu-container {
	display: flex;
	flex-wrap: wrap;
	margin-top: 24px;
	justify-content: center;
}

.footer-top-wrap {
	margin: 24px;
	text-align: center;
}

.footer-top-wrap h1 {
	font-size: 16px;
	color: #454545;
}

.footer-top-wrap h2 {
	font-size: 12px;
	color: #696969;
	margin-top: 10px;
	margin-left: 5px;
}

#footer-bottom {
	display: block;
	padding: 15px;
}


.footer-bottom-wrap {
	margin: 40px;
}

.footer-bottom-wrap h1 {
	font-size: 16px;
}

.footer-bottom-wrap p {
	margin-top: 16px;
	font-size: 12px;
}

#footer-bottom img {
	height: auto;
	margin: auto;
}


}



