@charset "utf-8";

/*
----------------- 共通のラジオボックス・チェックボックス -----------------
*/

ul.input_box{
	letter-spacing: -0.4em;	
}

ul.input_box li{
	display: inline-block;
	letter-spacing: normal;	
}

ul.input_box li label{
	display: inline-block;
	position: relative;
	padding: 0 0 0 18px;
	letter-spacing: normal;	
}

ul.input_box li label:before{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 12px;
	height: 12px;
	background: #ffffff;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
}

ul.input_box li label:after{
	content: "";
	position: absolute;
	z-index: 2;
	top: 3px;
	left: 3px;
	width: 6px;
	height: 6px;
	background: #262626;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
	display: none;
}

ul.input_box li.active label:after{
	display: block;
}

ul.input_box input{
	display: none;
}

/*
----------------- 共通のセレクトボックス -----------------
*/

.select_box{
	position: relative;	
}

.select_box select{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-ms-filter: "alpha(opacity=0)" ;
	-khtml-opacity: 0;
	filter: alpha(opacity=0);
	-moz-opacity: 0;
	opacity: 0 ;
}

.select_box .select_text{
	padding: 0 10px;
	height: 25px;
	background: #ffffff;
}


#top_weather_visual .select_box{
  width: 120px;
  margin: 30px auto 0 auto;
}

#top_weather_visual .select_box .select_text{
	padding: 7px 13px;
	height: 28px;
	background: #ffffff;
  border: 1px solid #e6e6e6;
  border-radius: 4px;
  font-size: 14px;
  white-space: nowrap;
  text-align: left;
  line-height: 1;
}

#top_weather_visual .select_box .select_text:after{
  content: "";
  position: absolute;
  top: 50%;
  right: 11px;
  width: 5px;
  height: 5px;
  margin: -4px 0 0 0;
  border-right: 1px solid #cec6c6;
  border-bottom: 1px solid #cec6c6;
  transform-origin: 50% 50%;
  transform: rotate(45deg);
}

/*
----------------- 検索ボックス -----------------
*/

.shops_search_box{
	padding: 10px;
	background: #f5f5f5;
	margin: 0 0 30px 0;	
}

.shops_search_box_in{
	display: table;
	width: 100%;
}

.shops_search_box_in .shops_search_box_text{
	display: table-cell;
	vertical-align: middle;
	font-size: 120%;
	text-align: center;
	width: 150px;
}

.shops_search_box_in .shops_search_box_input{
	display: table-cell;
	vertical-align: middle;
}

@media screen and (max-width: 900px) {
	.shops_search_box_in{ display: block; }
	.shops_search_box_in .shops_search_box_text{ display: block; width: auto; text-align: left; margin: 0 0 10px 0;}
	.shops_search_box_in .shops_search_box_input{ display: block;}
}

@media screen and (max-width: 700px) {
	.shops_search_box{ margin: 0;}
	.shops_search_box_in{ display: block; }
	.shops_search_box_in .shops_search_box_text{ display: block; width: auto; text-align: left; margin: 0 0 10px 0;}
	.shops_search_box_in .shops_search_box_input{ display: block;}
}

/* 検索結果ページ */

.shops_search_box{
}

/*
----------------- 共通のバナーエリア -----------------
*/

.banner_zone{
	text-align: center;
	letter-spacing: -0.4em;	
}

.banner_zone li{
	display: inline-block;
	vertical-align: top;
}

.banner_zone li{
	width: 48%;
	margin: 0 4% 0 0;
}

.banner_zone li:nth-child(even){
	margin: 0 0 0 0;
}

.banner_zone li .banner{
	position: relative;
	height: 0;
	padding: 0 0 50% 0;
	overflow: hidden;
}

.banner_zone li .banner figure{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

@media screen and (max-width: 700px) {
	.banner_zone li{
		width: 100%;
		margin: 0 auto 5% auto !important;
		display: block;
		max-width: 400px;
	}
	.banner_zone li:last-child{
		margin-bottom: 0px !important;
	}
}

/*
----------------- 共通のテーブル -----------------
*/

.table{
	display: table;
	width: 100%;	
}

.table .table_tr{
	display: table-row;
}

.table .table_tr .table_th{
	display: table-cell;
	vertical-align: top;
	color: #333333;
	padding: 5px 15px 5px 0;
  word-wrap: break-word;
  word-break: break-all;
}

.table .table_tr .table_td{
	font-size: 130%;
	line-height: 1.85;
	color: #333333;
	display: table-cell;
	vertical-align: top;
  word-wrap: break-word;
  word-break: break-all;
}

.table .table_big_text{
	font-size: 170%;
	font-weight: normal;
}

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

@media screen and (max-width: 700px) {
	.table .table_tr{ display: block; }
	.table .table_tr .table_th{ display: block; width: 100% !important; padding: 0; }
	.table .table_tr .table_td{ display: block; width: 100% !important; padding: 0 0 5px 0;}
}

/* profileのページ */

.table.profile .table_tr .table_th{
	font-size: 110%;
	line-height: 1.85;
	color: #999999;
	width: 100px;
	padding-top: 6px;
}

.table.profile .table_tr .table_td{
	padding: 5px 0;
}

.table.profile .table_tr .table_td *{
	line-height: 1.85;
}

@media screen and (max-width: 700px) {
	.table.profile .table_tr .table_th{ padding-top: 0px;}
	.table.profile .table_tr .table_td{ padding: 0 0 5px 0; }	
}

/* aboutのページ */


.table.about .table_tr .table_th{
	font-size: 130%;
	line-height: 1.85;
	width: 115px;
	color: #000000;
}

.table.about .table_tr .table_td{
	font-size: 130%;
	line-height: 1.85;	
}

/* 広告掲載について */

.table.contact .table_tr .table_th{
	font-size: 130%;
	line-height: 1.85;
	width: 160px;
	padding-top: 20px;
}
.table.contact .table_tr .table_td{
	padding-bottom: 20px;
}

.action-confirm .table.contact .table_tr .table_th{
	padding: 10px !important;
	height: auto !important;
	line-height: 1.6 !important;
}
.action-confirm .table.contact .table_tr .table_th .contact_title{
	line-height: 1.6 !important;
}
.action-confirm .table.contact .table_tr .table_td{
	padding: 10px !important;
	height: auto !important;
	line-height: 1.6 !important;
}

.action-confirm .table.contact .table_tr .table_th .contact_title span.check{
	top: 3px !important;
}

/* 店舗詳細 */

.table.shop_detail .table_tr .table_th{
	font-size: 120%;
	line-height: 2;
	width: 115px;
	padding: 0 0 3px 0;
	color: #999999;
}

.table.shop_detail .table_tr .table_td{
	font-size: 120%;
	line-height: 2;
	padding: 0 0 3px 0;
}

/* .white_box */

.white_box{
	margin: 30px 0 0 0;
	padding: 26px 26px;
	background: #ffffff;
	border: 1px solid #e6e6e6;	
}

/* .gray_box */

.gray_box{
	margin: 30px 0 0 0;
	padding: 26px 26px;
	background: #f5f5f5;	
}

/* .contact_title */

.contact_title{
	position: relative;
	padding: 0 30px 0 0;
}

.contact_title span.check{
	content: "必須";
	position: absolute;
	display: block;
	top: -3px;
	right: 0;
	background: #333333;
	width: 28px;
	height: 15px;
	color: #ffffff;
	font-size: 11px;
	line-height: 16px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	text-align: center;
}

.en .contact_title span.check{
	font-size: 10px;
	width: 50px;
}

#page_advertisement .align-center{
	text-align: center;
	margin: 30px 0 0 0;	
}

#page_advertisement .align-center input[type="submit"]{
	vertical-align: top;
	display: inline-block;
	background: #000000;
	color: #ffffff;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	height: 40px;
	padding: 15px 30px;
	margin: 0 10px;
	border: none;
	cursor: pointer;
	width: 200px;
	text-decoration: none !important;
	transition: all 0.4s ease 0s;
	-webkit-transition: all 0.4s ease 0s;
	-moz-transition: all 0.4s ease 0s;
	-o-transition: all 0.4s ease 0s;
	-ms-transition: all 0.4s ease 0s;
}

#page_advertisement .align-center a{
	vertical-align: top;
	display: inline-block;
	background: #eeeeee;
	color: #000000;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	height: 40px;
	padding: 15px 30px;
	margin: 0 10px;
	border: none;
	cursor: pointer;
	width: 200px;
	text-decoration: none !important;
	transition: all 0.4s ease 0s;
	-webkit-transition: all 0.4s ease 0s;
	-moz-transition: all 0.4s ease 0s;
	-o-transition: all 0.4s ease 0s;
	-ms-transition: all 0.4s ease 0s;
}

#page_advertisement .align-center input[type="submit"]:hover,
#page_advertisement .align-center a:hover{
	-ms-filter: "alpha(opacity=70)" ;
	-khtml-opacity: 0.7;
	filter: alpha(opacity=70);
	-moz-opacity: 0.7;
	opacity: 0.7;
}

/* .profile_link_text */

.profile_link_text{
  /*margin-bottom: 10px;*/
  line-height: 2;
}

/*
----------------- ul.page_cms_sns -----------------
*/

ul.page_cms_sns{
	letter-spacing: -0.4em;
	text-align: center;
}

.table.profile ul.page_cms_sns{
  text-align: left;
	margin: 5px 0 0 0;
}

ul.page_cms_sns li{
	display: inline-block;
	letter-spacing: normal;
	vertical-align: top;
	margin: 0 10px;
}

.table.profile ul.page_cms_sns li:first-child{
  margin-left: 0;
}

ul.page_cms_sns li a{
	display: block;
	width: 13px;
	height: 14px;
	white-space: nowrap;
	text-indent: 100%;
	overflow: hidden;
}

ul.page_cms_sns li.facebook a{
	background: url(../img/template/page_cms_sns_facebook.png) no-repeat;
	background-size: 13px 14px;	
}

ul.page_cms_sns li.twitter a{
	background: url(../img/template/page_cms_sns_twitter.png) no-repeat;
	background-size: 13px 14px;		
}

ul.page_cms_sns li.google a{
	background: url(../img/template/page_cms_sns_google.png) no-repeat;
	background-size: 13px 14px;
}

ul.page_cms_sns li.instagram a{
	background: url(../img/template/page_cms_sns_instagram.png) no-repeat;
	background-size: 13px 14px;	
}
ul.page_cms_sns li.pinterest a{
	background: url(../img/template/page_cms_sns_pinterest.png) no-repeat;
	background-size: 13px 14px;		
}

.cms_shop_detail_zone .page_cms_sns_wrap{
	padding: 15px 0;
	margin: 0 0 0 -13px;
}

.cms_shop_detail_zone ul.page_cms_sns{
	text-align: left;	
}

/* .trend_input */

.trend_input{
	margin: 30px 0 0 0;	
}

/* .cms_input_area */

.tribe_chart_wrap p{
	font-size: 110%;
	line-height: 1;
	margin: 0 0 17px 0;	
}

.tribe_chart{
	position: relative;
	width: 300px;
	height: 300px;
	z-index: 1;
}

.tribe_point_wrap{
	position: absolute;
	z-index: 2;
	top: 46px;
	left: 46px;
	width: 208px;
	height: 208px;
}

.tribe_point{
	position: absolute;
	background: rgba(239,0,3,0.55);
	width: 12px;
	height: 12px;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
	top: 0;
	left: 0;
	margin: -6px 0 0 -6px;
}

.point_top0{
	top: 0;	
}

/* .page_writer */

.page_writer{
	margin: 20px 0;
	padding: 22px;
	border: 1px solid #e5e5e5;
	background: #f5f5f5;
}

.page_writer_head{
	position: relative;
	min-height: 95px;
	padding: 0 0 15px 100px;
	border-bottom: 1px solid #e6e6e6;	
}

.page_writer_content{
	padding: 15px 0 0 0;	
}

.page_writer_url{
	margin: 0 0 20px 0;	
}

.page_writer_url dl{
	display: table;
	width: 100%;
}

.page_writer_url dl dt{
	display: table-cell;
	vertical-align: top;
	width: 40px;
	font-size: 110%;
}

.page_writer_url dl dd{
	display: table-cell;
	vertical-align: top;
	font-size: 110%;
}

.page_writer_text p{
	font-size: 110%;
	line-height: 1.64;
	color: #999999;
}

.page_writer_text{
	margin: 0 0 20px 0;	
}

.page_writer_head_img{
	position: absolute;
	top: 0;
	left: 0;
	width: 80px;
	height: 80px;
	border: 2px solid #ffffff;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
	overflow: hidden;
}

.page_writer_head_img img{
	width: 100%;
	height: 100%;
}

.page_writer .text01{
	font-size: 110%;
	line-height: 1.6;
	color: #999999;
	margin: 0 0 4px 0;
}

.page_writer .text02{
	font-size: 140%;
	line-height: 1.6;
	color: #333333;
	margin: 0 0 4px 0;
}

.page_writer .text03{
	font-size: 110%;
	line-height: 1.6;
	color: #999999;
	margin: 0 0 4px 0;
}

.page_writer .text04{
	font-size: 120%;
	line-height: 1.5;
	color: #333333;
}

/* ------------------------ .profile_wrap ------------------------ */

.profile_wrap{
		
}

.profile_wrap .profile_image_wrap{
	float: left;
	width: 52%;	
}

.profile_wrap .profile_text_wrap{
	float: right;
	width: 44%;	
}

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

@media screen and (max-width: 700px) {
	.profile_wrap .profile_image_wrap{
		float: none;
		width: auto;	
	}
	
	.profile_wrap .profile_text_wrap{
		margin: 20px auto 0 auto;
		float: none;
		width: auto;
		/*max-width: 400px;*/
	}
}

/* ------------------------ .page_head ------------------------ */

.page_head{
	position: relative;
	padding: 0 332px 0 0;
	min-height: 522px;
}

.page_visual_temp .page_head{
	padding: 0 332px 0 0;	
}

.page_head_content{
}

@media screen and (max-width:900px) {
	.page_head{ padding: 0; min-height: 0;}
}

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

/* .page_head_sub */

.page_head_sub{
	position: absolute;
	top: 0;
	right: 0;
	width: 300px;
}

@media screen and (max-width: 900px) {
	.page_head_sub{ position:static; width: auto; margin: 30px 0 -20px 0;}
}

@media screen and (max-width: 900px) {
	/*.page_head_sub{ min-height: 0; position: static; width: 100%; max-width: 400px; margin: 0 auto;}*/
	.page_head_sub{ min-height: 0; position: static; width: 100%; margin: 0 auto;}
}

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

.page_ranking{
	vertical-align: top;
	margin: 40px 0 10px 0;	
}

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

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

.page_recent_check{
	vertical-align: top;
	margin: 35px 0 35px 0;
}


.page_recent_check .cms_list_wrap{
	/*max-width: 260px;*/
	margin: 0;
}

.page_recent_check .cms_list_text_wrap{
	margin-top: 8px;
}

.page_recent_check .cms_list_title{
	margin-bottom: 0;
}

.page_recent_check_title{
	font-size: 130%;
	line-height: 1;
	padding: 0 0 10px 0;
	margin: 0 0 15px 0;
	border-bottom: 1px solid #e6e6e6;
	text-align: center;
}

.past_style_list .cms_list_wrap{ margin: 0;}

/* .page_main */

.page_main{
	margin: 25px 0 0 0;	
}

@media screen and (max-width: 900px) {
	.page_main{
		margin: 50px 0 0 0;	
	}
}

@media screen and (max-width: 700px) {
	.page_main{
		margin: 25px 0 0 0;	
	}
}

/*.page_parts  */

.page_parts{
	margin: 22px 0 40px 0;	
}

.page_parts p{
	font-size: 130%;
	line-height: 1.85;	
}

/*
--------------------------------- 詳細ページ用CSS ---------------------------------
*/

/* .cms_input_head */

.cms_input_head{
	padding: 0 0 13px 0;
	margin: 0 0 17px 0;
	border-bottom: 1px solid #e6e6e6;
}

.cms_input_head .cms_input_time{
	font-size: 110%;
	line-height: 1;
	color: #999999;
	margin: 0 0 15px 0;
}

/* 日付横にPRが付く場合 */

.cms_input_head.PR .cms_input_time{
	padding: 0 0 0 25px;	
}

.cms_input_head.PR .cms_input_time:after{
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 17px;
	height: 10px;
	background: url(../img/template/cms_list_pr.png) no-repeat;
	background-size: 17px 10px;
}

.cms_input_head.AD .cms_input_time{
	padding: 0 0 0 25px;	
}

.cms_input_head.AD .cms_input_time:after{
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 19px;
	height: 10px;
	background: url(../img/template/cms_list_ad.png) no-repeat;
	background-size: 19px 10px;
}

.cms_input_head .cms_input_title{
	font-size: 240%;
	line-height: 1.42;
	margin: 0 0 15px 0;
}

.cms_input_head .cms_input_category li{
	line-height: 1;
	float: left;
	margin: 0 22px 0 0;
}

@media screen and (max-width: 700px) {
	.cms_input_head .cms_input_category li{ margin-bottom: 10px;}
}

.cms_input_head .cms_input_category li strong{
	font-size: 115%;
	font-weight: normal;
	color: #000000;
	margin: 0 15px 0 0;
}

.cms_input_head .cms_input_category li span{
	font-size: 115%;
	color: #999999;
	margin: 0 15px 0 0;
}

.cms_input_head .cms_input_category li span a{
	color: #999999;
}

.cms_input_head .cms_input_category li span a:hover{
	color: #000000;
}

.cms_input_head .cms_input_category li span a.active{
	color: #000000;
}

@media screen and (max-width: 700px) {
	.cms_input_head .cms_input_category li strong{ display: block; margin: 0 0 10px 0; }
	.cms_input_head .cms_input_title{ font-size: 180%; }
}

/* .cms_input_wrap */

.cms_input_wrap{
	padding: 0 340px 0 0;
	position: relative;	
}

@media screen and (max-width: 900px) {
	.cms_input_wrap{ padding: 0;}
}

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

/* .cms_input_main */

.cms_input_main{
	
}

.cms_input_sub{
	width: 300px;
	position: absolute;
	top: 0;
	right: 0;	
}

@media screen and (max-width: 900px) {
	.cms_input_main{
		margin: 0 0 0 0;
		min-height: 0px;
	}
	.cms_input_sub{
		position: static;
		width: auto;
		margin: 25px 0 0 0;
	}
	
	/*.cms_input_sub .ad_common_wrap{
		margin: 0 10px;
	}*/
}

@media screen and (max-width: 700px) {
	.cms_input_main{
		float: none;
		width: auto;
		min-height: 0 !important;
	}
	.cms_input_sub{
		float: none;
		position: static;
		margin: 45px auto 0 auto;
		/*width: 300px;*/
		width: auto;
	}
}

/* .cms_input_area */

.cms_input_area:after{
	content: "";
	display: block;
	clear: both;
	height: 0;
	visibility: hidden;	
}

/*.cms_input_area *{*/
.cms_input_area{
	font-size: 14px;
	line-height: 1.6;	
}

.cms_input_area *{
	line-height: inherit;
}

.cms_input_area table{
	width: 100% !important;	
}

.cms_input_area.adtype{
	-ms-filter: "alpha(opacity=0)" ;
	-khtml-opacity: 0;
	filter: alpha(opacity=0);
	-moz-opacity: 0;
	opacity: 0 ;
	max-width: 900px;
	margin: 0 auto;
}

.cms_input_area.adtype.active{
	-ms-filter: "alpha(opacity=100)" ;
	-khtml-opacity: 1;
	filter: alpha(opacity=100);
	-moz-opacity: 1;
	opacity: 1;
}

.cms_input_area.adlead{
  -ms-filter: "alpha(opacity=0)" ;
	-khtml-opacity: 0;
	filter: alpha(opacity=0);
	-moz-opacity: 0;
	opacity: 0 ;
}

.cms_input_area.adlead.active{
	-ms-filter: "alpha(opacity=100)" ;
	-khtml-opacity: 1;
	filter: alpha(opacity=100);
	-moz-opacity: 1;
	opacity: 1;
}

.trend_iframe_wrap{
	-ms-filter: "alpha(opacity=0)" ;
	-khtml-opacity: 0;
	filter: alpha(opacity=0);
	-moz-opacity: 0;
	opacity: 0 ;
	max-width: 900px;
	margin: 0 auto;
	height: 900px;
	width: 100%;
}

.trend_iframe{
	width: 900px;
	min-height: 900px;
	margin: 0 auto;
	border: none;
	-ms-filter: "alpha(opacity=0)" ;
	-khtml-opacity: 0;
	filter: alpha(opacity=0);
	-moz-opacity: 0;
	opacity: 0 ; 	
}

.trend_iframe.active{
	-ms-filter: "alpha(opacity=100)" ;
	-khtml-opacity: 1;
	filter: alpha(opacity=100);
	-moz-opacity: 1;
	opacity: 1;
}

.cms_input_area.adtype{
	/*-ms-filter: "alpha(opacity=0)" ;
	-khtml-opacity: 0;
	filter: alpha(opacity=0);
	-moz-opacity: 0;
	opacity: 0 ; */
}

.cms_input_area.adtype.active{
	-ms-filter: "alpha(opacity=100)" ;
	-khtml-opacity: 1;
	filter: alpha(opacity=100);
	-moz-opacity: 1;
	opacity: 1;
}

.cms_input_area.adtype.iframe_area{
	-ms-filter: "alpha(opacity=100)" ;
	-khtml-opacity: 1;
	filter: alpha(opacity=100);
	-moz-opacity: 1;
	opacity: 1;
}

.android .trend_iframe{
	width: 100% !important;
}

.trend_iframe_wrap.active{
	-ms-filter: "alpha(opacity=100)" ;
	-khtml-opacity: 1;
	filter: alpha(opacity=100);
	-moz-opacity: 1;
	opacity: 1;
}

.cms_input_area iframe{
	max-width: 100%;
}

.cms_input_area h1{
	font-size: 17px;
	padding: 0 0 10px 0;
	border-bottom: 4px solid #e6e6e6;
}

.cms_input_area h2{
	font-size: 17px;
	padding: 0 0 6px 0;
	border-bottom: 1px solid #e6e6e6;
}

.cms_input_area h3{
	font-size: 17px;
	background: #f5f5f5;
	padding: 15px 10px 10px 10px;
	border-bottom: 1px solid #e6e6e6;
}

.cms_input_area h4{
	font-size: 17px;
	position: relative;
	padding: 3px 0 0 10px;
	border-left: 4px solid #333333;
}

.cms_input_area h5{
	font-size: 17px;
	padding: 0 0 0 20px;
	background: url(../img/template/cms_input_h5.png) no-repeat left 7px;
	background-size: 12px 12px;
}

.cms_input_area h6{
	font-size: 17px;
	padding: 0 0 0 20px;
	background: url(../img/template/cms_input_h6.png) no-repeat left 7px;
	background-size: 12px 12px;
}

.cms_input_area a{
	color: #999999;	
}

.cms_input_area ul li{
	font-size: 13px;
	padding: 0 0 0 12px;
	background: url(../img/template/cms_input_icon_list.png) no-repeat left 9px;
	background-size: 4px 4px;	
}

.cms_input_area .icon_link_small{
	font-size: 13px;
	display: inline-block;
	position: relative;
	vertical-align: top;
	padding: 0 0 0 13px;
	background: url(../img/template/cms_input_icon_link_small.png) no-repeat left 8px;
	background-size: 5px 6px;
}

.cms_input_area .icon_link_big{
	display: inline-block;
	position: relative;
	vertical-align: top;
	padding: 0 0 0 20px;
	background: url(../img/template/cms_input_icon_link_big.png) no-repeat left 4px;
	background-size: 15px 15px;
}

.cms_input_area .icon_pdf_small{
	font-size: 13px;
	display: inline-block;
	position: relative;
	vertical-align: top;
	padding: 0 0 0 30px;
	background: url(../img/template/cms_input_icon_pdf_small.png) no-repeat left 3px;
	background-size: 23px 12px;
}

.cms_input_area .icon_pdf_big{
	display: inline-block;
	position: relative;
	vertical-align: top;
	padding: 0 0 0 36px;
	background: url(../img/template/cms_input_icon_pdf_big.png) no-repeat left 3px;
	background-size: 27px 13px;
}

.cms_input_area .icon_word_small{
	font-size: 13px;
	display: inline-block;
	position: relative;
	vertical-align: top;
	padding: 0 0 0 25px;
	background: url(../img/template/cms_input_icon_word_small.png) no-repeat left 1px;
	background-size: 16px 16px;
}

.cms_input_area .icon_word_big{
	display: inline-block;
	position: relative;
	vertical-align: top;
	padding: 0 0 0 28px;
	background: url(../img/template/cms_input_icon_word_big.png) no-repeat left 1px;
	background-size: 18px 18px;
}

.cms_input_area .icon_link_brank_small{
	font-size: 13px;
	display: inline-block;
	position: relative;
	vertical-align: top;
	padding: 0 0 0 28px;
	background: url(../img/template/cms_input_icon_link_brank_small.png) no-repeat left 1px;
	background-size: 14px 14px;
}

.cms_input_area .icon_link_brank_big{
	display: inline-block;
	position: relative;
	vertical-align: top;
	padding: 0 0 0 28px;
	background: url(../img/template/cms_input_icon_link_brank_big.png) no-repeat left 4px;
	background-size: 15px 15px;
}

.cms_input_area .icon_download_small{
	font-size: 13px;
	display: inline-block;
	position: relative;
	vertical-align: top;
	padding: 0 0 0 28px;
	background: url(../img/template/cms_input_link_icon_download_small.png) no-repeat left 1px;
	background-size: 15px 16px;
}

.cms_input_area .icon_download_big{
	display: inline-block;
	position: relative;
	vertical-align: top;
	padding: 0 0 0 28px;
	background: url(../img/template/cms_input_link_icon_download_big.png) no-repeat left 1px;
	background-size: 17px 18px;
}

.cms_input_area table{
		
}

.cms_input_area table th{
	padding: 10px 15px;
}

.cms_input_area table td{
	padding: 10px 15px;
}

.cms_input_area table thead th{
}

.cms_input_area table.border{
	border-top: 1px solid #e6e6e6;
	border-left: 1px solid #e6e6e6;
}

.cms_input_area table.border td{
	border-right: 1px solid #e6e6e6;
	border-bottom: 1px solid #e6e6e6;
}

.cms_input_area table.border th{
	background: #f5f5f5;
	border-right: 1px solid #e6e6e6;
	border-bottom: 1px solid #e6e6e6;
}

.cms_input_area table.border thead th{
	background: #999999;
	color: #ffffff;
}


.cms_image_table div{
	width: 48%;
	margin: 0 0 30px 0;
}

.cms_image_table div img{
	display: block;
	width: 100%;
	height: auto;
	margin: 0 0 10px 0;
}

.cms_image_table div p{
	font-size: 11px;
	line-height: 15px;
}

.cms_image_table div.left{
	clear: left;
	float: left;
}

.cms_image_table div.right{
	clear: right;
	float: right;
}

.cms_image_table:after{
	content: "";
	display: block;
	clear: both;
	height: 0;
	visibility: hidden;	
}

/* 
------------------------------ 店舗 詳細 ------------------------------
*/

.cms_shop_detail_zone .gray_box{
	margin-bottom: 0;	
}

.cms_shop_detail_wrap{
	position: relative;
	padding: 0 0 0 42%;
}

.cms_shop_detail_image_wrap{
	position: absolute;
	top: 0;
	left: 0;
	/*width: 240px;*/
  width: 37%;
}

.cms_shop_detail_title{
	font-size: 160%;
	margin: 0 0 20px 0;
}

.cms_shop_detail_title small{
	display: inline-block;
	vertical-align: top;
	font-size: 75%;
	margin: 2px 0 0 5px;
}

.cms_shop_detail_zone{
	padding: 30px 0 0 0;
}

.cms_shop_detail_zone .gray_box{
	margin: 0;
}

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

@media screen and (max-width: 900px) {
	.cms_shop_detail_wrap{ padding: 0;}
	.cms_shop_detail_image_wrap{ position: static; margin: 0 0 20px 0; width: 100%;}
	.cms_shop_detail_zone{ padding: 30px 0 0 0; clear: both; }
	.cms_shop_detail_title small{ margin: 10px 0 0 0; display: block; }
}

@media screen and (max-width: 700px) {
	.cms_shop_detail_wrap{ padding: 0;}
	.cms_shop_detail_image_wrap{ position: static; width: 100%; margin: 0 0 15px 0;}
}

ul.profile_date{
	display: inline-block;
	margin: 10px 0 40px 0;	
}

ul.profile_date li{
	display: inline-block;
	color: #999999;
	font-size: 120%;
	margin: 0 10px 0 0;
}

ul.profile_date li h3{
	display: inline-block;
	margin: 0 10px 0 0;
}

ul.profile_date li p{
	display: inline-block;
}

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

@media screen and (max-width: 700px) {
	ul.profile_date{ margin-bottom: 20px;}
	.cms_input_area table{ display: block !important; width: 100% !important; height: auto !important;}
	.cms_input_area table tbody{display: block !important; width: 100% !important; height: auto !important;}
	.cms_input_area table tr{ display: block !important; width: 100% !important; text-align: center; height: auto !important;}
	.cms_input_area table th{ display: inline-block !important;text-align: center; width: 100% !important; padding: 0px 0px !important; margin-bottom: 10px !important; height: auto !important;}
	.cms_input_area table td{ display: inline-block !important;text-align: center; width: 100% !important; padding: 0px 0px !important; margin-bottom: 10px !important; height: auto !important;}
}

@media screen and (max-width: 900px) {
	#page_shops_detail .cms_input_sub{
		width: 300px;
		position: absolute;
		top: 0;
		right: 0;
		margin: 0;
	}
	
	#page_shops_detail .cms_input_main{
		margin: 0 340px 0 0;
	}
}
@media screen and (max-width: 900px) {
#page_shops_detail .cms_input_sub{
	float: none;
	position: static;
	margin: 45px auto 0 auto;
	/*width: 300px;*/
	width: auto;
}
#page_shops_detail .cms_input_main{
	margin: 0 0 0 0;
}
}