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


/********************
@media screen and (max-width: 768px) {}
@media screen and (max-width: 520px) {}
@media screen and (max-width: 375px) {}
********************/


/**************************/
/*初期化*/
/**************************/
*{
	padding:0px;
	margin:0px;
	line-height:100%;
	color:#584b3a;
	border:none;
	font-weight:normal;
	font-style:normal;
	line-height:1.6em;
}
@media screen and (max-width: 768px) {
  * {
    box-sizing: border-box;
    vertical-align: baseline;
  }
  body {
    -webkit-text-size-adjust:100%;
  }
  img {
	  width:auto;
	  height:auto;
	  vertical-align:bottom;
  }

}
/**************************/
/*クリア*/
/**************************/
.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  font-size: 0;
  clear: both;
  visibility: hidden;
}
.clearfix {
  /* display: inline-block;*/
}
/* Hides from IE Mac */
* html .clearfix {
  height: 1%;
}
.clearfix {
  display: block;
}
/* End Hack */
/**************************/
/*要素*/
/**************************/
body{
	font-size:13px;
	font-family:'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','メイリオ',Meiryo,'ＭＳ Ｐゴシック',sans-serif;
	/*木目*/
	background-image:url(../../../common/img/wood_back.jpg);
	background-position:center top;
	background-repeat:repeat-y;
  /*text-align: center;*/
  text-align: justify;
}
@media screen and (max-width: 768px) {
  body{
    background-image: none;
    font-size: 14px;
}
}

/*ロゴ上テキスト*/
/*h1{
	display:block;
	font-size:11px;
	float: left;
	padding: 17px 0px 0px;
}*/
h1 {
	padding: 17px 0px 0px;
	float:left;
}
@media screen and (max-width: 768px) {
  h1 {
    padding: 0;
    float: none;
    position: absolute;
    top: -10px;
    left: 8px;
    width: 226px;
    font-size: 0;
  }
  h1 img{
    width: 100%;
    height: auto;
  }
}
@media screen and (max-width: 520px) {
  h1 {
    padding: 0;
    float: none;
    position: absolute;
    top: -10px;
    left: 10px;
  }
  h1 img{
    width: 226px;
    height: auto;
  }
}

a.blue:link {
  color: #00a0e9;
  text-decoration: underline;
}
a.blue:visited {
  color: #00a0e9;
  text-decoration: underline;
}
a.blue:hover {
  color: hover;
  text-decoration: underline;
}
/**************************/
/*クラス・ID*/
/**************************/

/***********************/
/*▼共通　　　　　　　*/
/***********************/
/*布地*/
#wrap{
	width:1000px;
	margin:0px auto;
	background-image:url(../../../common/img/cloth_bg.gif);
	background-position:left top;
	background-repeat:repeat-y;
	text-align:left;
}
/*布地　chrome＠右方向1pxズレ対策*/
/*@media screen and (-webkit-min-device-pixel-ratio:0) {
	#wrap{
		padding-right:1px;
	}
}*/
@media screen and (max-width: 768px) {
  #wrap {
    width: auto;
    min-width: 320px;
    background-image: none;
    text-align: justify;
  }
}
@media screen and (max-width: 375px) {
  #wrap {
    position: relative;
  }
}


/*ヘッダー*/
#header{
	width:940px;
	padding: 9px 30px 0px;
	background-image:url(../img/header.png);
	background-repeat:no-repeat;
	background-position:center bottom;
}
@media screen and (max-width: 768px) {
  #header {
    width: auto;
    height: 90px;
    padding: 16px 15px 0px;
    background-image:url(../../../common/img/cloth_bg.gif);
    background-position: left top;
    background-repeat: repeat-y;
  }
}
@media screen and (max-width: 520px) {
  #header {
    padding: 16px 6px 0px;
  }
}

/*ロゴ*/
#logo{
	display:block;
	width:940px;
	height:134px;
	clear:both;
}
@media screen and (max-width: 768px) {
  #logo {
    position: relative;
    bottom: -10px;
    width: auto;
    height: 78px;
    background-image: url("../img/header_sp768.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom center;
  }
}
@media screen and (max-width: 520px) {
  #logo {
    background-image: url("../img/header_sp520.png");
    height: 85px;
    background-position: bottom 7px center;
  }
}
@media screen and (max-width: 375px) {
  #logo {
    height: 85px;
    background-position: bottom 10px center;
  }
}

/*電話番号と住所*/
#telAddress{
	padding: 25px 0px 0px;
	float:right;
}
@media screen and (max-width: 768px) {
  #telAddress {
    display: none;
  }
}


/*スマホメニュー*/
#menu_sp{
  display: none;
}
@media screen and (max-width: 768px) {
  #menu_sp{
    display: block;
    position: fixed;
    top:0;
    right: 0;
    z-index: 50;
  }
  #menu_sp.active{
    position: static;
  }
  /*　ハンバーガーボタン　*/
  .hamburger {
    display : block;
    position: absolute;
    z-index : 10;
    background-color: #584B3A;
    right: 20px;
    top: 16px;
    width : 42px;
    height: 42px;
    cursor: pointer;
    text-align: center;
    border-radius: 42% 58% 59% 41% / 50% 59% 41% 50%;
  }
  .hamburger span {
    display : block;
    position: absolute;
    width: 20px;
    height  : 2px;
    left: 10px;
    background : #fff;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition   : 0.3s ease-in-out;
    transition        : 0.3s ease-in-out;
  }
  .hamburger span:nth-child(1) {
    top: 13px;
  }
  .hamburger span:nth-child(2) {
    top: 20px;
  }
  .hamburger span:nth-child(3) {
    top: 27px;
  }

  /* ナビ開いてる時のボタン */
  .hamburger.active{
    position: fixed;
  }
  .hamburger.active span{
    width: 22px;
  }
  .hamburger.active span:nth-child(1) {
    top: 20px;
    left: 9px;
    background :#fff;
    /* -webkit-transform: rotate(-45deg); */
    -moz-transform   : rotate(-45deg);
    transform        : rotate(-45deg);
  }

  .hamburger.active span:nth-child(2),
  .hamburger.active span:nth-child(3) {
    top: 20px;
    background :#fff;
    /* -webkit-transform: rotate(45deg); */
    -moz-transform   : rotate(45deg);
    transform        : rotate(45deg);
  }

  nav.globalMenuSp {
    display: none;
    position: fixed;
    z-index : 9;
    top  : 0;
    left : 0;
    color: #fff;
    background: #FABFCF;
    text-align: center;
    width: 100%;
    opacity: 0;
    transition: opacity .6s ease, visibility .6s ease;
    padding: 68px 24px 50px 24px;
  }

  nav.globalMenuSp ul {
    /*margin: 0 auto 50px auto;*/
    margin: 0 auto 0 auto;
    padding: 0;
    width: 100%;
    /*background: url("../img/spmenu_dot_line.svg") repeat-x left top;*/
  }

  nav.globalMenuSp ul li {
    list-style-type: none;
    padding: 0;
    width: 100%;
    text-align: left;
    transition: .4s all;
    /*background: url("../img/spmenu_dot_line.svg") repeat-x left bottom;*/
    background: #ffffff;
    border-radius: 10px;
    margin-bottom: 10px;
  }
  nav.globalMenuSp ul li:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
  }

  nav.globalMenuSp ul li a {
    display: flex;
    align-items: center;
    padding: 17px 20px;
    text-decoration :none;
    font-size: 0;
  }
  nav.globalMenuSp ul li div {
    position: relative;
    padding: 17px 20px;
    font-size: 0;
  }
  
  nav.globalMenuSp ul li a img{
    width: auto;
    height: auto;
  }
  nav.globalMenuSp ul li a img:first-child{
    padding-right: 3px;
  }

  /* このクラスを、jQueryで付与・削除する */
  nav.globalMenuSp.active {
    display: block;
    opacity: 100;
    position: absolute;
    height: 100vh;
    position: fixed;
    overflow-y: scroll;
  }
  nav.globalMenuSp.lock {
    display: block;
    opacity: 100;
    position: absolute;
    height: 100vh;
    position: fixed;
    overflow-y: scroll;
  }
  
  nav.globalMenuSp ul li.childMenu{
    /*background: url("../img/spmenu_dot_line.svg") repeat-x left bottom;*/
    transition: unset;;
  }
  nav.globalMenuSp ul li.childMenu:hover{

  }
  
  nav.globalMenuSp ul li.childMenu ul{
    display: none;
    background-repeat: no-repeat;
    background-position: center;
    transition: .4s all;
    background: none;
  }
  
  nav.globalMenuSp ul li.childMenu ul li{
    background-image: none;
    margin: 0;
  }
  
  nav.globalMenuSp ul li.childMenu ul li a{
    /*padding: 14px 40px;*/
    padding: 14px 40px 14px 60px;
  }
  nav.globalMenuSp ul li.childMenu ul li:last-child a{
    /*padding: 14px 40px 17px 40px;*/
    padding: 14px 40px 14px 60px;
  }
  nav.globalMenuSp ul li.childMenu img:first-child{
    padding-right: 3px;
  }
  nav.globalMenuSp ul li.childMenu img.icon_updown{
    display: block;
    position: absolute;
    right: 20px;
    top: 25px;
  }
  
  nav.globalMenuSp ul li.childMenu ul.open{
    display: block;
    padding-bottom: 5px;
  }
  nav.globalMenuSp ul li.childMenu ul.lock{
    display: block;
  }
  
  
  nav.globalMenuSp ul#spmenu_btn{
    background-image: none;
    margin-top: 50px;
    border-radius: 10px;
    background: #ffffff;
    padding: 10px 10px 10px 10px;
  }
  nav.globalMenuSp ul#spmenu_btn li{
    transition: unset;
    /*border: 1px dashed #584B3A;*/
    border-radius: 10px;
    background-image: none;
    margin-bottom: 10px;
  }
  nav.globalMenuSp ul#spmenu_btn li:first-child{
    /*お問い合わせ*/
    background: #BBE8C2 url("../img/menu_inquiry.png") no-repeat right bottom;
  }
  nav.globalMenuSp ul#spmenu_btn li:last-child{
    /*子ども好きの方へ*/
    background: #F8C5AC url("../img/menu_recruit.png") no-repeat right bottom;
    margin-bottom: 0;
  }
  nav.globalMenuSp ul#spmenu_btn li a{
    padding: 0px 20px 0px 20px;
    line-height: 0;
    height: 80px;
  }
  nav.globalMenuSp ul#spmenu_btn li:first-child a img{
    max-width: 110px;
    width: 100%;
  }
  nav.globalMenuSp ul#spmenu_btn li a img{
    max-width: 139px;
    width: 100%;
  }
}
@media screen and (max-width: 520px) {
  /*　ハンバーガーボタン　*/
  .hamburger {
    right: 10px;
    top: 16px;
  }
}
@media screen and (max-width: 360px) {
  nav.globalMenuSp ul#spmenu_btn li:first-child{
    /*お問い合わせ*/
    background: #BBE8C2 url("../img/menu_inquiry.png") no-repeat right bottom;
    background-size: contain;
  }
  nav.globalMenuSp ul#spmenu_btn li:last-child{
    /*子ども好きの方へ*/
    background: #F8C5AC url("../img/menu_recruit.png") no-repeat right bottom;
    margin-bottom: 0;
    background-size: contain;
  }
}
@media screen and (max-width: 320px) {
  /*　ハンバーガーボタン　*/
  .hamburger {
    right: 10px;
    top: 16px;
  }
}

.active_menu{
  filter: brightness(0) saturate(100%) invert(77%) sepia(30%) saturate(5409%) hue-rotate(300deg) brightness(91%) contrast(103%);
}


/*ナビゲーション*/
#gnaviWrap{
	width:940px;
	height:73px;
	padding: 0px 30px;
	background-image:url(../img/aiwa_menu.png);
	background-repeat:no-repeat;
	background-position:center;
}
@media screen and (max-width: 768px) {
  #gnaviWrap {
    width: auto;
    display: none;
  }
}
/*ナビゲーションリスト*/
ul#gnavi{
	list-style:none;
	padding:12px 0px 0px 0px;
	margin:0px 20px 0px 20px;	
	width:900px;
	height:54px;
	clear:both;
}
/*リスト*/
ul#gnavi li{
	list-style:none;
	height:54px;
	float:left;
}
/*コンテンツ一覧＆お問合せください*/
#itemListContactWrap{
	padding:10px 30px 20px 30px;
}
@media screen and (max-width: 768px) {
  #itemListContactWrap {
    /*木目*/
    background-image: url(../../../common/img/cloth_bg.gif);
    background-position: center top;
    background-repeat: repeat-y;
    padding: 40px 30px 25px 30px;
  }
}
/*コンテンツ一覧*/
#itemListWrap{
	width:600px;
	float:left;
	margin:5px 0px 0px 0px;
}
@media screen and (max-width: 768px) {
  #itemListWrap {
    width: auto;
    margin: 0;
  }
}
@media screen and (max-width: 520px) {
  #itemListWrap {
    margin: 0 auto 24px auto;
  }
}
/*コンテンツ一覧リスト*/
ul.itemList{
	list-style: none;
}

/*コンテンツ一覧リスト*/
ul.itemList li{
	list-style: none;
	line-height:1.8em;
}

/*太字*/
ul.itemList li.mark1{
	font-weight:bold;
	background:url(../img/listmark_01.png) no-repeat 0px;
	padding-left:18px;
  font-size: 13px;
}
/*通常*/
ul.itemList li.mark2{
	background:url(../img/listmark_02.png) no-repeat 0px ;
	padding:0px 0px 0px 18px;
	margin:0px 0px 0px 20px;
  font-size: 13px;
}
ul.itemList li.mark1 a:link {
  color: #584b3a;
  font-weight: bold;
  text-decoration: none;
}
ul.itemList li.mark1 a:visited {
  color: #584b3a;
  font-weight: bold;
  text-decoration: none;
}
ul.itemList li.mark1 a:hover {
  color: #584b3a;
  font-weight: bold;
  text-decoration: underline;
}
ul.itemList li.mark1 a:active {
  color: #584b3a;
  font-weight: bold;
  text-decoration: underline;
}
ul.itemList li.mark2 a:link {
  color: #584b3a;
  text-decoration: none;
}
ul.itemList li.mark2 a:visited {
  color: #584b3a;
  text-decoration: none;
}
ul.itemList li.mark2 a:hover {
  color: #584b3a;
  text-decoration: underline;
}
ul.itemList li.mark2 a:active {
  color: #584b3a;
  text-decoration: underline;
}


/*ホームの列*/
.home{
	float:left;
	margin: 0px 3px 0px 0px;
}
@media screen and (max-width: 768px) {
  .home {
    display: none;
  }
}
/*ようちえんガイドの列*/
.guide{
	float:left;
	margin: 0px 10px 0px 0px;
}
@media screen and (max-width: 768px) {
  .guide {
    display: none;
  }
}
/*ようちえんでの生活の列*/
.life{
	float:left;
	margin: 0 20px 0 0;
}
@media screen and (max-width: 768px) {
  .life {
    display: none;
  }
}
/*愛和学院の列*/
.aiwa {
  float: left;
  margin: 0px;
}
@media screen and (max-width: 768px) {
  .aiwa {
    margin: 0;
  }
  .aiwa li:nth-of-type(1),
  .aiwa li:nth-of-type(2){
    display: none;
  }
}




/*お問合せ下さい*/
#contactWrap{
	width:304px;
	float:right;
}
@media screen and (max-width: 768px) {
  #contactWrap{
    width: auto;
    text-align: center;
  }
  #contactWrap img {
    width: auto;
    height: auto;
  }
}
@media screen and (max-width: 520px) {
  #contactWrap{
    width: auto;
    text-align: center;
    margin: 0 auto;
    float: none;
  }
}
@media screen and (max-width: 375px) {
  #contactWrap img {
    width: 100%;
    height: auto;
  }
}

/*緑*/
#footer{
	width:1000px;
	height:44px;
	background-image:url(../../../common/img/footer_bg.png);
	background-position:left bottom;
	background-repeat:no-repeat;
	color:#ffffff;
	text-align:right;
}
@media screen and (max-width: 768px) {
  #footer {
    width: auto;
    margin-top: -5px;
  }
}
/*コピーライト*/
#footer div.copy{
	padding:16px 30px 0px 30px;
	color:#ffffff;
}
@media screen and (max-width: 768px) {
  #footer div.copy {
    text-align: center;
    font-size: 11px;
  }
}

a.blue:link {color:#00A0E9; text-decoration:underline;}
a.blue:visited {color:#00A0E9; text-decoration:underline;}
a.blue:hover {color:#00A0E9; text-decoration:underline;}
a.blue:active {color:#00A0E9; text-decoration:underline;}


/***********************/
/*▲共通　　　　　　　*/
/***********************/


/***********************/
/*▼トップ　　　　　　　*/
/***********************/
/*白地*/
#contents{
	width:940px;
	padding:0px 30px 80px 30px;
	background-image:url(../../../common/img/contents_back.png);
	background-repeat:repeat-y;
	background-position:top center;
}
@media screen and (max-width: 768px) {
  #contents {
    width: auto;
    padding: 0px 0px 70px 0px;
  }
}
@media screen and (max-width: 520px) {
  #contents {
    width: auto;
    padding: 0px 0px 50px 0px;
  }
}
#contents .area{
  width: 940px;
}
@media screen and (max-width: 768px) {
  #contents .area {
    width: auto;
    margin: 22px 0 0 0;
  }
}
@media screen and (max-width: 375px) {
  #contents .area {
    width: auto;
    margin: 11px 0 0 0;
  }
}
/*白地下部ボカシ@トップページ*/
.shadow{
	background-image:url(../../../common/img/shadow_bottom.png);
	background-position:left top;
	background-repeat:repeat-x;
	width:943px;
	margin:0px 0px 0px 30px;
	font-size:1px;
	line-height:1px;
	height:10px;
}
@media screen and (max-width: 768px) {
  .shadow {
    display: none;
  }
}

/*メイン画像*/
img.main{
  margin: 9px 18px 0px 17px;
}
@media screen and (max-width: 768px) {
  img.main {
    width: 100%;
    height: auto;
    margin: 0 auto 0px auto;
  }
}

/*左*/
#sideMenuTop{
	width:218px;
	margin:11px 0px 0px 12px;
	float:left;
}
@media screen and (max-width: 768px) {
  #sideMenuTop {
    display: none;
  }
}
/*右*/
#rightarea{
	width:690px;
	margin:0px 20px 0px 0px;
	float:right;
}
@media screen and (max-width: 768px) {
  #rightarea {
    float: none;
    width: auto;
    margin: 0 30px;
  }
}
@media screen and (max-width: 520px) {
  #rightarea {
    margin: 0 24px;
  }
}
/*リンクボタン*/
.btn{
	float: left;
}

.co{
	width: 658px;
	margin: 11px 20px 0px 12px;
}
@media screen and (max-width: 768px) {
  .co{
    width: auto;
    margin: 0;
  }
}


@media screen and (max-width: 768px) {
  .top_c1{
    max-width: 708px;
    width: 100%;
  }
  .top_c2{
    max-width: 708px;
    width: 100%;
  }
}
@media screen and (max-width: 520px) {
  .top_c1{
    max-width: 471px;
    width: 100%;
  }
  .top_c2{
    max-width: 471px;
    width: 100%;
  }
}




.co p.top{
	margin: 10px 10px 0 10px;
}
#tx_fureai,
#tx_kanosei{
  margin-bottom: 25px;
}
#tx_fureai .detail,
#tx_kanosei .detail{
  display: none;
}
@media screen and (max-width: 768px) {
  .co p.top{
    position: relative;
    text-align: left;
    margin: 10px 10px 0 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /*! autoprefixer: ignore next */
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.5em;
    max-height: 4.5em;
  }
  .co p.top::after{
    content: '';
    position: absolute;
    bottom: 0;
    display: block;
    width: 100%;
    height: 2rem;/*--高さ--*/
    background: linear-gradient(rgba(255,255,255,0),rgba(255,255,255,1));/*--グラデーション--*/
  }
  .co p.top.tx_open{
    margin: 10px 10px 0px 10px;
    display: block;
    -webkit-line-clamp: none;
    overflow:auto;
    line-height:1.6em;
    max-height: 100%;
  }
  .co p.top.tx_open::after{
    display: none;
  }
  #tx_fureai .detail,
  #tx_kanosei .detail{
    display: block;
    margin: 0 10px 0 10px;
    font-size: 85%;
    color: #00A0E9;
  }
  #tx_fureai .detail::before,
  #tx_kanosei .detail::before{
    content: "詳細はこちら";
  }
  #tx_fureai .detail.tx_open::before,
  #tx_kanosei .detail.tx_open::before{
    content: "閉じる";
  }
}

.history_wrap{
	margin: 0px 10px;
}
.history_wrap:last-of-type{
  margin-top: 2em;
}
@media screen and (max-width: 768px) {
  .history_wrap{
    margin: 15px 0 39px 0;
  }
  .history_wrap:last-of-type{
    margin-top: 0;
    margin-bottom: 0;
  }
}


p.history_ttl{
  padding: 0 0 1em 0;
  margin: 0;
  text-align: left;
  background: url(../img/dotline_his.gif) bottom repeat-x;
}
p.history{
	background: url(../img/dotline_his.gif) bottom repeat-x;
	width: 618px;
	display: block;
	padding: 7px 10px;
}
@media screen and (max-width: 768px) {
  p.history_ttl{
    padding: 0 0 7px 0;
  }
  p.history{
    width: 100%;
    padding: 14px 10px;
    line-height: 1.5em;
  }
  p.history br{
    display: none;
  }
}
@media screen and (max-width: 520px) {
  p.history br{
    display: block;
  }
}

p.history.line_none{
	background: none;
	width: 618px;
	display: block;
	padding: 7px 10px 0px 10px;
}
@media screen and (max-width: 768px) {
  p.history.line_none{
    width: 100%;
    padding: 11px 10px 0 10px;
    line-height: 1.5em;
  }
}
p.history.end{
	padding-top:0px;
}

/*ニュース*/
.news{
	background:url(../img/news_bg.gif) no-repeat;
  height: 200px;
}
/*お知らせCGI*/
.info{
	width:690px;
  padding: 0px;
	margin:0px;
	border:none;
}
@media screen and (max-width: 768px) {
  .info {
    width: auto;
  }
}
.info td{
	vertical-align:top;
}
.infoTop{
	background:url(../img/info_top.gif) no-repeat;
	height:79px;
}
.infoLeft{
	background:url(../img/info_left.gif) no-repeat;
	width:34px;
	height:92px;
}
.infoRight{
	background:url(../img/info_right.gif) no-repeat;
	width:32px;
	height:92px;
}
.infoCenter{
	/*vertical-align:bottom;*/
}
.infoBottom{
	background:url(../img/info_bottom.gif) no-repeat;
	height:29px;
}

/*お知らせ*/
.info2{
	width:692px;
	/*padding:25px 0px 0px 0px;*/
	margin:0 0 25px 0;
	border:none;
}
@media screen and (max-width: 768px) {
  .info2 {
    width: 100%;
    padding: 0;
  }
}
.info2 td{
	vertical-align:top;
}
.info2 td.info_hd {
  height: 89px;
  font-size: 0;
}
.info2 td.info_hd_bottom{
  display: none;
}
@media screen and (max-width: 768px) {
  .info2 td.info_hd img{
    display: none;
  }
  .info2 td.info_hd {
    height: 66px;
    background: url("../img/info_hd_sp768.png") no-repeat left top;
  }
  .info2 td.info_hd_bottom{
    display: table-cell;
    background: #f9f5d6;
    padding: 0 10px;
  }
  .info2 td.info_hd_bottom div{
    height: 12px;
    background: url("../img/info_hd_bottom_sp768.png") no-repeat left top #ffffff;
  }
}
.info2 td.info_bottom {
  height: 41px;
}
.info2 td.info_loop #frm{
  background-color: #ffffff;
  margin: 0 10px;
  padding-top: 0;
  padding-bottom: 0;
}
@media screen and (max-width: 768px) {
  .info2 td.info_loop #frm{
    padding: 0;
    margin: 0 10px;
    padding-top: 16px;
    padding-bottom: 20px;
  }
}

.info2 div a:link {
  color: #00A0E9;
  text-decoration: underline;
}
.info2 div a::visited {
  color: #00A0E9;
  text-decoration: underline;
}
.info2 div a:a:hover {
  color: #00A0E9;
  text-decoration: underline;
}
.info2 div a:a:active {
  color: #00A0E9;
  text-decoration: underline;
}

.info2 div a:link {color:#00A0E9; text-decoration:underline;}
.info2 div a::visited {color:#00A0E9; text-decoration:underline;}
.info2 div a:a:hover {color:#00A0E9; text-decoration:underline;}
.info2 div a:a:active {color:#00A0E9; text-decoration:underline;}

.info2 div.block{
	margin-bottom:17px;
	padding-bottom: 13px;
	background:url(../img/dotline_his_l.gif) repeat-x left bottom;
}
@media screen and (max-width: 768px) {
  .info2 div.block{
    padding: 0px 0px 13px 0px;
    margin-bottom: 14px;
  }
}
.info2 div.block:last-child{
	padding-bottom: 0px;
}
.info2 div.block.n6{
	margin:20px 0px 10px 0px;	
}
.info2 div.block:last-child{
	background-image:none;
}
@media screen and (max-width: 768px) {
  .info2 div.block:last-child{
    margin-bottom: 0;
  }
}
.info2 div.block h2{
	font-size:13px;
	font-weight:bold;
}
.info2 div.block h2.tx_big{
	font-size:13.5px;
	font-weight:bold;
}
.info2 div.block h2.line2{
	line-height:1.3em;
}

.info2 h2.dw {
  padding-bottom: 0;
}
/*.info2 h2.dw:hover{ text-decoration:underline;}*/
.info2 h2.dw span.small_tx{
	font-size:85%;
	color:#00A0E9;
}
@media screen and (max-width: 520px) {
  .info2 h2.dw span.small_tx{
    display: block;
  }
}
.info2 h2.-drop {
  cursor: pointer;
}
.info2 h2.-drop:hover {
  text-decoration: underline;
}
.info2 h2.-nodrop {
  cursor: auto;
}
.info2 h2.dw span.new_tx{
	font-size:85%;
	font-weight: bold;
	font-weight: 700;
	color: #ffffff;
	background-color:#EA6D8D;
	padding: 3px 6px;
	border-radius: 2px;
}
.info2 h2.-drop{ cursor:pointer; }
.info2 h2.-drop:hover{ text-decoration:underline;}
.info2 h2.-nodrop{cursor:auto;}


.info2 div.block div{
	padding:5px 0px 15px 10px;
}
.info2 div.block div br.sp{
  display: none;
}
.info2 div.block div br.sp_Birthday{
  display: none;
}
.info2 div.block div ul{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  list-style: none;
  width: 100%;
}
.info2 div.block div ul li{
  min-width: 5.25em;
}


@media screen and (max-width: 768px) {
  .info2 div.block div{
    padding: 14px 10px 14px 10px;
  }
  .info2 div.block div br.sp{
    display: block;
  }
}
@media screen and (max-width: 375px) {
  .info2 div.block div br.sp_Birthday{
    display: block;
  }
}


.info2 .maker{
	background-color: #fbff2e;
	padding: 2px 2px 3px 2px;
}
.info2 .red{
	color:#ea6d8d;
}


.info2 td.info_loop{
	padding:8px 28px 0px 40px;
	background:url(../img/info_loop.gif) repeat-y left center;
	text-align:left;
}
@media screen and (max-width: 768px) {
  .info2 td.info_loop{
    background-image: none;
    background-color: #f9f5d6;
    padding: 0;
  }
}
.info2 td.info_loop #frm_in_wrap {
  /*height: auto;
  max-height: 11em; 
  overflow-y: scroll;*/
}
@media screen and (max-width: 768px) {
  .info2 td.info_loop #frm_in_wrap {
    max-height: 100%;
    margin: 0 10px;
    padding: 0;
  }
}
.info2 td.info_loop #frm_in_wrap table {
  margin: 0px 10px;
  font-size: 17px;
}
.info2 td.info_loop #frm_in_wrap table td {
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .info2 td.info_loop #frm_in_wrap table td{
    display: block;
    line-height: 1em;
  }
}
.info2 td.info_loop #frm_in_wrap table td.tx {
  white-space: normal;
  padding-left: 0.7em;
  padding-bottom: 0.5em;
}
@media screen and (max-width: 768px) {
  .info2 td.info_loop #frm_in_wrap table td.tx {
    padding-left: 0;
    line-height: 1.5em;
  }
}
.info2 td.info_loop #frm_in_wrap table .tx a img {
  border: none;
}
.info2 td.info_loop #frm_in_wrap table .tx a:link {
  color: #EA6D8D;
  text-decoration: underline;
}
.info2 td.info_loop #frm_in_wrap table .tx a:visited {
  color: #EA6D8D;
  text-decoration: underline;
}
.info2 td.info_loop #frm_in_wrap table .tx a:hover {
  color: #EA6D8D;
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  .info2 td.info_Bottom{
    background-color: #f9f5d6;
    height: 10px;
  }
  .info2 td.info_Bottom img{
    display: none;
  }
}
.btn_wrap {
  overflow: hidden;
  margin-top: 0px; /*2022-01-25追記*/
}
@media screen and (max-width: 768px) {
  .btn_wrap{
    display: none;
  }
}
/*画像マウスオーバー*/
a:hover img.btn {
  opacity: 0.7;
  filter: alpha(opacity=80);
}
/*H27年度入園説明会のお知らせ*/
img.info_nyuen {
  margin: 20px 0px 0px 15px;
  float: left;
}
img.photo_sale {
  margin: 20px 15px 0px 0px;
  float: right;
}
/*H28年度入園説明会のお知らせ*/
img.info_nyuen2 {
  display: inline-block;
  margin: 20px 5px 0px 15px;
}
img.photo_sale2 {
  display: inline-block;
  margin: 20px 5px 0px 0px;
}
img.event_bus {
  display: inline-block;
  margin: 20px 0px 0px 0px;
}
/*未就園児招待競技*/
.info_karada-gungun {
  box-sizing: border-box;
  font-size: 17px;
  margin-left: 20px;
  margin-bottom: 30px;
  background-color: #f9f5d6;
  padding: 15px 25px;
  border-radius: 20px;
  width: 660px;
}
@media screen and (max-width: 768px) {
  .info_karada-gungun {
    width: auto;
    margin: 0 auto;
  }
}
.info_karada-gungun p {
  display: block;
  color: #ea6d8d;
  width: auto;
  text-align: left;
  font-size: 20px;
  font-weight: bold;
  margin-left: 0;
  margin-right: auto;
  margin-bottom: 15px;
  border-bottom: solid 2px;
  padding-left: 15px;
  padding-right: 15px;
}

/*SP幼児教室おひさまらんど*/
.info_ohisama_shortcut{
  display: none;
}
@media screen and (max-width: 768px) {
  .info_ohisama_shortcut{
    display: block;
    width: 100%;
    text-align: left;
    margin: 30px auto 30px;
  }
  .info_ohisama_shortcut img{
    width: 100%;
    height: auto;
    max-width: 708px;
  }
}
@media screen and (max-width: 520px) {
  .info_ohisama_shortcut{
    text-align: center;
  }
  .info_ohisama_shortcut img{
    width: 100%;
    max-width: 327px;
  }
}

.info2 .red2{
	color: #E62E8B;
}
.info2 div.block.n6 p{
	margin-bottom:1em;
}
.info2 div.block.n6 p:last-child{
	margin-bottom:0px;
}

.info2 h3.back  {
	color:#ffffff;
	line-height:1.6em;
	padding:15px;
	background-color:#ea6d8d;
	border-radius:10px;
	margin-bottom:15px;
}

.info2 .block.noline{
	background:none;
}
.info2 .txt_emphasis{
	font-size: 150%;
	font-weight: bold;
}
.info2 .txt_emphasis2{
	font-size: 120%;
}
.info2 p.time_capsule{
	padding: 0px!important;
	/*text-indent: -1em;
	margin-left: 1em;*/
}


/*幼稚園・幼児教室　見学会について*/
.time_schedule {}
.time_schedule th {
  text-align: center;
  background-color: #B2A58E;
  color: #ffffff;
  border: solid 1px #ffffff;
  font-weight: bold;
}
.time_schedule td{
  padding: 1em 0.8em;
  text-align: center;
  background-color: #EEEEEF;
  border: solid 1px #ffffff;
}
.time_schedule td.time{
  background-color: #EEEEEF;
  border: solid 1px #ffffff;
}



div#frm a.red2link:link{
	color: #E62E8B;
	background-color: #F8C8E0;
	border: solid 1px;
	padding: 1px 7px;
	border-radius: 3px;
	letter-spacing: 0.3px;
	text-decoration:none;
	font-size: 85%;
}
div#frm a.red2link:visited {color: #E62E8B;	background-color: #F8C8E0; border-color:#E62E8B; text-decoration:none;}
div#frm a.red2link:hover   {color: #ffffff;	background-color: #E62E8B; border-color:#E62E8B; text-decoration:none;}
div#frm a.red2link:active  {color: #E62E8B;	background-color: #F8C8E0; border-color:#E62E8B; text-decoration:none;}
/***********************/
/*▲トップ　　　　　*/
/***********************/


/***********************/
/*▼他のページ　　　　　*/
/***********************/
#bredListWrap{
	width:900px;
	padding:6px 20px 11px 20px;
}
@media screen and (max-width: 768px) {
  #bredListWrap {
    display: none;
  }
}
/*ぱんくずリスト*/
ul#bredList{
	width:900px;
	list-style: none;
}
ul#bredList li{
	font-size:11px;
	list-style: none;
	padding:0px 0.5em 0px 0px;
	float:left;
}
ul#bredList li a:link {
  color: #00a0e9;
  text-decoration: underline;
}
ul#bredList li a:visited {
  color: #00a0e9;
  text-decoration: underline;
}
ul#bredList li a:hover {
  color: #00a0e9;
  text-decoration: none;
}
ul#bredList li a:active {
  color: #00a0e9;
  text-decoration: none;
}
/*白地*/
#contentsOther{
	width:940px;
	padding:0px 30px;
	background-image:url(../../../common/img/contents_back.png);
	background-repeat:repeat-y;
	background-position:top center;
}
@media screen and (max-width: 768px) {
  #contentsOther {
    width: 100%;
    padding: 40px 20px 70px 20px;
  }
}
@media screen and (max-width: 520px) {
  #contentsOther {
    width: 100%;
    padding: 30px 10px 50px 10px;
  }
}
/*白地＠本文が入るエリア*/
#contentsOther .area{
  width: 940px;
}
@media screen and (max-width: 768px) {
  #contentsOther .area {
    width: 100%;
  }
}
/*左パーツ*/
#sideMenu{
	width:218px;
	margin:0px 0px 0px 12px;
	float:left;
}
@media screen and (max-width: 768px) {
  #sideMenu {
    display: none;
  }
}
/*右パーツ*/
#mainTxt{
	width:670px;
	margin:0px 20px 0px 20px;
	float:right;
	line-height:1.5em;
}
@media screen and (max-width: 768px) {
  #mainTxt {
    width: 100%;
    margin: 0;
    padding: 0;
    float: none;
  }
}

#mainTxt .inner{
	margin: 0px 20px 30px 20px;
}
@media screen and (max-width: 768px) {
  #mainTxt .inner {
    margin: 0px 10px 0px 10px;
  }
}
@media screen and (max-width: 520px) {
  #mainTxt .inner {
    margin: 0px 14px 0px 14px;
  }
}




/*サイドメニュー*/
/*入園のご案内*/
ul#sideMenuList01{
	width:181px;
	height:228px;
	background-image:url(../img/enter/sidemenu_bk.gif);
	background-position:left top;
	background-repeat:no-repeat;
	list-style:none;
	padding:28px 0px 0px 37px;
	margin-bottom:9px;
}
ul#sideMenuList01 li{
	list-style:none;
	width:164px;
	height:48px;
}
*+html #sideMenuList01 li{
	height:43px;
}

/*ようちえんガイド*old*/
ul#sideMenuList02{
	width:181px;
	height:325px;
	background-image:url(../img/guide/sidemenu_bk2.gif);
	background-position:left top;
	background-repeat:no-repeat;
	list-style:none;
	padding:28px 0px 0px 37px;
	margin-bottom:9px;
}
ul#sideMenuList02 li{
	list-style:none;
	width:164px;
	height:48px;
}
*+html ul#sideMenuList02 li{
	height:43px;
}
/*ようちえんガイド*new*/
ul#sideMenuList02_2{
	width:181px;
	height:401px;
	background-image:url(../img/guide/sidemenu_bk2_2.gif);
	background-position:left top;
	background-repeat:no-repeat;
	list-style:none;
	padding:28px 0px 0px 37px;
	margin-bottom:9px;
}
ul#sideMenuList02_2 li{
	list-style:none;
	width:164px;
	height:48px;
}
*+html ul#sideMenuList02_2 li{
	height:43px;
}

/*ようちえんでの生活*/
ul#sideMenuList03{
	width:186px;
	height:132px;
	background-image:url(../img/life/sidemenu_bk3.gif);
	background-position:left top;
	background-repeat:no-repeat;
	list-style:none;
	padding:28px 0px 0px 37px;
	margin-bottom:9px;
}
ul#sideMenuList03 li{
	list-style:none;
	width:164px;
	height:48px;
}
*+html ul#sideMenuList03 li{
	height:43px;
}

/*幼児教室*/
/*ようちえんでの生活*/
ul#sideMenuList04{
	box-sizing:border-box;
	width:217px;
	height:160px;
	background-image:url(../img/infant/sidemenu_bk4.gif);
	background-position:left top;
	background-repeat:no-repeat;
	list-style:none;
	padding:25px 0px 0px 37px;
	margin-top:3px;
	margin-bottom:6px;
}
ul#sideMenuList04 li{
	list-style:none;
	width:164px;
	height:47px;
}
*+html ul#sideMenuList04 li{
	height:48px;
}

img.kidsSchool{
	padding:0px 0px 0px 2px;
}
/*在園児保護者様*/
img.parents{
	padding:0px 0px 0px 2px;
}
/*リクルート*/
img.recruit{
	padding:15px 0px 0px 2px;
}

/*ページめくり全体*/
#contentsBottom{
	*width:1000px;
	width:960px;
	height:122px;
	background-image:url(../img/page_bottom.png);
	background-repeat:no-repeat;
	background-position:left bottom;
	margin:0px 20px;
	text-align:right;
}
@media screen and (max-width: 768px) {
  #contentsBottom {
    display: none;
  }
}
/*白地下部ボカシ@他のページ*/
.shadowOther{
	background-image:url(../img/shadow_bottom.png);
	background-position:left top;
	background-repeat:repeat-x;
	width:778px;
	margin:0px 0px 0px 30px;
	font-size:1px;
	line-height:1px;
	height:10px;
}
/***********************/
/*▲他のページ　　　　　*/
/***********************/





/*============*/
/*装飾*/
/*============*/
.cl{
	clear:both;
	font-size:0px;
	line-height:0px;
	font-size:0px;
}

.bold{
	font-weight:bold;
}

.clearfix::after {
    content: "";
    display: block;
    clear: both;
}

