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

enlist.php用CSS

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

/*--------------------------------------
全体の枠
--------------------------------------*/
.enlist_wrap{
	width:1100px;
	margin:0 auto;
	margin-bottom: 150px;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}
.enlist_wrap .sidebar {
	margin-top: 56px;
}
/*--------------------------------------
コンテンツ
--------------------------------------*/
.enlist_contents{
	width:740px;
}
/*--------------------------------------
ページヘッダー
--------------------------------------*/
.page-header {
  width: 100%;
  height: 150px;
  color: #fff;
	display: flex;
  align-items: center;
  background-image: url(../img/renewal/enlist/header-bg.jpg);
	background-position: center;
  background-size: cover;
	box-sizing: border-box;
}
.page-header-inner {
	width: 1100px;
	margin: 0 auto;
	display: flex;
  align-items: center;
  justify-content: flex-start;
}
.page-title {
	font-family: 'Noto Sans JP', sans-serif;
  font-size: 28px;
	font-weight: bold;
}
/*--------------------------------------
パンくずリスト
--------------------------------------*/
.breadcrumb_wrapper {
	border-bottom: 1px solid #DDD;
	padding-top: 18px;
	padding-bottom: 18px;
}
.breadcrumb{
	width: 1100px;
	margin: 0 auto;
	font-size:14px;
	display: flex;
	align-items: center;
	gap: 30px;
}
.breadcrumb li{
	display:inline-block;
	position: relative;
	vertical-align:bottom;
}
.breadcrumb li:after{
	content:'';
	width: 8px;
	height: 8px;
	border-top: 1px solid #000;
	border-right: 1px solid #000;
	transform: rotate(45deg);
	position: absolute;
	top: 6px;
	right: -18px;
}
.breadcrumb li:last-child:after{
	content:'';
	display: none;
}
.breadcrumb li a{
	display: block;
}
.breadcrumb li a img{
	width: 20px;
	height: 20px;
}

h2{
    margin-top: 56px;
}

/*--------------------------------------
条件検索
--------------------------------------*/
.terms{
	width:740px;
	border:solid 2px #D2D2D2;
	margin-top:30px;
}
.terms tr{
	border-bottom:solid 1px #D2D2D2;
}
.terms th{
	border-right: solid 1px #D2D2D2;
	text-align: left;
	width: 97px;
	background-color: #FCF4DD;
	font-size: 14px;
	text-align:left;
	padding-left:15px;
	/*line-height:3;*/
	vertical-align:middle;
}
.terms td{
	padding:10px;
	line-height:1.5;
	font-size:14px;
}
.terms td p.left{
	float:left;
}
.terms td p.right{
	width:520px;
	float:right;
}
.terms td span{
	margin-right:10px;
	font-size:13px;
	background-color:#4CD8E5;
	color:#fff;
	font-weight:bold;
	padding:4px 10px;
	border-radius:3px;
	transition: .2s linear;
	-webkit-transform: translateZ(0);
}

.terms td span:before {
	font-family: "Font Awesome 5 Free";
	content: '\f067';
	margin-right: 5px;
	}

.terms td span:hover{
	text-decoration: none;
	opacity: 0.8;
}

.terms .btn{
	background-color: #E6E4E5;
}
.terms .btn td{
	padding-top:10px;
	padding-bottom:6px;
	text-align:center;
}
.terms .btn button{
	cursor:pointer;
}

/* フリーワード検索 */
.terms td .search-window {
    width: 584px;
    border: solid 2px #4CD8E5;
    font-size: 16px;
    background-color: #fff;
    height: 40px;
    border-radius: 30px;
    box-shadow: 0 2px 3px #EFEFEF inset;
    margin: 0 0 0 10px;
		position: relative;
}

.terms td .en_name_field {
    width: 534px;
    height: 40px;
    font-size: 16px;
    text-indent: 20px;
}

.search-window button {
    position: absolute;
    top: 4px;
    cursor: pointer;
		transition: .2s linear;
		-webkit-transform: translateZ(0);
}

.search-window button img{
	width: 80%;
}

.search-window button:hover{
	text-decoration: none;
	opacity: 0.8;
}

/* Chromeのオートコンプリート背景色を消す */
@keyframes onAutoFillStart { from {} to {}}

input:-webkit-autofill {
    animation-name: onAutoFillStart;
    transition: background-color 50000s ease-in-out 0s;
}

/*--------------------------------------
条件検索 new
--------------------------------------*/
.search_container {
	margin-top: 56px;
	font-family: "Noto Sans JP", sans-serif;
	box-sizing: border-box;
}
.search_title {
	font-size: 18px;
	font-weight: 700;
	line-height: 26px;
	text-align: center;
	color: #fff;
	background-color: #5BBCC9;
	padding-top: 14px;
	padding-bottom: 14px;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
}
.search_form_wrapper {
	background-color: #F5F5F5;
	padding: 30px 40px;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
	display: grid;
	grid-template-columns: 1fr;
	grid-gap: 30px;
}
.search_label {
	font-size: 15px;
	font-weight: 700;
	line-height: 21px;
	color: #000;
	margin-bottom: 20px;
}
.search_form_text {
	display: flex;
}
.search_text {
	font-size: 15px;
	font-weight: 500;
	line-height: 21px;
	padding: 16px;
	width: calc(100% - 80px);
	height: 55px;
	border-top-left-radius: 6px;
	border-bottom-left-radius: 6px;
	background-color: #fff;
	box-sizing: border-box;
}
/* Chrome, Safari, Edge, Opera */
.search_text::-webkit-input-placeholder {
	color: #CCC;
}
/* Firefox */
.search_text::placeholder {
	color: #CCC;
}
.search_button {
	font-size: 16px;
	font-weight: 700;
	line-height: 23px;
	text-align: center;
	color: #fff;
	background-color: #5BBCC9;
	width: 80px;
	height: 55px;
	border-top-right-radius: 6px;
	border-bottom-right-radius: 6px;
	cursor: pointer;
}
.search_button:hover {
	opacity: 0.8;
}
.tag_wrapper {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.tag {
	padding: 5px 14px;
	font-size: 12px;
	font-weight: 500;
	line-height: 17px;
	text-align: center;
	border-radius: 100px;
}
.tag_add {
	font-weight: 700;
	color: #fff;
	background-color: #5BBCC9;
	padding-right: 30px;
	position: relative;
	::after {
		content: '+';
		font-size: 20px;
		position: absolute;
		top: 48%;
		right: 4px;
		transform: translate(-50%, -50%);
	}
}
.tag_selected {
	font-weight: 500;
	color: #666;
	background-color: #fff;
}
.category_wrapper {
	display: flex;
	gap: 15px;
}
.category_link {
	font-size: 15px;
	font-weight: 700;
	line-height: 21px;
	width: 210px;
	padding: 15px;
	color: #000;
	background-color: #FFF;
	background-image: url('../img/renewal/enlist/icon_arrow_circle_gray.png');
	background-repeat: no-repeat;
	background-position: right 15px center;
	background-size: 18px;
	border-radius: 6px;
	border: 2px solid #FFF;
}
.category_link:active {
	color: #5BBCC9;
	background-image: url('../img/renewal/enlist/icon_arrow_circle.png');
	border: 2px solid #5BBCC9;
}

/*--------------------------------------
園一覧
--------------------------------------*/
.enlist_summary,
.enlist_summary_sister
{
	border:solid 1px #D2D2D2;
	margin-top:38px;
	padding-bottom:30px;
}

.enlist_summary_pickup
{
    width: 580px;
    /*background-color: #f4f9ff;
	border:solid 1px #66a6ff;*/
	background : #EAFFED;
	border: 1px solid #5ED86F;
	border-radius: 10px;
	box-shadow:0 2px 14px #CCC;
	margin-top:38px;
	padding-bottom:10px;
}
.enlist_summary_pickup_in
{
	/*background-color: #f4f9ff;
	border:solid 1px #66a6ff;*/
	background : #EAFFED;
	border: 1px solid #5ED86F;
	border-radius: 10px;
	box-shadow:0 2px 14px #CCC;
	margin-top:38px;
	padding-bottom:10px;
}

/*--------------------------------------
園一覧 new
--------------------------------------*/
/* 園カードのgrid */
.en_card_container {
	display: grid;
	grid-template-columns: 1fr 280px;
	grid-template-rows: auto auto auto;
	column-gap: 35px;
	row-gap: 20px;
	font-family: "Noto Sans JP", sans-serif;
	color: #000;
	border: 1px solid #000;
	border-radius: 10px;
	padding: 26px;
	margin-top: 30px;
	box-sizing: border-box;
	position: relative;
}
.en_card_overview {
	grid-column: 1 / 2;
}
.en_card_image {
	grid-column: 2 / 3;
}
.en_card_detail {
	grid-column: 1 / 3;
}
.en_card_cta {
	grid-column: 1 / 3;
}
/* 詳細のgrid */
.en_card_detail {
	display: grid;
	grid-template-columns: 1fr 1fr;
	column-gap: 5px;
	row-gap: 5px;
}
.en_card_detail_row.full {
	grid-column: 1 / 3;
}
.en_card_detail_row.enji {
	grid-column: 1 / 2;
}
.en_name {
	font-size: 24px;
	font-weight: 700;
	line-height: 1.3;
}
.en_address_city {
	font-size: 14px;
	font-weight: 500;
	line-height: 22px;
	color: #555;
	margin-top: 10px;
	position: relative;
	text-indent: 22px;
}
.en_address_city::before {
	content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  top: 0;
  left: 0;
  mask-image: url(../img/renewal/icon-pin.svg);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  background-color: #fe4958;
}
.en_jigyou_name {
	font-size: 13px;
	font-weight: 400;
	line-height: 24px;
	text-align: center;
	display: inline-block;
	padding: 2px 10px;
	background-color: #F5F5F5;
	border-radius: 4px;
	margin-top: 14px;
}
.en_message {
	font-size: 13px;
	font-weight: 700;
	line-height: 23px;
	color: #FE4958;
	margin-top: 14px;
}
.en_card_image img {
	display: block;
	width: 280px;
	height: 186px;
	object-fit: cover;
	border-radius: 6px;
}
.en_card_detail_row {
	display: grid;
	grid-template-columns: 106px 1fr;
	font-size: 13px;
	font-weight: 400;
	line-height: 24px;
}
.en_card_detail_row dt {
	text-align: center;
	color: #fff;
	background-color: #000;
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
	padding: 5px 12px;
}
.en_card_detail_row dd {
	color: #000;
	background-color: #F5F5F5;
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
	padding: 5px 12px;
}
.en_card_cta {
	display: grid;
	grid-template-columns: 1fr 1fr;
	column-gap: 16px;
}
.cta_button {
	font-size: 18px;
	font-weight: 700;
	line-height: 26px;
	padding-top: 14px;
	padding-bottom: 14px;
	border-radius: 6px;
	color: #fff;
	text-align: center;
}
.add_favorite {
	background-color: #5BBCC9;
	background-image: url('../img/renewal/enlist/icon_favorite.svg');
	background-repeat: no-repeat;
	background-position: left 86px top 18px;
	background-size: 24px;
	text-indent: 24px;
}
.pickup_slider .add_favorite{
	background-position: left 60px top 18px;
}
.add_favorite .favorite_text {
	display: inline-block;
}
.add_favorite .favorited_text {
	display: none;
}
.interested_btn {
	background-image: url('../img/renewal/enlist/icon_favorited.svg')!important;
	background-position: left 70px top 16px!important;
}
.pickup_slider .interested_btn{
	background-position: left 44px top 16px!important;
}
.interested_btn .favorite_text {
	display: none!important;
}
.interested_btn .favorited_text {
	display: inline-block!important;
}
.view_detail {
	background-color: #FE4958;
}

/* pickup園 */
.pickup .en_card_container {
	border: 1px solid #FE4958;
	border-bottom-right-radius: 0;
	border-bottom-left-radius: 0;
}
.en_card_pickup_icon,
.en_card_new_icon {
	position: absolute;
	top: -14px;
	right: 10px;
}
/*-------------------
園名
-------------------*/
.enlist_summary_pickup .en_name{
	border-radius: 10px 10px 0 0;
}
.enlist_summary_pickup_in .en_name{
	border-radius: 10px 10px 0 0;
}
.enlist_summary .en_name,
.enlist_summary_pickup .en_name{
	background-color: #F7F6F2;
	border-bottom:solid 1px #D2D2D2;
	padding-top: 15px;
	margin: 0 auto;
	position: relative;
}

.enlist_summary_pickup_in .en_name{
	background-color: #F7F6F2;
	border-bottom:solid 1px #D2D2D2;
	padding-top: 15px;
	margin: 0 auto;
	position: relative;
}

.en_name ul {
  width: 541px;
	display:table;
  table-layout:fixed;
	margin: 0 0 15px 20px;
}

.en_name ul li {
  width:167px;
	display:table-cell;
  vertical-align:middle;
  text-align:left;
}

.en_name .form-icon,
.en_name h3{
	vertical-align:middle;
}
.en_name .form-icon{
	margin:0 15px 5px 15px;
}
.en_name h3{
	font-size:20px;
	font-weight:bold;
	line-height:1.5;
	color:#333333;
	margin: 0 0 10px 20px;
}
.en_name h3 .city-name{
	font-size:16px;
	margin-right: 15px;
}
.en_name h3 a:hover{
	text-decoration:underline;
}

/* 新着園マーク */
.rectuit_list--item_new {
    top: 0;
    right: 0;
    border: 43px solid transparent;
    border-top: 43px solid #fe4958;
    border-right: 43px solid #fe4958;
}

.rectuit_list--item_new,
.rectuit_list--item_new::after {
    position: absolute;
}

.rectuit_list--item_new::after {
    content: "NEW";
    top: -19px;
    right: -50px;
    color: #fff;
    font-size: 95%;
	font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    transform: rotate(45deg);
	letter-spacing: 0.1em;
}

.rectuit_list--item_new,
.rectuit_list--item_new::after {
    position: absolute;
}

/* PICKUPマーク */
.rectuit_list--item_pickup, .rectuit_list--item_pickup::after {
    position: absolute;
}

.rectuit_list--item_pickup{
    top: 0;
    right: 0;
    border: 45px solid transparent;
    /*border-top: 45px solid #4facfe;
	border-right: 45px solid #4facfe;*/
	border-top: 45px solid #5ED86F;
	border-right: 45px solid #5ED86F;
	border-top-right-radius: 10px;
	letter-spacing: 0.09em;
}

.rectuit_list--item_pickup::after {
    content: "オススメ";
    top: -4px;
    right: -76px;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    transform: rotate(45deg);
    width: 100px;
    height: 30px;
}

.rectuit_list--item_pickup:,
.rectuit_list--item_pickup::after {
    position: absolute;
}

/*-------------------
キャッチコピー
-------------------*/
.enlist_summary h4{
	color:#1BABB6;
	font-weight:bold;
	margin:30px 15px 0 15px;
	line-height:1.5;
}
.enlist_summary_pickup h4{
	color : #5ED86F;
	font-weight:bold;
	margin:30px 15px 0 15px;
	line-height:1.5;
}
.enlist_summary_pickup_in h4{
	/*color:#1BABB6;*/
	color : #5ED86F;
	font-weight:bold;
	margin:30px 15px 0 15px;
	line-height:1.5;
}

/*-------------------
代表園
項目
-------------------*/
.summary{
	margin:30px 15px 0 15px;
     position: relative;
}

.summary p,
.summary table{
	float:left;
}
.summary p{
	display:table-cell;
	widht:300px;
	height:220px;
	text-align:center;
	vertical-align:middle;
}
.summary p img{
	width:auto;
	height:auto;
	max-width:275px;
	max-height:220px;
	vertical-align:middle;
}

.summary .prmovie-banner{
    width: 275px;
    height: 180px;
    position: absolute;
    left: 10px;
    top: 232px;
}

.prmovie-banner img{
    width: 100%;
}

.summary table{
	margin-left:10px;
}
.summary table{
	border:solid 1px #D2D2D2;
	width:390px;
	font-size:13px;
}
.summary table th,
.summary table td{
	text-align:left;
	padding:15px;
}

.summary table td{
	background-color: #fff;
}

.summary table tr{
	border-bottom:solid 1px #D2D2D2;
}
.summary table th{
	background-color:#FDFCFA;
	border-right:solid 1px #D2D2D2;
	width:93px;
	padding:15px 0 15px 15px;
}
.summary table th.staff{
	border-left:solid 1px #D2D2D2;
}
/*園一覧画像 トリミング*/
.summary_image{
	overflow: hidden;
	width: 300px;/* トリミングしたい枠の幅 */
	height: 220px;/* トリミングしたい枠の高さ */
	position: relative;
}
.summary_image img{
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 100%;
	height: auto;
}

/*-------------------
コンシェルジュのオススメ
-------------------*/
.concierge {
	background-color: #FFEEEE;
	border: 1px solid #FE4958;
	border-top: none;
	border-bottom-right-radius: 10px;
	border-bottom-left-radius: 10px;
	padding: 14px;
	display: flex;
	justify-content: center;
	align-items: center;
	column-gap: 10px;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 13px;
	font-weight: 700;
	line-height: 20px;
	color: #FE4958;
}

.concierge .concierge_label{
	display: inline-block;
	background-color: #fff;
	padding: 2px 14px;
	margin-bottom: 4px;
	border-radius: 999px;
}

.concierge figure{
	width: 48px;
	flex-shrink: 0;
}

.concierge figure img{
	width: 100%;
	text-align: center;
}

.concierge-catch{
    width: 412px;
    height: 24px;
    color: #FCA201;
    font-weight: bold;
    /*white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;*/
}

.summary_pickup_wrap{
    width: 95%;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
}

.concierge-pickup-txt{
    width: 59%;
    height: 150px;
    font-size: 14px;
    line-height: 25px;
    margin-left: 15px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 6;
}

.summary_pickup_image{
	overflow: hidden;
	width: 230px;/* トリミングしたい枠の幅 */
	height: 149px;/* トリミングしたい枠の高さ */
	position: relative;
}

.summary_pickup_image img{
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 100%;
	height: auto;
}

/*-------------------
slick設定
-------------------*/
.slick-slide{
    margin-right: 1vw!important;
    margin-left: 1vw!important;
	}

/*-------------------
代表園
フェアバナー、気になる・詳細を見るボタン
-------------------*/
.enlist_summary .detail{
	margin-top:20px;
	float:right;
	margin-right:20px;
}
.enlist_summary .detail li{
	float:left;
	margin-right:20px;
}
.enlist_summary .detail li:last-child{
	margin-right:0;
}

/* ピックアップ園 */
.enlist_summary_pickup .detail{
	/*width: 570px;
	margin: 20px auto;*/
	margin-top:20px;
	float:right;
	margin-right:20px;
}
.enlist_summary_pickup_in .detail{
	/*width: 570px;
	margin: 20px auto;*/
	margin-top:20px;
	float:right;
	margin-right:20px;
}

.enlist_summary_pickup .detail li{
	float:left;
	margin-right:20px;
}
.enlist_summary_pickup_in .detail li{
	float:left;
	margin-right:20px;
}

.enlist_summary_pickup .detail li:last-child{
	margin-right:0;
}
.enlist_summary_pickup_in .detail li:last-child{
	margin-right:0;
}

/* ボタン設定 */
.enlist_summary .check_btn_test{
	width: 137px;
}

.enlist_summary_pickup .check_btn_test{
	width: 200px;
}
.enlist_summary_pickup_in .check_btn_test{
	width: 200px;
}

.check_btn_test{
	height: 70px;
	text-align: left;
	background-color: #4CD8E5;
	line-height: 3.7;
	font-weight: bold;
	font-size: 20px;
	color: #fff;
	background-image: url(../img/enlist/interest_icon.png);
	background-repeat: no-repeat;
	background-position: left 15px center;
	border-radius:5px;
	padding-left:75px;
	letter-spacing:2px;
	display:block;
}

.enlist_summary .detail .interest_btn,
.enlist_summary .detail .interested_btn
{
	width: 120px;
}

.enlist_summary_pickup .detail .interest_btn,
.enlist_summary_pickup .detail .interested_btn
{
	/*width: 200px;*/
	width: 120px;
}

.enlist_summary_pickup_in .detail .interest_btn,
.enlist_summary_pickup_in .detail .interested_btn
{
	/*width: 200px;*/
	width: 120px;
}

.detail .interest_btn{
	height: 70px;
	text-align: left;
	background-color: #4CD8E5;
	line-height: 3.7;
	font-weight: bold;
	font-size: 20px;
	color: #fff;
	background-image: url(../img/enlist/interest_icon.png);
	background-repeat: no-repeat;
	background-position: left 15px center;
	border-radius:5px;
	padding-left:75px;
	letter-spacing:2px;
	display:block;
}

.enlist_summary .detail .interest_btn{
	width: 137px;
}

.enlist_summary_pickup .interest_btn{
	/*width: 200px;*/
	width: 137px;
}
.enlist_summary_pickup_in .interest_btn{
	/*width: 200px;*/
	width: 137px;
}

.detail .interested_btn{
	height: 70px;
	text-align: left;
	background-color: #4CD8E5;
	line-height: 3.7;
	font-weight: bold;
	font-size: 20px;
	color: #fff;
	background-image: url(../img/enlist/interested_icon.png);
	background-repeat: no-repeat;
	background-position: left 15px center;
	border-radius:5px;
	padding-left:75px;
	letter-spacing:2px;
	display:block;
}

.enlist_summary .detail_btn{
	width: 150px;
}

.enlist_summary_pickup .detail_btn{
	/*width: 245px;*/
	width: 150px;
}
.enlist_summary_pickup_in .detail_btn{
	/*width: 245px;*/
	width: 150px;
}

.detail_btn{
	height: 70px;
	text-align: left;
	background-color: #FFC801;
	line-height: 3.7;
	font-weight: bold;
	font-size: 20px;
	color: #fff;
	background-image: url(../img/enlist/chevron_wh.png);
	background-repeat: no-repeat;
	background-position: right 13px center;
	border-radius: 5px;
	letter-spacing: 2px;
	display: block;
	padding-left:22px;
}

.enlist_summary .detail_btn_cs{
	width: 150px;
}

.enlist_summary_pickup .detail_btn_cs{
	/*width: 200px;*/
	width: 150px;
}
.enlist_summary_pickup_in .detail_btn_cs{
	/*width: 200px;*/
	width: 150px;
}

.detail_btn_cs{
	height: 70px;
	text-align: left;
	background-color: #ccc;
	line-height: 3.7;
	font-weight: bold;
	font-size: 20px;
	color: #F0F0F0;
	background-image: url(../img/enlist/chevron_wh.png);
	background-repeat: no-repeat;
	background-position: right 13px center;
	border-radius: 5px;
	letter-spacing: 2px;
	display: block;
	padding-left:22px;
}

/*-------------------
姉妹園
項目
-------------------*/
.summary_sister{
	margin:30px 15px 0 15px;
}

.enlist_summary_sister p{
	padding: 15px 0 0 20px;
}

.enlist_summary_sister table{
	border:solid 1px #D2D2D2;
	width:760px;
	font-size:13px;
	margin: 0 auto;
}
.summary_sister table th,
.summary_sister table td{
	text-align:left;
	padding:15px;
}
.summary_sister table tr{
	border-bottom:solid 1px #D2D2D2;
}
.summary_sister table th{
	background-color:#FDFCFA;
	border-right:solid 1px #D2D2D2;
	width:93px;
	padding:15px 0 15px 15px;
}

.summary_sister table th:nth-of-type(2),
.summary_sister table th:nth-of-type(4){
	border-left: solid 1px #D2D2D2;
}

.summary_sister table th.staff{
	border-left:solid 1px #D2D2D2;
}

/*園一覧画像 トリミング*/
.summary_sister .summary_image{
	display: none;
}


/*-------------------
姉妹園
フェアバナー、気になる・詳細を見るボタン
-------------------*/
.enlist_summary_sister .detail{
	margin-top:20px;
	float:right;
	margin-right:20px;
}
.enlist_summary_sister .detail li{
	float:left;
	margin-right:20px;
}
.enlist_summary_sister .detail li:last-child{
	margin-right:0;
}

/* お気に入りボタン */
.enlist_summary_sister .detail .interest_btn{
	width: 137px;
	height: 70px;
	text-align: left;
	background-color: #4CD8E5;
	line-height: 3.7;
	font-weight: bold;
	font-size: 20px;
	color: #fff;
	background-image: url(../img/enlist/interest_icon.png);
	background-repeat: no-repeat;
	background-position: left 15px center;
	border-radius:5px;
	padding-left:75px;
	letter-spacing:2px;
	display:block;
}

/* お気に入り済みボタン */
.enlist_summary_sister .detail .interested_btn{
	width: 190px;
	height: 70px;
	text-align: left;
	background-color: #4CD8E5;
	line-height: 3.7;
	font-weight: bold;
	font-size: 20px;
	color: #fff;
	background-image: url(../img/enlist/interested_icon.png);
	background-repeat: no-repeat;
	background-position: left 15px center;
	border-radius:5px;
	padding-left:75px;
	letter-spacing:2px;
	display:block;
}

/* 詳細を見るボタン */
.enlist_summary_sister .detail_btn{
	width: 190px;
	height: 70px;
	text-align: left;
	background-color: #FFC801;
	line-height: 3.7;
	font-weight: bold;
	font-size: 20px;
	color: #fff;
	background-image: url(../img/enlist/chevron_wh.png);
	background-repeat: no-repeat;
	background-position: right 13px center;
	border-radius: 5px;
	letter-spacing: 2px;
	display: block;
	padding-left:22px;
}

/* 詳細ページがない時のボタン */
.enlist_summary_sister .detail_btn_cs{
	width: 190px;
	height: 70px;
	text-align: left;
	background-color: #ccc;
	line-height: 3.7;
	font-weight: bold;
	font-size: 20px;
	color: #F0F0F0;
	background-image: url(../img/enlist/chevron_wh.png);
	background-repeat: no-repeat;
	background-position: right 13px center;
	border-radius: 5px;
	letter-spacing: 2px;
	display: block;
	padding-left:22px;
}

/*--------------------------------------
サイドバー
--------------------------------------*/
.enlist_sidebar{
	width: 260px;
	float: right;
	margin-right: 20px;
	margin-top: 70px;
	position: static;
}
.registration{
	border:solid 2px #4CD8E5;
	border-radius:8px;
	width:258px;
}
.registration ul{
	padding:20px 18px;
	font-size:14px;
}
.registration ul li{
	margin-bottom: 15px;
	padding-left: 35px;
	line-height: 1.5;
	background-image: url(../img/enlist/check_icon.png);
	background-repeat: no-repeat;
	background-position: left center;
}
.registration ul li:last-child{
	margin-bottom:0;
}
.registration ul li span{
	font-weight:bold;
}
.registration p{
	margin-bottom:18px;
	text-align:center;
}
.bannerlist p{
	padding-top:20px;
}
/*--------------------------------------
フッターバナー一覧
--------------------------------------*/
.footer_banner{
	clear:both;
	background-color: #FFF2C5;
	margin-top:100px;
	padding:30px 0;
}
.footer_banner ul{
	width:1120px;
	margin:0 auto;
}
.footer_banner ul li{
	float:left;
	margin-right:20px;
}
.footer_banner ul li:last-child{
	margin-right:0;
}
