@charset "utf-8";
/* CSS Document */

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

Theme Name: altanursery 
Theme URI： https://www.altababy.jp/
Author: Uemura
Version: 1.0
Description: 2022/7/20
License: Uemura

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


*{
	margin:0;
	padding:0;
	font-family:"游ゴシック体", "YuGothic", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", sans-serif;
}
/** Tags
------------------------------ **/
html{
	font-size: 62.5%;
	overflow-x: hidden;
}

body {
	font-size: 1.6rem;
	line-height: 1.8;
	color: #333;
	background:-webkit-gradient(linear, left top, left bottom, from(#FAF4F6), to(#E1F1F8));
    background:-webkit-linear-gradient(top, #FAF4F6, #E1F1F8);
    background:-moz-linear-gradient(top, #FAF4F6, #E1F1F8);
    background:-o-linear-gradient(top, #FAF4F6, #E1F1F8);
    background:linear-gradient(#FAF4F6, #E1F1F8);
	overflow-wrap: break-word;/* CSS3 */
	-webkit-text-size-adjust: 100%;
	overflow-x: hidden;
	text-align: center;
}

.content {
	margin: 0 auto;
	padding: 0 5%;
}

h2,.h1-under {
	font-size: 2.8rem;
	text-align: center;
	font-family :'Noto Serif JP',YuMincho, 'Yu Mincho', serif;
	font-weight: 300;
    padding-right: 20px;
}

h2::before,.h1-under::before {
	content: url(img/bubble_title.png);
	margin-right: -20px;
    padding-left: 5px;
}

h3 {
	text-align: center;
	margin-bottom: 20px;
}

li {
	list-style: none;
}
a {
	text-decoration: none;
	color: inherit;
}

a:hover {
	opacity: 0.7;
	transition: 0.3s;
}

/** Classes
------------------------------ **/
.wrap {
    min-height: 100vh;
}

.content {
	position: relative;
	padding-top: 100px;
	margin: auto;
}

.content-under {
	position: relative;
	margin: auto;
	padding-top: 40px;
	padding-left: 3%;
    padding-right: 3%;
	min-height: 400px;
}

.wrap-content {
	margin: auto;
	max-width: 1080px;
	padding-left: 3%;
	padding-right: 3%;
}

.text-title {
	text-align: center;
	margin: 20px 2% 40px 2%;
}

.btn {
	width: 297px;
	display: block;
    margin: 60px auto 0 auto;
}

.text-left {
	text-align: left;
}

.btn-totop{
	position: fixed;
    bottom: 5%;
    right: 5%;
}

.h1-under {
	padding-top: 100px;
}

.serif {
	font-family :'Noto Serif JP',YuMincho, 'Yu Mincho', serif;
	font-weight: 400;
}

.last-section {
	margin-bottom: 120px;
}

.bg-bubble {
	background: url(img/bubble.png) no-repeat left -10% top 0px/20% auto,url(img/bubble.png) no-repeat right -11% bottom 30px/20% auto;
}

.img-radius {
	border-radius: 30px;
}

.font14 {
	font-size: 1.4rem;
}

/** ヘッダー
------------------------------ **/


.header {
	position: fixed; 
	width: 100%;
	height: 60px;
	z-index: 8888;
}

.header .logo {
	background-color: #fff;
    padding: 3% 1% 1% 1%;
    margin-top: 38px;
    border-radius: 0 0 30px 0;
}

.header img {
	width: 100px;
}

.hd-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 100%;
	padding: 0 2% 0 0;
}
.hd-right {
	display: flex;
	align-items: center;
}

/* ナビゲーション
-----------------------------------------------------------*/
/*==ナビゲーション全体の設定*/
nav{
	color:#fff;
	text-align: center;
}

nav ul{
	list-style: none;
	display: flex;
	justify-content: center;
}


nav ul li {
	font-size: 1.4rem;
	position: relative;
}


/*2階層目以降は横並びにしない*/
nav ul ul{
	display: block;
}
  
nav ul li a{
	display: block;
	text-decoration: none;
	color: #333;
	padding:10px 35px;
	transition:all .3s;
}

nav ul li a.btn-saiyou{
	padding: 5px 40px 4px;
    border: 1px solid #333;
    border-radius: 20px;
	margin-top: 4px;
}

nav ul li a:hover {
	color: #F7B9CD;
	transition: 0.1s;
}

nav ul li a.btn-saiyou:hover{
	color: #F7B9CD;
	transition: 0.1s;
	border: 1px solid #F7B9CD;
	
}

  
/*==矢印の設定*/
  
/*2階層目を持つliの矢印の設定*/
nav ul li.has-child::before{
	content:'';
	position: absolute;
	right:15px;
	top:16px;
	width:6px;
	height:6px;
	border-top: 2px solid #333;
	border-right:2px solid #333;
	transform: rotate(135deg);
}

  
/*== 2階層目の共通設定 */
  
/*下の階層を持っているulの指定*/
nav li.has-child ul{
	position: absolute;
	background:#F7B9CD;
	  /*はじめは非表示*/
	visibility: hidden;
	opacity: 0;
	transition: all .3s;
}

nav li.has-child ul li{
	min-width: 240px;
}

  
/*hoverしたら表示*/
  nav li.has-child:hover > ul,
  nav li.has-child ul li:hover > ul,
  nav li.has-child:active > ul,
  nav li.has-child ul li:active > ul{
	visibility: visible;
	opacity: 1;
}
  
/*ナビゲーションaタグの形状*/
nav li.has-child ul li a{
	color: #fff;
	border-bottom:solid 1px rgba(255,255,255,0.6);
}
  
nav li.has-child ul li:last-child a{
	border-bottom:none;
}
  
nav li.has-child ul li a:hover,
nav li.has-child ul li a:active{
	opacity: 0.7;
	color: #fff;
}


/*    ハンバーガーメニュー    */
header .nav-button {
	display: none;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 90;
	cursor: pointer;
    height: 80px;
    width: 80px;
}
header .nav-button span {
    position: absolute;
    content: '';
    display: block;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	-webkit-transition: .35s ease-in-out;
	transition: .35s ease-in-out;
    width: 23px;
	height: 2px;
    border-radius: 0px;
    background-color: #000;
}
header .nav-button span:nth-child(1) {
	margin-top: -7px; 
}
header .nav-button span:nth-child(3)  {
	margin-top: 7px; 
}

/*メニューオープン時は×マークにする*/
header .nav-button.active span:nth-child(2)  {
    background-color: rgba(255, 255, 255, 0);
}
header .nav-button.active span:nth-child(1)  {
	margin-top: 0;
	transform: translate(-50%, -50%) rotate(45deg);
}
header .nav-button.active span:nth-child(3)  {
	margin-top: 0;
    transform: translate(-50%, -50%) rotate(-45deg);
}
/*メニューウィンドウ */
header .drawer{
	display: none;
    position: fixed;
    width: 100%;
    top: 80px;
	left:0;
    z-index: 80;
	overflow: auto;
    background-color: #fff;
    height: calc(100vh - 80px);/* 100vh-ヘッダーの高さ */
}
header .drawer li{
	font-size: 1.6rem;
	font-weight: bold;
	padding: 16px;
	border-bottom: 1px solid #ccc;
}

/* パンくず
-----------------------------------------------------------*/

.breadcrumb {
	clear: both;
    max-width: 1040px;
    margin: 120px auto 20px;
    padding: 0 20px;
    box-sizing: border-box;
    color: #666;
    font-size: 87.5%;
    text-align: right;
}

.breadcrumb li {
	display: inline-block;
	padding: 0 8px 0 0;
}


/* ページネーション/ページャー
-----------------------------------------------------------*/

.pagination {
	clear: both;
	position: relative;
	font-size: 87.5%;
	line-height: 1.2;
	margin-top: 40px;
}

.pagination span,
.pagination a {
	width: auto;
	margin-right: 5px;
	padding: 6px 8px 5px 8px;
	border-radius: 4px;
}

.pagination a {
	display: inline-block;
	border: 1px solid #F7B9CD;
	color: #F7B9CD;
	text-decoration: none;
	border-radius: 50%;
    width: 10px;
}

.pagination a:hover {
	background-color: #fff;
	transition: 0.3s;
}

.pagination span {
	display: none;
}

.pagination .current {
	display: inline-block;
	border: 1px solid #F7B9CD;
    background: #F7B9CD;
    color: #fff;
    border-radius: 50%;
    width: 10px;
}


/** メインビジュアル
------------------------------ **/
.content-mv {
	padding: 60px 0 0 0;
	background:url(img/bubble.png) no-repeat left -3% top 10px/15% auto,url(img/bubble.png) no-repeat right -6% bottom 250px/18% auto;
}

.content-mv h1{
	background: url(img/mv-pc.png) no-repeat right 0px bottom 0px/20% auto;
    min-height: 600px;
    background-size: contain;
    max-width: 1300px;
    margin: auto;
}

.content-mv h1 img{
	display: block;
	position: absolute;
	bottom: 10%;
}

.content-mv::after {
	/* ドットの飾りライン */
	position: absolute;
	content: "";
	display: block;
	bottom: -17px;
	width: 100%;
	height: 35px;
	background: url(img/bubble_line.png) repeat-x ;
}

/** メインメッセージ
------------------------------ **/
.content-mainMessage {
	background: url(img/bubble.png) no-repeat left -10% top 0px/20% auto,url(img/bubble.png) no-repeat right -11% bottom 30px/20% auto;
}

.content-mainMessage .wrap-content{
	background: url(img/top_l.png) no-repeat left 0% top 30px/35% auto,url(img/top_r.png) no-repeat right 0% bottom 0px/35% auto;
}

.content-mainMessage p {
	text-align: center;
	line-height: 2;
	font-size: 1.8rem;
	padding-bottom: 40px;
}

.content-mainMessage h3 {
	padding-top: 100px;
}

/** アルタについて
------------------------------ **/

.content-about .wrap-content{
	background-color: #fff;
	padding: 5%;
	margin: 0 auto;
	border-radius: 30px;
}
.wrap-btn {
	display: flex;
}

.wrap-btn p img {
	width: 90%;
	justify-content: space-between;
}

.btn-faq {
	margin: 40px auto 0 auto;
	text-align: center;
}

.btn-faq img {
	width: 60%;
	margin: auto;
}

/** ギャラリー
------------------------------ **/
.content-gallery {
	padding-left: 0;
	padding-right: 0; 
}

.slide-gallery {
	margin-top:57px;
	
}
.slide-gallery .gallery-item{
	padding-top:20px;
	margin: 0 10px;
}

.gallery-item img {
	width: 320px;
}

.slide-gallery .slick-current{
	margin-top:-20px;
	transition: 0.3s;
}
.slick-dots{
	bottom:-40px;
}
.slide-gallery .slick-dots li button::before {
	color: #fff;
	font-size: 13px;
    opacity: 1;
}
.slide-gallery .slick-dots li.slick-active button:before{
	opacity: 1;
	color: #F7B9CD;
}

/** 保育園一覧
------------------------------ **/
.content-all {
	padding-top: 120px;
	padding-bottom: 120px;
	background: url(img/bubble.png) no-repeat left -10% top 0px/20% auto,url(img/bubble.png) no-repeat right -11% bottom 30px/20% auto;
}

/** お知らせ
------------------------------ **/

.news_list {
  margin: 0 5%;
  max-width: 800px;
  margin: auto;
}

.news_list_item {
  padding: 25px 0;
  border-bottom: 1px solid #E6E6E6;
}

.news_list_item a {
 position: relative;
}

.news_item_text {
	text-align: left;
}

.news_list_date {
  font-size: 1.5rem;
  display: flex;
  margin-right: 15px;
  align-items: center;
}

.news_item {
    background: #F7B9CD;
    border-radius: 14px;
    font-size: 1.2rem;
    color: #fff;
    width: 6em;
    text-align: center;
    margin-left: 20px;
}


/** 採用情報
------------------------------ **/

.content-reqruit::before {
	/* ドットの飾りライン */
	position: absolute;
	content: "";
	display: block;
	top: -17px;
	width: 100%;
	height: 35px;
	background: url(img/bubble_line.png) repeat-x ;
}

.content-reqruit {
	background-color: #fff;
	padding: 40px 0;
}

.content-reqruit img{
	position: relative;
    left: 0;
    display: block;
	max-width: 500px;
}

.wrap-reqruit {
	display: flex;
	align-items: center;
}
.text-reqruit {
	display: inline-block;
	margin: auto;
	padding: 4%;
}

.text-reqruit p{
	margin: 30px auto;
	text-align: left;
}

/** 保護者、従業員の皆様へ
------------------------------ **/

.content-toCE {
	display: flex;
	padding: 5%;
	justify-content: center;
	margin: auto;
	text-align: center;
}

.content-toCE h2 {
	margin-top: -25%;
}

.wrap-toC {
	padding: 4% 8% 6% 8%;
	display: inline-block;
	justify-content: space-between;
	background-color: #F7DEE6;
	margin: 2%;
	border-radius: 30px;
}

.wrap-toC img {
	margin-top:50px;
}

.wrap-toE {
	padding: 4% 8% 6% 8%;
	display: inline-block;
	justify-content: space-between;
	background-color: #C9E8F7;
	margin: 2%;
	border-radius: 30px;
}

.wrap-toE img {
	margin-top:100px;
}

.wrap-toCE p{
	margin-top: 20px;
}

.btn-toCE {
	background-color: #fff;
	border-radius: 50px;
	padding: 1% 4%;
}


/** ALTAの保育NOW、BLOG
------------------------------ **/
 .content-yb {
	display: flex;
	padding: 4%;
	justify-content: center;
	margin: 60px auto 40px auto;
	text-align: center;
}

.content-yb p {
	margin-top: 20px;
	max-width: 340px;
	min-height: 120px;
}

.content-yb a.btn {
	display: block;
	margin-top: 0;
}

.wrap-yb {
	padding: 3%;
	display: inline-block;
	justify-content: space-between;
	background-color: #fff;
	margin: 2%;
	border-radius: 30px;
	position: relative;
}

.copy-yb {
	display: block;
    position: relative;
    top: -50px;
    left: -60px;
    margin-bottom: -20px;
}

.img-yb {
	width: 289px;
}

.btn-yb {
	width: 297px;
	display: block;
    margin:20px auto;
}

.title-youtube::before {
	content: url(img/video.png);
	margin-right: 10px;
	margin-left: -3px;
}

.title-blog::before {
	content: url(img/pen.png);
	margin-right: 10px;
	margin-left: -40px;
}




/** お問い合わせ
------------------------------ **/
.content-contact {
	background: url(img/bg_contact.jpg) no-repeat;
	background-size: cover;
	padding: 4%;
	color: #fff;
	margin-top: 0px;
}


/** フッター
------------------------------ **/
.footer {
	background-color: #fff;
	padding: 0 1%;
}

.footer .logo {
	width: 100px;
	padding-top: 40px;
}

.footer ul {
	display: flex;
	margin: 0 auto ;
	max-width: 600px;
}
.footer ul li {
	padding: 0 30px;
	font-size: 1.4rem;
	margin: auto;
}

.footer .sns {
	display: flex;
	align-items: center;
	width: 100px;
	margin:10px auto 40px auto;
}

.footer .sns a{
	margin: auto;
	padding: 1%;
}

.copyright{
	padding: 40px 0 20px 0;
}

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

下層ページ 

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

.wrap-section-under h4::before {
	content: url(img/bubble_s.png);
	position:relative;
	top: 5px;
    padding-right: 10px;
	margin-left: -19px;
}


/** アルタについて(/about)
------------------------------ **/
.wrap-section-under .img-about{
	text-align: center;
	margin-top: 40px;
	margin-bottom: 40px;
}

.wrap-section-under .text-about{
	text-align: center;
	font-size: 2rem;
	text-align: center;
}

.content-mission p {
	line-height: 2;
	font-size: 1.8rem;
	font-family :'Noto Serif JP',YuMincho, 'Yu Mincho', serif;
}

.content-visionvalue .text-title {
	text-align: left;
	font-size: 1.8rem;
	font-weight: 600;
}

.content-visionvalue .text-content {
	text-align: left;
}


.content-visionvalue .vision-value01 .text-title::before {
	content: url(img/ab-01.png);
	position:relative;
    top:13px;
}

.content-visionvalue .vision-value02 .text-title::before {
	content: url(img/ab-02.png);
	position:relative;
    top:13px;
}

.content-visionvalue .vision-value03 .text-title::before {
	content: url(img/ab-03.png);
	position:relative;
    top:13px;
}


.content-visionvalue .btn {
	margin-top: 40px;
}

.vision-value01,.vision-value02,.vision-value03 {
	display: flex;
	margin-bottom: 40px;
	align-items: center;
}

.vision-value01 img,.vision-value02 img,.vision-value03 img {
	display: flex;
	max-width: 400px;
	margin: auto;
}


.content-visionvalue  .wrap-text {
	display: inline-block;
	margin: auto;
	padding: 4%;
}

.content-faq-about {
	padding-top: 60px;
}

.wrap-section-under .wrap-yb h2 {
	margin-top: -100px;
}

.wrap-section-under .content-gallery {
 width: 100%!important;
}

.content-message p{
	font-size: 1.8rem;
	line-height: 2;
	font-family :'Noto Serif JP',YuMincho, 'Yu Mincho', serif;
}

.content-company .wrap-content{
	max-width: 880px;
	background-color: #fff;
	padding: 5%;
	margin: 0 auto 100px auto;
	border-radius: 30px;
}

.content-company table {
	text-align: left;
	margin: auto;
}

.content-company table tr {
	border-bottom : 1px #D0D0D0 solid;
	padding-top:20px;
	padding-bottom: 20px;
	display: flex;
    align-items: center;
}

.content-company table tr:last-child {
	border: none;
}

.content-company table th::before {
	content: url(img/bubble_s.png);
	position:relative;
	top: 5px;
    padding-right: 10px;
}

.content-company table th {
	padding-right: 40px;
	width: 120px;
	display: block;
}

.content-company table td {
	display: block;
}

/** 保育理念/目標(/goal)
------------------------------ **/
.content-philosophy .h2-goal,.content-target .h2-goal {
	font-size: 2rem;
	background-color: #F7B9CD;
	color: #fff;
	border-radius: 10px;
	max-width: 360px;
	padding: 1% 0;
	margin: auto;
	margin-bottom: -20px;
	position: relative;
}

.content-philosophy .h2-goal::before ,.content-target .h2-goal::before {
	display: none;
}

.text-goal {
	padding: 6% 6% 4% 6%;
	background-color: #fff;
	border-radius: 10px;
	text-align: left;
}

.content-philosophy .wrap-text,.content-target  .wrap-text {
	display: inline-block;
	margin: auto;
	padding: 4%;
	text-align: left;
}

.content-philosophy .vision-value01 {
	margin-top: 20px;
}

.content-target img {
	width: 555px;
	margin-top: 20px;
}

/** 保育の流れ/年間行事(/schedule)
------------------------------ **/
.content-schedule table {
	text-align: left;
	margin: auto;
}

.content-schedule table tr {
	padding-top:20px;
	padding-bottom: 20px;
	display: flex;
    align-items: center;
}

.content-schedule  table tr:last-child {
	border: none;
}

.content-schedule  table th::before {
	content: url(img/bubble_s.png);
	position:relative;
	top: 5px;
    padding-right: 10px;
}

.content-schedule  table th {
	padding-right: 20px;
    min-width: 200px;
	display: block;
}

.content-schedule  table td {
	display: block;
}

.content-schedule table span {
	background-color: #fff;
    padding: 3% 6%;
    margin-left: 20px;
    border-radius: 5px;
    color: #77D3FC;
}

.content-event table  {
	margin: auto;
}	

.content-event table tr {
	padding-top:20px;
	padding-bottom: 20px;
	display: flex;
    align-items: center;
}

.content-event  table tr:last-child {
	border: none;
}

.content-event  table th::before {
	content: url(img/bubble_s.png);
	position:relative;
	top: 5px;
    padding-right: 10px;
}

.content-event  table th {
	padding-right: 20px;
	display: block;
	width: 90px;
}

.content-event  table td {
	display: block;
	width: 200px;
	text-align: left;
}

.content-event .th-r {
	padding-left: 80px;
}

.sikumi {
	background-color: #fff;
	border-radius: 30px;
}

.sikumi img{
	margin: auto;
	max-width: 60%;
	padding: 4%;
}

.sikumi img{
	width: 554px;
}

.content-system.content {
	padding-top: 0px;
} 

.content-system .text-title {
	text-align: left;
	font-weight: 600;
}

.content-system .text-content {
	text-align: left;
}

.content-system img {
	max-width: 246px;
}
.content-system .vision-value01,.content-system .vision-value02,.content-system .vision-value03 {
	align-items: start;
	margin-top: 40px;
}

.content-system .vision-value01 .t-box1 {
	font-size: 1.8rem;
	font-weight: bold;
	margin-right: 40px;
}

.content-system .vision-value02 .t-box1 {
	font-size: 1.8rem;
	font-weight: bold;
	margin-right: 40px;
}

.content-system .vision-value03 .t-box1 {
	font-size: 1.8rem;
	font-weight: bold;
	margin-right: 40px;
}


.content-system .vision-value01 .t-box1::before {
	content: url(img/ab-01.png);
	position:relative;
    top:13px;
	padding-right: 10px;
}

.content-system .vision-value02 .t-box1::before {
	content: url(img/ab-02.png);
	position:relative;
    top:13px;
	padding-right: 10px;
}

.content-system .vision-value03 .t-box1::before {
	content: url(img/ab-03.png);
	position:relative;
    top:13px;
	padding-right: 10px;
}

.content-system .text-title {
	margin-bottom: 20px;
}

/** よくある質問(/faq)
------------------------------ **/
.wrap-faq {
	padding-bottom: 100px;
}

.content-under.content-faq {
	min-height: 200px;
	margin-bottom: 80px;
}

.content-faq .news_list_item {
	padding: 45px 0 25px;
	border-bottom: 1px solid #E6E6E6;
}

.content-faq .faq-q {
	font-size: 1.8rem;
	font-family:"游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
	text-align: left;
}

.content-faq .faq-q:before {
	content: url(img/faq_Q.svg);
	position:relative;
    top: 2px;
    padding-right: 30px;
}

.content-faq .faq-a {
	margin-top: 20px;
}

.content-faq .faq-a p {
	text-align: left;
}


.content-faq .faq-a p:before {
	content: url(img/faq-A.svg);
	position:relative;
    top:3px;
	padding-right: 30px;
}

.content-faq h3::before {
	content: url(img/bubble_s.png);
	position:relative;
	top: 5px;
    padding-right: 10px;
	margin-left: -19px;
}

/** ブログ(/blog)
------------------------------ **/

.content-blog {
	margin: auto;
}

.list-blog {
  margin: auto;
  display: flex;
  gap: 60px 40px;
  flex-wrap: wrap;
  max-width: 1080px;
}

.list-item-blog {
  position: relative;
  margin: auto;
  min-height: 320px;
}

.item-text-blog {
	text-align: left;
	margin-top: 10px;
	max-width: 300px;
}

.date-cate-blog {
	width: 160px;
	margin:auto;
	display: flex;
	align-items: center;
}

.item-date-blog{
  font-size: 1.4rem;
  margin-right: 15px;
}

.category-blog {
    background: #F7B9CD;
    border-radius: 14px;
    font-size: 1.2rem;
    color: #fff;
    width: 6em;
    text-align: center;
}
/** 園一覧-都道府県(/facility)
------------------------------ **/
.content-facility {
	max-width: 1080px;
}

.content-facility .wrap-ken {
	display: flex;
	gap: 60px 40px;
	justify-content: center;
	flex-wrap: wrap;
}
.content-facility.content{
	padding-top: 20px;
}

/** 園一覧-県別(/facility/saitama)
------------------------------ **/
.content.content-facility-ken {
	max-width: 880px;
	padding-top: 60px;
}

.wrap-facility {
	margin: auto;
}

.h4-title {
	margin-top: 80px;
}

.h4-title::before {
	content: url(img/bubble_s.png);
	position:relative;
	top: 5px;
    padding-right: 10px;
	display: inline-block;
}
.wrap-tag {
	display: flex;
    margin: auto;
    max-width: 170px;
}

.content-facility-ken .tag-facility{
	margin: 0px auto 20px 0px;
}

.tag-facility {
    background: #F7B9CD;
    border-radius: 14px;
    font-size: 1.2rem;
    color: #fff;
    width: 6em;
	margin: 0px auto 20px auto;
	text-align: center;
}

.tag-new {
    background: #FFA30F;
}

.content-facility-ken .text-tel{
	margin-bottom: 20px;
}

.content-facility-ken .vision-value01 .wrap-text {
	display: inline-block;
	padding: 4%;
	text-align: left;
	width: 340px;
}

.content-facility-ken .vision-value01 {
    margin-top: 0px;
	margin-bottom: 0px;
	justify-content: center;
}

.content-facility-ken .vision-value01 .wrap-text  a{
	text-align: right;
	display: block;
	font-weight: 600;
}

.content-facility-ken .text-title {
	margin-bottom: 10px;
	text-align: left;
	font-weight: 600;
}


/** 園一覧-個別(/facility/saitama/園名)
------------------------------ **/

.content-facility-single {
	max-width: 880px;
}

.content-facility-single .text-title {
	font-size: 2rem;;
    font-weight: 600;
	margin-bottom: 10px;
}

.content-single .img-facility {
	display: flex;
	margin: auto;
	flex-wrap: wrap;
	max-width: 700px;
}

.content-single .img-facility .content-gallery {
	padding-top: 0px;
	padding-bottom: 40px;
}

.content-single .img-facility img {
	margin: 20px auto;
	gap: 40px;
	max-width: 60%;
}


.content-single .tag-facility {
	margin: 0 auto 40px;
}

.content-single .h4-title {
	margin-top: 60px;
	margin-bottom: 20px;
}

.content-single .access {
	margin-bottom: 20px;
	text-align: center;
}

.content-single .wrap-tag {
	margin: -20px auto -20px auto;
}
.content-single .tag-facility {
	text-align: center;
}

.content-single table {
	margin: 40px auto;
	max-width: 880px;
}

.content-single td, th {
	padding: 25px 10px;
}

.content-single table tr {
    border-bottom: 1px #D0D0D0 solid;
    padding: 10px 10px;
    align-items: center;
}

.content-single th {
	padding-right: 20px;
	text-align: left;
	min-width: 70px;
}

.content-single table td {
	text-align: left;
}

.content-single table td a{
	color: #3366ff;
}

.content-single .access-facility p {
	text-align: center;
}

.access {
	margin: 20px;
}

.access-facility iframe {
	width: 100%;
}

.content-single .btn {
	margin-top: 80px;
}

.slide-gallery {
	margin-top:57px;
	
}
.slide-facility .gallery-item{
	margin: 0 10px;
}

.content-single .img-facility .gallery-item img {
	max-width: 90%;
	margin-bottom: 20px;
}

.slick-dots{
	bottom:-40px;
}
.slide-facility .slick-dots li button::before {
	color: #fff;
	font-size: 13px;
    opacity: 1;
}
.slide-facility .slick-dots li.slick-active button:before{
	opacity: 1;
	color: #F7B9CD;
}


/** 保護者の皆様へ(/customer)
------------------------------ **/

.text-customer{
	text-align: left;
	max-width: 800px;
	margin: 40px auto 40px auto;
    padding-left: 3%;
    padding-right: 3%;
}

.content-menu .wrap-document {
	margin: 20px auto 0px auto;
}

.content-menu .h4-title {
	margin-top: 60px;
}

.content-download {
	padding-top: 100px;
}


.wrap-document {
	display: flex;
	flex-wrap: wrap;
	max-width: 880px;
	margin: 40px auto 0px auto;
	gap: 60px 40px;
}

.content-document {
	margin: auto;
}

.wrap-document .content-document img {
	max-width: 288px;
    margin-top: 20px;
}

.wrap-document .content-document p {
	font-weight: 600;
}

/**お問い合わせ(/contact)
------------------------------ **/

.content-under-contact {
	padding-bottom: 60px;
	max-width: 800px; 
}

.content-under-contact h3::before{
	content: url(img/bubble_s.png);
	position:relative;
	top: 5px;
    padding-right: 10px;
	margin-left: -19px;
}

.wrap-attention {
	margin-top: 40px;
    padding-bottom: 40px;
}

.content-form {
	max-width: 800px; 
	margin: auto;
	padding: 3%;
}


.cform th {
	font-size: 1.4rem;
	width: 30%;
	text-align: left; 
	border-bottom: solid 1px #D0D0D0;
	padding: 10px 0 10px 15px;
	font-weight: normal;
	vertical-align: middle;
}

.cform td {
	font-size:  1.4rem;
	border-bottom: solid 1px #D0D0D0;
	padding: 20px 5px;
	text-align: left;
}

.cform td input {
	border-style: none;
	min-height: 30px;
}

.cform td textarea {
	border-style: none;
}

.cform {
	width: 100%;
	margin: auto;
	margin-top: 40px;
	padding: 3%;
}

.cform [type=submit] {
	display: inline-block;
	font-size: 2rem;
	padding: 10px 30px;
	text-decoration: none;
	background: #F7B9CD;
	color: #FFF;
	border-radius: 3px;
}

.cform option,
.cform textarea,
.cform input[type=text],
.cform input[type=email],
.cform input[type=search],
.cform input[type=url] {
	width: 100%;
}

.cform .mwform-tel-field input[type=text] {
	width: 30%;
}

.required-srt {
	font-size: 8pt;
	padding: 5px;
	background: #F7B9CD;
	color: #fff;
	border-radius: 3px;
	margin-left: 10px;
	vertical-align: middle;
}

.submit-btn input {
	background: #F7B9CD;
	border-radius: 50px;
	width: 60%;
	max-width: 550px;
	min-width: 220px;
	margin: 30px auto;
	display: block;
	text-align: center;
	padding: 15px;
	color: #fff;
	transition: all 0.4s ease;
	border-style: none;
}

.submit-btn-back input {
	background: #fff;
	border: 1px solid #F7B9CD;
	border-radius: 50px;
	width: 60%;
	max-width: 550px;
	min-width: 220px;
	margin: 30px auto;
	display: block;
	text-align: center;
	padding: 15px;
	color: #F7B9CD;
	transition: all 0.4s ease;
	border-style: none;
}


.submit-btn input:hover {
	opacity: 0.7;
}

.contact_txt {
	max-width: 800px;
	margin: 0 auto 40px;
}

.contact_txt .catch {
	margin-bottom: 20px;
	font-weight: bold;
}

input[type="submit"], input[type="button"], input[type="reset"]{
	-webkit-appearance: none;
}

/**ギャラリー(/gallery)
------------------------------ **/
.wrap-gallery {
	display: flex;
	flex-wrap: wrap;
    gap: 40px 40px;
    max-width: 1080px;
    margin: auto;
}

.wrap-gallery .gallery-item {
	margin: auto;
}

.wrap-gallery .gallery-item img {
	border-radius: 30px;
}


/**プライバシーポリシー(/privacy)
------------------------------ **/

.wrap-section-under .content-privacy {
	max-width: 880px;
	text-align: left;
	margin: auto;
	padding-left: 3%;
	padding-right: 3%;
}

.wrap-section-under .content-privacy h1 {
	margin-bottom: 40px;
	padding-top: 100px;
}

.wrap-section-under .content-privacy p {
	text-align: left;
}

/**404ページ
------------------------------ **/
.content-404 {
	max-width: 880px;
	margin: auto;
}

.content-404 .h1-under {
	padding-left: 3%;
	padding-right: 3%;
	padding-top: 40px;
}

.content-404 p{
	padding-left: 3%;
	padding-right: 3%;
	margin-top: 40px;
	text-align: left;
}

/**当社従業員の方へ
------------------------------ **/

.employee {
	padding-left: 3%;
	padding-right: 3%;
	min-height: 400px;
}

.employee p {
	padding-top: 40px;
}

.employee form p {
	padding-top: 40px;
}

.employee form label {
	padding-top: 40px;
}

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

 アーカイブ archive / blog

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


/* アーカイブ一覧表示
-----------------------------------------------------------*/

.thumb {
	position: relative;
	display: block;
}
 .thumb img {
	height: auto;
	border-radius: 30px;
}

.noimg {
	width: 300px;
}


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

 記事 single / page

------------------------------------------------------------------------------*/
.content.content-single {
	max-width: 800px;
	margin: auto;
	padding-top: 40px;
}

.content-single .text-title {
	font-size: 2rem;
	font-weight: 600;
	text-align: center;
}

.content-single img {
	border-radius: 30px;
	margin: auto;
    display: block;
	max-width: 100%;
    height: auto;
}

.content-single p {
	margin: 20px auto;
	text-align: left;
}

.content-single .category-blog {
	text-align: center;
}

.content-single .date-cate-blog {
	margin: -20px auto 20px auto;
}

.content-single h3::before {
	content: url(img/bubble_s.png);
	position:relative;
	top: 5px;
    padding-right: 10px;
	margin-left: -19px;
}

.wrap-kanren {
	display: flex;
	flex-wrap: wrap;
}

.kanren_area {
	padding-top: 60px;
}

.kanren_area .text-title {
	font-size: 1.6rem;
	max-width: 300px;
	min-height: 40px;
}

.kanren_area .date-cate-blog {
	margin-top: 20px;
}



.pages {
	overflow: hidden;
}

.wrap-contentt > p {
	margin-bottom: 1.6em;
	text-align: left;
}

.wrap-content hr {
	margin-top: 2.6em;
	margin-bottom: 2.6em;
}

.wrap-content em {
	display: inline-block;
	font-weight: bold;
}

/* PREV NEXT
-----------------------------------------------------------*/

.p-navi ,
.p-navi li {
	list-style: none;
}

.p-navi {
	margin-bottom: 40px;
	padding: 60px 0;
	font-size: .875rem;
}

.p-navi .prev {
	float: right;
	width: 50%;
	text-align: right;
}
.p-navi .prev div {
	padding: 0 15px 0 10px;
}
.p-navi .prev img {
	float: right;
	width: 100px;
	margin-left: 15px;
}

.p-navi .next {
	float: left;
	width: 50%;
}
.p-navi .next div {
	padding: 0 10px 0 15px;
	border-right: 1px solid #CCC;
}
.p-navi .next img {
	float: left;
	width: 100px;
	margin-right: 15px;
}

.p-navi a {
	display: block;
	text-decoration: none;
}

.p-navi .next span {
	text-align: left;
}

.p-navi .prev span {
	text-align: right;
}

.p-navi a span {
	display: block;
}

.p-navi a em {
	display: inline-block;
	margin-bottom: 8px;
	padding: 2px 10px;
	background: #87D7FA;
	border-radius: 20px;
	color: #FFF;
	font-style: normal;
	font-size: 1.4rem;
}

.p-navi a b {
	display: block;
	font-size: 1.4rem;
	font-weight: 400;
}
  
  