@charset "utf-8";
/* nursery.css */
#nursery {
  padding: 115px 0 0;
}
@media screen and (max-width:1000px) {
  #nursery {
    padding: 75px 0 0;
  }
}
div.fluid_2 {
  width: 560px;
  position: absolute;
  z-index: -1;
  top: 480px;
  left: -250px;
  aspect-ratio: 1;
  margin: 0 auto;
  border-radius: 55% 45% 55% 45% / 55% 50% 55% 45%; /* 初期形状 */
  animation: fluid-anim 30s linear infinite, wave-anim 12s ease-in-out infinite;
  background: #FDE4E4;

}
@media screen and (max-width:1000px) {
  div.fluid_2 {
    width: 400px;

  }
}

@media screen and (max-width:600px) {
 div.fluid_2 {
    width: 300px;
	left: -200px;
  }	
}

 div.fluid_3 {
    width: 400px;
    position: absolute;
    z-index: -1;
    top: 200px;
    right: -60px;
    aspect-ratio: 1;
    margin: 0 auto;
    border-radius: 65% 35% 55% 45% / 55% 50% 55% 45%; /* 初期形状 */
    animation: fluid-anim 30s linear infinite, wave-anim 12s ease-in-out infinite;
    background: #FDE4E4;
  }
@media screen and (max-width:600px) {
  div.fluid_3 {
	width: 240px;
    top: 110px;
    right: -100px;
  }
}

.page_ttl {
  padding: 70px 0 70px;
}
@media screen and (max-width:1000px) {
  .page_ttl {
    padding: 50px 0 40px;
  }
}
.page_ttl h2 {
  font-size: 40px;
  text-align: center;
  color: #9B9B9B;
  margin: 0 0 15px;
}
@media screen and (max-width:1000px) {
  .page_ttl h2 {
    font-size: 24px;
    margin: 0 0 10px;
  }
}
@media screen and (max-width:500px) {
  .page_ttl h2 {
    font-size: 21px;
    margin: 0 0 10px;
  }
}
.page_ttl h2 span {
  font-size: 20px;
}
@media screen and (max-width:1000px) {
  .page_ttl h2 span {
    font-size: 13px;
  }
}
@media screen and (max-width:500px) {
  .page_ttl h2 span {
    font-size: 11px;
  }
}
.page_ttl p {
  display: flex;
  justify-content: space-between;
  width: 62px;
  margin: 0 auto;
}
@media screen and (max-width:768px) {
  .page_ttl p {
    width: 50px;
    margin: 0 auto;
  }
}
.page_ttl p span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
@media screen and (max-width:768px) {
  .page_ttl p span {
    width: 9px;
    height: 9px;
  }
}
.page_ttl p span:first-child {
  background-color: #F6B83A;
}
.page_ttl p span:nth-child(2) {
  background-color: #81AF2D;
}
.page_ttl p span:nth-child(3) {
  background-color: #DD606D;
}
#nursery_list {
  width: 95%;
  max-width: 1500px;
  margin: 0 auto 80px;
}
#nursery_list li {
  padding: 220px 0 0;
  margin: -220px 0 60px;
}

@media screen and (max-width:1000px) {
#nursery_list li {
  padding: 80px 0 0;
  margin: -80px 0 60px;
}	
}

#nursery_list h3 {
  font-size: 20px;
  line-height: 1;
  padding: 20px 20px 20px 35px;
  background-color: #FFE3E6;
  border-radius: 10px;
  color: #E67780;
  margin: 25px 0 30px;
  position: relative;
}
@media screen and (max-width:768px) {
  #nursery_list h3 {
    padding: 15px 15px 15px 35px;
    border-radius: 5px;
  }
}
#nursery_list h3::after {
  content: "";
  position: absolute;
  background-color: #E67780;
  top: 10px;
  left: 15px;
  bottom: 10px;
  width: 5px;
  border-radius: 5px;
}
#nursery_list li h4 {
  color: #8F8F8F;
  font-size: 18px;
  padding: 220px 0 0;
  margin: -220px 0 10px;
}

@media screen and (max-width:1000px) {
#nursery_list li h4 {
  padding: 80px 0 0;
  margin: -80px 0 10px;
}	
}

.nursery_ttl {
  display: flex;
  background-color: #EBEBEB;
  border: 1px solid #CBCBCB;
}
.nursery_ttl p {
  padding: 15px;
  box-sizing: border-box;
  border-right: 1px solid #CBCBCB;
  color: #8F8F8F;
  font-size: 14px;
  text-align: center;
  width: 30%;
  line-height: 1;
}
.nursery_ttl p:first-child {
  width: 10%;
  min-width: 120px;
}
@media screen and (max-width:768px) {
  .nursery_ttl p:first-child {
    min-width: 100px;
  }
}
.nursery_ttl p:last-child {
  border-right: 0px;
}
.dl_wrap {
  margin: 0 0 50px;
}
@media screen and (max-width:768px) {
  .dl_wrap {
    overflow-x: scroll;
    max-width: 100%; /* 必要に応じて調整 */
    padding: 0 0 8px;
  }
  /* スクロールバーのカスタマイズ */
  .dl_wrap::-webkit-scrollbar {
    width: 10px; /* スクロールバーの幅 */
    height: 10px; /* 横スクロールの高さ */
  }
  .dl_wrap::-webkit-scrollbar-thumb {
    background-color: #FFC6C6; /* スクロールバーの色 */
    border-radius: 5px; /* 丸みをつける */
  }
  .dl_wrap::-webkit-scrollbar-track {
    background-color: #FFDFDF; /* トラック（スクロールバーの背景）の色 */
    border-radius: 5px; /* 丸みをつける */
  }
  .dl_wrap::-webkit-scrollbar-track-piece {
    border-radius: 5px; /* トラックの端を丸く */
  }
  .dl_wrap::-webkit-scrollbar-button {
    display: none; /* スクロールバーの矢印を非表示 */
  }
}
@media screen and (max-width:768px) {
  #nursery_list dl {
    width: 1100px;
  }
}
#nursery_list dl dd {
  display: flex;
  background-color: #FFF;
  border-left: 1px solid #CBCBCB;
  border-bottom: 1px solid #CBCBCB;
  border-right: 1px solid #CBCBCB;
  box-sizing: border-box;
}
#nursery_list dl dd .syubetsu {
  width: 10%;
  min-width: 120px;
}
@media screen and (max-width:768px) {
  #nursery_list dl dd .syubetsu {
    min-width: 100px;
  }
}
#nursery_list dl dd > div {
  width: 30%;
  padding: 15px;
  border-right: 1px solid #CBCBCB;
  box-sizing: border-box;
  color: #8F8F8F;
}
#nursery_list dl dd > div:last-child {
  border-right: 0px solid #CBCBCB;
}
.syubetsu p {
  padding: 8px 10px 5px;
  text-align: center;
  color: #FFF;
  width: 100%;
  border-radius: 5px;
  margin: 0 0 6px;
	
}
@media screen and (max-width:768px) {
  .syubetsu p {
    padding: 4px 10px;
    font-size: 14px;
  }
}
.syubetsu_ninsyo {
  background-color: #61BDBD;
}
.syubetsu_yoho {
  background-color: #C9673C;
}
.syubetsu_ninka {
  background-color: #FBA93D;
}
.syubetsu_koumin {
  background-color: #C81495;
}
.syubetsu_ichiji {
  background-color: #399940;
}
.syubetsu_hiroba {
  background-color: #9FC537;
}
.syubetsu_syonin {
  background-color: #0D66B2;
}
.syubetsu_innai {
  background-color: #2CB0EB;
}
.enmei h5 {
  margin: 0 0 15px;
}
.enmei a {
  display: block;
  padding: 5px 15px 3px;
  background-color: #E67780;
  color: #FFF;
  border-radius: 15px;
  max-width: 150px;
  text-align: center;
  font-size: 14px;
}
.jyusyo p {
  margin: 0 0 15px;
}
.jyusyo a {
  display: block;
  padding: 5px 15px 3px;
  background-color: #86BC42;
  color: #FFF;
  border-radius: 15px;
  max-width: 150px;
  text-align: center;
  font-size: 14px;
}

#nav_box {
	position: relative;
	height: 85px;
}

@media screen and (max-width:768px) {
#nav_box {
	height: auto;
}	
}

.nav {
  width: 95%;
  max-width: 1500px;
   margin: 0 auto 20px;
  background-color: #E67780;
  border-radius: 5px;
	position: absolute;
    top: 0;
	z-index: 3;
    left: 0;
	right: 0;
}




@media screen and (min-width:1001px) {
.fixed .nav {
    position: fixed;
    top: 130px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	}
}

@media screen and (max-width:768px) {
.nav {
	position: relative;
    top: 0;
	z-index: 3;
    left: 0;
	right: 0;
}	
}


.nav ul {
  display: flex;
  padding: 20px;
 
}

@media screen and (max-width:768px) {
.nav ul {
  padding: 15px;
  justify-content: center;
}	
}

@media screen and (max-width:500px) {
.nav ul {
  display: block;
}	
}

.nav ul li {
  width: 200px;
  margin: 0 25px 0 0;
}
@media screen and (max-width:768px) {
.nav ul li {
  width: auto;
  margin: 0 4px;
}	
}

@media screen and (max-width:500px) {
.nav ul li {
  margin: 0 4px 15px;
}	
	
.nav ul li:last-child {
  margin: 0 4px;
}
	
}



.nav ul li a {
  display: inline-block;
  width: 100%;
  background-color: #FFFFFF;
  border-radius: 25px;
  padding: 11px 50px 10px 20px;
  color: #818181;
  position: relative;
}

@media screen and (max-width:768px) {
.nav ul li a {
  padding: 10px 40px 7px 15px;
  font-size: 15px;
}	
}


.nav ul li a::after {
  content: "";
  position: absolute;
  z-index: 2;
  height: 30px;
  width: 30px;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  background-image: url("../images/nursery/plus.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

@media screen and (max-width:768px) {
.nav ul li a::after {
  height: 20px;
  width: 20px;
}	
}

.modal-overlay {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.modal {
  position: fixed;
  z-index: 1001;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 20px;
  border-radius: 8px;
  width: 90%;
  max-width: 1200px;
  opacity: 0;
  transition: opacity 0.3s ease;
  box-shadow: 0px 3px 15px -5px #a8a8a8;
  max-height: 85vh;
  overflow-y: auto;
}

@media screen and (max-width:600px) {
.modal {
  padding: 12px;
  width: 95%;
}	
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}
.modal-overlay.active .modal {
  opacity: 1;
}
.close-btn {
  display: block;
  margin: 0 0 0 auto;
  position: relative;
  width: 30px;
  height: 30px;
  cursor: pointer;
}
.close-btn span {
  width: 100%;
  height: 5px;
  top: 10px;
  left: 0px;
  background-color: #E67780;
  position: absolute;
  transform: rotate(45deg);
  border-radius: 5px;
}
.close-btn span:nth-child(2) {
  transform: rotate(-45deg);
}
.thumbnail .slick-track {
  transform: unset !important;
}
.thumbnail {
  margin: 15px 0 20px;
}
.thumbnail li {
  width: 10% !important;
  margin: 0 1.2%;
  text-align: center;
  color: #FFF;
  padding: 6px 10px;
  border-radius: 10px;
}
@media screen and (max-width:768px) {
  .thumbnail li {
    width: 22% !important;
    margin: 0 1.5% 15px;
  }
}
.slider {
  padding: 30px 5px;
  background-color: #F6F6F6;
  border-radius: 10px;
}
.syubetsu_item {
  margin: 0 20px;
  background-color: #FFF;
  padding: 25px;
}
@media screen and (max-width:768px) {
  .syubetsu_item {
    margin: 0 5px;
    padding: 10px;
  }
}
.syubetsu_item .syubetu_cate {
  padding: 6px 10px;
  line-height: 1;
  width: 100px;
  border-radius: 6px;
  color: #FFF;
  text-align: center;
  min-height: 0;
}
.syubetsu_item h4 {
  font-size: 28px;
  color: #8F8F8F;
  padding: 50px 0;
}
@media screen and (max-width:768px) {
  .syubetsu_item h4 {
    font-size: 22px;
    padding: 30px 0;
  }
}
.syubetsu_item p {
  min-height: 150px;
  color: #8F8F8F;
}
@media screen and (max-width:768px) {
  .syubetsu_item p {
    font-size: 15px;
  }
}

.modal h3 {
    text-align: center;
    color: #E67780;
    font-size: 28px;
    padding: 15px 0 0;
    margin: 0 0 30px;
}

@media screen and (max-width:768px) {
.modal h3 {
    font-size: 22px;
}	
}


.modal h3 span {
    background: linear-gradient(transparent 50%, #FFD2D6 50%);
    padding: 0 5px 0;
}

.erea_list {
	display: block;
	position: relative;
	padding: 0 0 0 150px;
	margin: 0 0 14px;
}

@media screen and (max-width:600px) {
.erea_list {
	padding: 0 0 0 110px;
}	
}

.erea_list dt {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 140px;
}

@media screen and (max-width:600px) {
.erea_list dt {
	width: 100px;
}	
}

.erea_list dt a {
	display: inline-block;
	width: 100%;
	line-height: 1;
	padding: 10px;
	border-top: 2px solid #E67780;
	background-color: #FFE3E6;
	height: 100%;
	color: #E67780;
	position: relative;
}

@media screen and (max-width:600px) {
.erea_list dt a {
	font-size: 14px;
	}
}

.erea_list dt a::after {
  content: "";
  position: absolute;
  top: 12px;
  right: 8px;
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 9px solid #E67780;
  border-radius: 4px; /* 角を丸くする */
}


.erea_list ul {
	display: flex;
	flex-wrap: wrap;
	padding: 0 5px;
}

	@media screen and (max-width:600px) {
		.erea_list ul {
	padding: 0;
}
	}
	
.erea_list ul li {
	width: 125px;
	margin: 0  15px 10px 0;
	
}

@media screen and (max-width:600px) {
.erea_list ul li {
	width: 48%;
	margin: 0 4% 15px 0;
}

.erea_list ul li:nth-child(2n) {
	margin: 0 0 15px 0;
}	

}

.erea_list ul li a {
	display: inline-block;
	width: 100%;
	padding: 10px 15px 10px 10px;
	line-height: 1;
	color: #8F8F8F;
	border-radius: 5px;
	position: relative;
	box-shadow: 0px 2px 10px -3px #a8a8a8;
}

@media screen and (max-width:600px) {
.erea_list ul li a {
	font-size: 14px;
}	
}

@media screen and (max-width:400px) {
.erea_list ul li a {
	font-size: 13px;
}	
}

.erea_list ul li a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 9px solid #6a6a6a;
  border-radius: 4px; /* 角を丸くする */
}

#map {
    width: 100%;
    height: 400px;
    margin: 0 auto;
}


.map-window a {
	color: #E67780 !important;
}

/*===========================*/
/*    幼稚園詳細ページ     */

#yochien_img_box {
	max-width: 1100px;
	margin: 0 auto 60px;
	width: 90%;
	padding: 0 250px 0 0;
	position: relative;
}

@media screen and (max-width:1000px) {
#yochien_img_box {
	padding: 0;
	max-width: 700px;
	margin: 0 auto 30px;
}	
}

@media screen and (max-width:600px) {
#yochien_img_box {
	margin: 0 auto 20px;
}	
}

.yochien-slider {
	width: 100%;
}

@media screen and (max-width:1000px) {
.yochien-slider {
	margin: 0 0 10px;
}	
}

.yochien-slider img {
	width: 100%;
}

.yochien-thumbnail_box {
	position: absolute;
	top: 0;
	right: 0;
	width: 230px;
}

@media screen and (max-width:1000px) {
.yochien-thumbnail_box {
	position: relative;
	top: auto;
	right: auto;
	width: 100%;
}	
}
	

.yochien-thumbnail .slick-track {
  transform: unset !important;
}

.yochien-thumbnail_item.slick-current {
    border: 4px solid #E67780 !important;
}

.yochien-thumbnail_item {
	border: 4px solid #FFF !important;
	box-sizing: border-box;
	margin: 0 0 15px;
	border-radius: 5px;
}

@media screen and (max-width:1000px) {
	.slick-track {
		margin: 0 !important;
	}	
}

#blog_banner {
	max-width: 370px;
	width: 20%;
	position: fixed;
	right: 30px;
	bottom: 30px;
	z-index: 5;
}

@media screen and (max-width:1000px) {
#blog_banner {
	max-width: 370px;
	width: 85%;
	position: relative;
	right: auto;
	bottom: auto;
	margin: 0 auto 20px;
}	
}

#yochien_container h3 {
    text-align: center;
    color: #E67780;
    font-size: 32px;
    padding: 15px 0 0;
    margin: 0 0 5px;
}

@media screen and (max-width:600px) {
#yochien_container h3 {
    font-size: 22px;

}	
}


#yochien_container h3 span {
    background: linear-gradient(transparent 50%, #FDE4E4 50%);
    padding: 0 10px 0;
}

#yochien_container {
	padding: 80px 0 40px;
	background-color: #FDE4E4;
	margin: 200px 0 0;
	position: relative;
}

@media screen and (max-width:1000px) {
#yochien_container {
	margin: 120px 0 0;
}	
}

#yochien_container::after {
	content: "";
	position: absolute;
	width: 350px;
	height: 280px;
	top: -220px;
	right: 15%;
	background-image: url("../images/nursery/kodomo.png");
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
}

@media screen and (max-width:1000px) {
#yochien_container::after {
	width: 250px;
	height: 200px;
	top: -140px;
	right: 5%;
}	
}

@media screen and (max-width:600px) {
#yochien_container::after {
	width: 200px;
	height: 150px;
	top: -100px;
}	
}

#yochien_tokucho {
	width: 95%;
	max-width: 1100px;
	margin: 0 auto 60px;
	border-radius: 30px;
	background-color: #FFF;
	padding: 25px 50px 20px;
	
}

@media screen and (max-width:600px) {
#yochien_tokucho {
	border-radius: 20px;
	padding: 20px 25px 20px;
	
}	
}

#yochien_tokucho dl {
	padding: 15px 0 0;
}

#yochien_tokucho p {
	color: #8F8F8F;
	text-align: center;
}

#yochien_tokucho dd p {
	text-align: left;
	margin: 0 0 15px;
}

#yochien_tokucho dd p a {
	text-decoration: underline;
}

#yochien_tokucho dd p span {
	text-align: left;
	color: #E67780;
}

.tokucho_item {
	padding: 30px 0 30px 180px;
	background-image: radial-gradient(circle, #e67780 1.5px, transparent 1.5px);
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 12px 3px;
	position: relative;
}

@media screen and (max-width:600px) {
.tokucho_item {
	padding: 30px 0 30px;
}	
}

.tokucho_item:last-child {
	background: none;
}

.tokucho_item dt {
	font-size: 16px;
	color: #C18E2A;
	position: absolute;
	top: 28px;
	left: 0;
	font-weight: normal;
}

@media screen and (max-width:600px) {
.tokucho_item dt {
	position: relative;
	top: auto;
	left: auto;
	margin: 0 0 15px;
}	
}

.tokucho_item dd {
	color: #8F8F8F;
}

#yochien_acsess {
	width: 95%;
	max-width: 1100px;
	margin: 0 auto 60px;
	border-radius: 30px;
	background-color: #FFF;
	padding: 25px 50px 20px;
	
}

@media screen and (max-width:600px) {
#yochien_acsess {
	border-radius: 20px;
	padding: 20px 20px 20px;
	
}	
}

#yochien_container #yochien_acsess  h3 {
	margin: 0 0 30px;
}

#yochien_acsess p {
	color: #8F8F8F;
	margin: 0 0 25px;
}

#google_map {
	width: 100%;
	height: 400px;
	margin: 0 0 30px;
	overflow: hidden;
}

#google_map iframe {
  width: 100%;
  height: 760px;
  margin-top: -170px;
}



#yochien_acsess h4 {
	color: #E67780;
	text-align: center;
	font-weight: normal;
	font-size: 22px;
	margin: 0 0 20px;
}

#yochien_link {
	width: 95%;
    max-width: 1100px;
    margin: 0 auto 60px;
    border-radius: 30px;
    background-color: #E67780;
    padding: 40px 20px;
}

#yochien_link ul {
	display: flex;
	justify-content: center;
}

@media screen and (max-width:768px) {
#yochien_link ul {
	display: block;
}	
}

#yochien_link ul li {
	width: 26%;
	margin: 0 1%;
}

@media screen and (max-width:768px) {
#yochien_link ul li {
	width: 100%;
	margin: 0 0 20px;
}	
}

@media screen and (max-width:768px) {
#yochien_link ul li:last-child {
	margin: 0;
}	
}

#yochien_link ul li a {
	display: inline-block;
	width: 100%;
	padding: 12px;
	box-sizing: border-box;
	background-color: #FFF;
	color: #E67780;
	text-align: center;
	border-radius: 20px;
}

.haru {
	position: relative;
	padding: 0 0 0 45px;
}

.haru::after {
	content: "春：";
	position: absolute;
	top: 0;
	left: 0;
}

.natsu {
	position: relative;
	padding: 0 0 0 45px;
}

.natsu::after {
	content: "夏：";
	position: absolute;
	top: 0;
	left: 0;
}

.aki {
	position: relative;
	padding: 0 0 0 45px;
}

.aki::after {
	content: "秋：";
	position: absolute;
	top: 0;
	left: 0;
}

.fuyu {
	position: relative;
	padding: 0 0 0 45px;
}

.fuyu::after {
	content: "冬：";
	position: absolute;
	top: 0;
	left: 0;
}

.after_tsuki {
	position: relative;
	padding: 0 0 0 35px;
}

.after_1::after {
	content: "①";
	position: absolute;
	top: 0;
	left: 0;
}

.after_2::after {
	content: "②";
	position: absolute;
	top: 0;
	left: 0;
}

.after_3::after {
	content: "③";
	position: absolute;
	top: 0;
	left: 0;
}

.after_4::after {
	content: "④";
	position: absolute;
	top: 0;
	left: 0;
}

.after_5::after {
	content: "⑤";
	position: absolute;
	top: 0;
	left: 0;
}

.after_6::after {
	content: "⑥";
	position: absolute;
	top: 0;
	left: 0;
}


.nenkan_care {
	position: relative;
	padding: 0 0 0 60px;
}

#yochien_tokucho dd .nenkan_care span {
	position: absolute;
	top: 0;
	left: 0;
	color: #8F8F8F;
}

.sitasannkaku {
	padding: 0 0 25px;
	position: relative;
}

.sitasannkaku::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
	width: 0;
	height: 0;
	border-top: 15px solid #777;
border-right: 20px solid transparent;
border-left: 20px solid transparent;
	border-radius: 5px;
	
}

#shisetsu_img {
	width: 95%;
	max-width: 1100px;
	margin: 0 auto 60px;
	border-radius: 30px;
	background-color: #FFF;
	padding: 25px 50px 20px;
	
}

@media screen and (max-width:600px) {
#shisetsu_img {
	border-radius: 20px;
	padding: 20px 20px 20px;
	
}	
}

#yochien_container #shisetsu_img  h3 {
	margin: 0 0 30px;
}

#shisetsu_img p {
	color: #8F8F8F;
	margin: 0 0 25px;
}



#shisetsu_img figure {
	max-width: 670px;
	width: 100%;
	margin: 0 auto 10px;
}


.blokataku {
	display: block;
	text-align: center;
	padding: 20px 0 10px;
	color: #E67780;
}