@charset "UTF-8";

/*---------------------------------
クリアフィックス
--------------------------------*/
.clearfix:after {  
  content: ".";   
  display: block;   
  height: 0;   
  clear: both;   
  visibility: hidden;  
}  

.clearfix { display: inline-table; }  
  
/* Hides from IE-mac \*/  
* html .clearfix { height: 1%; }  
.clearfix { display: block; }  
/* End hide from IE-mac */ 


/*---------------------------------
リンク画像ロールオーバー半透明
--------------------------------*/
a:hover img{
    opacity:0.5;
    -moz-opacity:0.5;
    filter:alpha(opacity = 50);
}

/*---------------------------------
ボディ文字、背景指定
--------------------------------*/
body {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	color: #867268;
}

@media(max-width:640px){
html {
	font: normal normal normal 62.5%/1 "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	color: #867268;
	}
body {
	margin: 0;
	padding: 0;
	background: #fff;
	/*position: relative;*/
	text-align: left;
	-webkit-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;/* Safari文字太さ調整 */
}
}


/*---------------------------------
ヘッダー部分
--------------------------------*/
#header{
	width: 100%;
	min-width: 1000px;
}

#header #title{
	height: 130px;
	width: 1000px;
	margin-right: auto;
	margin-left: auto;
	position: relative;
}

#header #title p{
	font-size: 12px;
	color: #333;
	float: left;
	display: block;
}

#header #title h1{
	font-size: 12px;
	color: #333;
	float: left;
	display: block;
	font-weight: bold;
}

#header #title img.logo{
	float: left;
	clear: both;
}

@media(max-width:640px){
#header{
	height: auto;
	width: 100%;
	min-width: 100%;
	overflow: hidden;
}

#header #title{
	height: auto;
	width: 60%;
	text-align: center;
    margin-left: 0;
}

#header #title p{
	font-size: 1rem;
	line-height: 1rem;
	color: #333;
	float: none;
	display: block;
}

#header #title h1{
	font-size: 1.2rem;
	line-height: 1.2rem;
	color: #333;
	float: none;
	display: block;
	font-weight: bold;
	margin-left: 0;
}

#header #title img.logo{
	height: auto;
	width: 40vw;
	float: none;
}
}


/*---------------------------------
グローバルメニュー
--------------------------------*/
#gmenu_box{
	width: 691px;
	height: 60px;
	float: right;
	margin-top: 35px;
}

#gmenu_box ul{
	list-style-type: none;
}  

#gmenu_box li{
	float: left;
} 

@media(max-width:640px){
	#gmenu_box{
	display: none;
}
} 


/*---------------------------------
グローバル ロールオーバー
--------------------------------*/
#gmenu1 a{
	cursor: pointer;
	display: block;
	width: 78px;
	height: 60px;
	border: none;
	text-indent: -9999px;
	background-image: url(../img/top/menu01.gif);
	background-repeat: no-repeat;
	background-position: 0 0;
}
#gmenu1 a:hover{
	background: url(../img/top/menu01.gif) no-repeat 0 -60px;
}

#gmenu2 a{
	cursor: pointer;
	display: block;
	width: 145px;
	height: 60px;
	border: none;
	text-indent: -9999px;
	background-image: url(../img/top/menu02.gif);
	background-repeat: no-repeat;
	background-position: 0 0;
}
#gmenu2 a:hover{
	background: url(../img/top/menu02.gif) no-repeat 0 -60px;
}

#gmenu3 a{
	cursor: pointer;
	display: block;
	width: 80px;
	height: 60px;
	border: none;
	text-indent: -9999px;
	background-image: url(../img/top/menu03.gif);
	background-repeat: no-repeat;
	background-position: 0 0;
}
#gmenu3 a:hover{
	background: url(../img/top/menu03.gif) no-repeat 0 -60px;
}

#gmenu4 a{
	cursor: pointer;
	display: block;
	width: 130px;
	height: 60px;
	border: none;
	text-indent: -9999px;
	background-image: url(../img/top/menu04.gif);
	background-repeat: no-repeat;
	background-position: 0 0;
}
#gmenu4 a:hover{
	background: url(../img/top/menu04.gif) no-repeat 0 -60px;
}

#gmenu5 a{
	cursor: pointer;
	display: block;
	width: 178px;
	height: 60px;
	border: none;
	text-indent: -9999px;
	background-image: url(../img/top/menu05.gif);
	background-repeat: no-repeat;
	background-position: 0 0;
}
#gmenu5 a:hover{
	background: url(../img/top/menu05.gif) no-repeat 0 -60px;
}

#gmenu6 a{
	cursor: pointer;
	display: block;
	width: 80px;
	height: 60px;
	border: none;
	text-indent: -9999px;
	background-image: url(../img/top/menu06.gif);
	background-repeat: no-repeat;
	background-position: 0 0;
}
#gmenu6 a:hover{
	background: url(../img/top/menu06.gif) no-repeat 0 -60px;
}



/*---------------------------------
パンくずリスト
--------------------------------*/

#topicpath {
	width: 960px;
	color: #666;
	margin-top: 10px;
	margin-left: auto;
	margin-right: auto;
}

#topicpath ul li {
	/* liを横並び＆ブレットを消す */
	display: inline;
	list-style-type: none;
	font-size: 10px;
}
#topicpath ul li:before {
	/* liの後に記号追加 */
	content:" > ";
}
#topicpath ul li:first-child:before {
    /* 最初のliだけcontentを消す */
    content:"";
}



/*---------------------------------
TOPスライド画像
--------------------------------*/
#slide_box{
	width: 1200px;
	margin-right: auto;
	margin-left: auto;
	margin-top: 20px;
}

@media(max-width:640px){
#slide_box{
	width: 100%;
	height: auto;
	overflow: hidden;
	margin-top: 0%;
}
#slide_box img{
	width: 100%;
	height: auto;
}
}

/*---------------------------------
ミドルボックス
--------------------------------*/
#middle{
	width: 1200px;
	margin-right: auto;
	margin-left: auto;
	font-size: 14px;
	line-height: 1.8em;
}
@media(max-width:640px){
#middle{
	width: 100%;
	height: auto;
	margin-right: 0;
	margin-left: 0;
	font-size: 1.4rem;
	line-height: 1.6em;
	overflow: hidden;
}
} 

/*---------------------------------
コンテンツボックス
--------------------------------*/

.contents_box{
	width: 1000px;
	margin-right: auto;
	margin-left: auto;
	padding-right: 100px;
	padding-left: 100px;
}

.contents_box_color{
	width: 1000px;
	margin-right: auto;
	margin-left: auto;
	padding-right: 100px;
	padding-left: 100px;
	background-color: #f2f7e0;
}

@media(max-width:640px){
.contents_box{
	width: 96%;
	height: auto;
	margin-right: 0;
	margin-left: 0;
	padding-right: 2%;
	padding-left: 2%;
	overflow: hidden;
}
.contents_box img{
	width: 100%;
	height: auto;
}	
.contents_box .tx_center{
	text-align: left;
}
.contents_box .pt40{
	padding-top: 5%;
}
.contents_box .mt30{
	margin-top: 1%;
}

.contents_box_color{
	width: 96%;
	height: auto;
	margin-right: 0;
	margin-left: 0;
	padding-right: 2%;
	padding-left: 2%;
	background-color: #f2f7e0;
	overflow: hidden;
}

.contents_box_color img{
	width: 100%;
	height: auto;
}	
.contents_box_color .tx_center{
	text-align: left;
}
.contents_box_color .pt40{
	padding-top: 5%;
}
.contents_box_color .mt30{
	margin-top: 1%;
}
}

/*---------------------------------
ページトップへ
--------------------------------*/
#to_the_top{
	position:relative;
    width:100%;
    max-width:1000px;
    height:0;
    margin:0 auto;
}

#to_the_top a{
	position: fixed;
    bottom: 80px;
    left:auto;
    display: block;
	height: 44px;
	width: 44px;
	margin-left:956px;
}
@media(max-width:640px){
	#to_the_top{
	position: relative;
	width: 100%;
	max-width: 100%;
	height: 0;
	margin: 0;
	overflow: hidden;
}

#to_the_top a{
	position: fixed;
	bottom: 8%;
	display: block;
	height: 44px;
	width: 44px;
	margin-left: 0;
	right: 5%;
	opacity: 0.7;
}
}

/*---------------------------------
フッター
--------------------------------*/
#footer{
	color: #ffffff;
	width: 100%;
	min-width: 1000px;
	background-color: #77c587;
	margin-top: 80px;
}

#footer #menu_box{
	height: 60px;
	width: 1000px;
	margin-left: auto;
	margin-right: auto;
}

#footer #menu_box p {
	color: #ffffff;
	font-size: 12px;
	line-height: 1.4em;
	text-align: right;
	padding-top: 20px;
}

#footer #menu_box ul{
	font-size: 12px;
	float: left;
	margin-top: 20px;
}

#footer #menu_box li{
	display: inline;
	list-style-position: inside;
	padding-left: 10px;
	padding-top: 3px;
}

#footer #menu_box a{
	color: #ffffff;
	text-decoration: none;
}
#footer #menu_box a:hover{
	color: #ffcccc;
}
@media(max-width:640px){
#footer{
	width: 100%;
	height: auto;
	min-width: 100%;
	color: #ffffff;
	background-color: #77c587;
	margin-top: 5%;
	overflow: hidden;
}

#footer #menu_box{
	height: auto;
	width: 100%;
	margin-left: 0;
	margin-right: 0;
	text-align: center;
	padding: 2%;
}

#footer #menu_box p {
	color: #ffffff;
	font-size: 1.2rem;
	line-height: 1.4rem;
	text-align: center;
	padding: 1% 0 1% 0;
}

#footer #menu_box ul{
	font-size: 1.2rem;
	float: none;
	margin-top: 0;
}

#footer #menu_box li{
	display: inline;
	list-style-position: inside;
	padding-left: 10px;
	padding-top: 3px;
}

#footer #menu_box a{
	color: #ffffff;
	text-decoration: none;
}
#footer #menu_box a:hover{
	color: #ffcccc;
}
}

/*---------------------------------
マージン
--------------------------------*/
.mt5 {margin-top: 5px;}
.mt10 {margin-top: 10px;}
.mt15 {margin-top: 15px;}
.mt20 {margin-top: 20px;}
.mt22 {margin-top: 22px;}
.mt25 {margin-top: 25px;}
.mt30 {margin-top: 30px;}
.mt35 {margin-top: 35px;}
.mt40 {margin-top: 40px;}
.mt50 {margin-top: 50px;}
.mt60 {margin-top: 60px;}
.mt70 {margin-top: 70px;}
.mt80 {margin-top: 80px;}
.mt90 {margin-top: 90px;}
.mt100 {margin-top: 100px;}

.mb5 {margin-bottom: 5px;}
.mb10 {margin-bottom: 10px;}
.mb15 {margin-bottom: 15px;}
.mb20 {margin-bottom: 20px;}
.mb25 {margin-bottom: 25px;}
.mb30 {margin-bottom: 30px;}
.mb35 {margin-bottom: 35px;}
.mb40 {margin-bottom: 40px;}

.ml5 {margin-left: 5px;}
.ml10 {margin-left: 10px;}
.ml15 {margin-left: 15px;}
.ml20 {margin-left: 20px;}
.ml25 {margin-left: 25px;}
.ml30 {margin-left: 30px;}
.ml35 {margin-left: 35px;}
.ml40 {margin-left: 40px;}
.ml45 {margin-left: 45px;}
.ml50 {margin-left: 50px;}
.ml55 {margin-left: 55px;}
.ml60 {margin-left: 60px;}
.ml75 {margin-left: 75px;}
.ml85 {margin-left: 85px;}
.ml90 {margin-left: 90px;}
.ml100 {margin-left: 100px;}
.ml110 {margin-left: 110px;}

.mr5 {margin-right: 5px;}
.mr10 {margin-right: 10px;}
.mr15 {margin-right: 15px;}
.mr20 {margin-right: 20px;}
.mr25 {margin-right: 25px;}
.mr30 {margin-right: 30px;}
.mr35 {margin-right: 35px;}
.mr40 {margin-right: 40px;}

.ml1em {margin-left: 1em;}
.ml2em {margin-left: 2em;}
.ml4em {margin-left: 4em;}
.ml5em {margin-left: 5em;}

.mb-3 {margin-bottom: -3px;}

.lh12 {line-height: 1.2;}
.lh17 {line-height: 1.7;}

@media(max-width:640px){
}

/*---------------------------------
パディング
--------------------------------*/

.pt5 {padding-top: 5px;}
.pt10 {padding-top: 10px;}
.pt25 {padding-top: 25px;}
.pt27 {padding-top: 27px;}
.pt30 {padding-top: 30px;}
.pt40 {padding-top: 40px;}

@media(max-width:640px){
}

/*---------------------------------
テキストサイズ、装飾
--------------------------------*/

.tx12 {font-size: 12px;}
.tx13 {font-size: 13px;}
.tx14 {font-size: 14px;}
.tx15 {font-size: 15px;}
.tx16 {font-size: 16px;}
.tx18 {font-size: 18px;}
.tx20 {font-size: 20px;}
.tx21 {font-size: 21px;}
.tx22 {font-size: 22px;}
.tx24 {font-size: 24px;}
.tx120par {font-size: 120%;}

.txbold {font-weight: bold;}

.txred {color: #cc3333;}
.txdblue {color: #005bac;}

.tx_left {color: #005bac;}

@media(max-width:640px){
}

/*---------------------------------
写真、図、装飾
--------------------------------*/
.p_right {
	float: right;
}

.p_left {
	float: left;
}


.tx_center{
	text-align: center;
}

.copy_bold{
	font-size: 16px;
	font-weight: bold;
}

@media(max-width:640px){
}


/*---------------------------------
ケーキの並び
--------------------------------*/
.sweets_box ul{ 
	margin: 0; 
	padding: 0; 
	list-style: none; 
}

.sweets_box ul li{
	display: inline-block; /* インラインブロック化 */
	vertical-align: top;   /* 上端を揃える */
	padding: 0; 
	width: 300px; 
	margin: 20px 40px 20px 0px;
}

.sweets_box ul li:nth-child(3n){
	margin: 20px 0px 20px 0px;
}

.sweets_box li p{
	margin-top: 5px;
}
.sb_mt30{
	padding-top: 30px;
}

    
@media(max-width:640px){
.sweets_box ul{
	margin: 0;
	padding: 0;
	list-style: none;
	text-align: center;
}

.sweets_box ul li{
	display: inline-block; /* インラインブロック化 */
	vertical-align: top;   /* 上端を揃える */
	padding: 0;
	width: 47%;
	margin: 0% 2% 5% 0%;
	text-align: left;
}

.sweets_box ul li:nth-child(3n){
	margin: 0% 2% 5% 0%;
}

.sweets_box ul li:nth-child(2n){
	margin: 0% 0% 5% 0%;
}

.sweets_box li p{
	margin-top: 5px;
}

.sb_mt30{
	padding-top: 6%;
}
}


/*---------------------------------
トップ　最初のケーキタイトル
--------------------------------*/
h3.top{
	font-size: 18px;
	margin-top: 10px;
	color: #867268;
	text-align: center;
	font-weight: bold;
	line-height: 1.2em;
}

h3.top span{
	font-size: 11px;
	color: #77c587;
}

@media(max-width:640px){
h3.top{
	font-size: 1.8rem;
	margin-top: 3%;
	color: #867268;
	text-align: center;
	font-weight: bold;
	line-height: 1.8rem;
}

h3.top span{
	font-size: 1.1rem;
	color: #77c587;
}
}

/*---------------------------------
トップ　ニュース&トピックス
--------------------------------*/
h2.top_left{
	font-size: 18px;
	margin-top: 0px;
	color: #867268;
	font-weight: bold;
	line-height: 1.2em;
}

h2.top_left span{
	font-size: 11px;
	color: #77c587;
}
@media(max-width:640px){
}


/*---------------------------------
トップ　パティシエ工房 ミッシェル
--------------------------------*/
h3.h_green{
	font-size: 18px;
	color: #77c587;
	font-weight: bold;
}

@media(max-width:640px){
h3.h_green{
	font-size: 1.8rem;
	color: #77c587;
	font-weight: bold;
}
}

/*---------------------------------
各ページタイトル
--------------------------------*/
h2.page_title{
	font-size: 28px;
	margin-top: 10px;
	color: #77c587;
	text-align: center;
	font-weight: bold;
	line-height: 1.2em;
}
h2.page_title span{
	font-size: 12px;
	color: #77c587;
}

@media(max-width:640px){
h2.page_title{
	font-size: 2.8rem;
	margin-top: 3%;
	color: #77c587;
	text-align: center;
	font-weight: bold;
	line-height: 2rem;
}
h2.page_title span{
	font-size: 1.2rem;
	color: #77c587;
	line-height: 1.6rem;
}
}

/*---------------------------------
ニュース&トピックス（トップページ）
--------------------------------*/
#middle .other_box{
	width: 1000px;
	margin-right: auto;
	margin-left: auto;
}
#middle .other_box .left_box{
	width: 476px;
	float:left;
}
#middle .other_box .right_box{
	width: 476px;
	float: right;
}
#middle .other_box .scroll_box{
	overflow-x: auto;   /* スクロール表示 */
	width: 443px;
	height: 170px;
	border: 1px solid #CCC;
	padding: 15px;
}
#middle .other_box dl {
	width: 436px;
	font-size: 14px;
	line-height: 1.5em;
	margin-left: 10px;
}
#middle .other_box dt {
	color: #77c587;
	font-weight: bold;
}
/*--dtの三角矢印--*/
#middle .other_box dt.list-item {
	position: relative;
	padding-left: 10px;
	margin-top: 10px;
}
#middle .other_box dt.list-item:before {
  content: '';
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 0;
  height: 0;
  margin-top: -5px;
  border-top: 5px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 6px solid #77c587;
}
#middle .other_box dd {
}



@media(max-width:640px){
#middle .other_box{
	width: 96%;
	margin-right: 0;
	margin-left: 0;
	padding-right: 2%;
	padding-left: 2%;
	overflow: hidden;
}
#middle .other_box img{
	width: 100%;
	height: auto;
}
#middle .other_box .left_box{
	width: 100%;
	margin-right: 0;
	margin-left: 0;
}
#middle .other_box .right_box{
	width: 100%;
	margin-right: 0;
	margin-left: 0;
	margin-top: 3%;
}
#middle .other_box .scroll_box{
	overflow-x: auto;   /* スクロール表示 */
	width: 100%;
	height: 10rem;
	border: 1px solid #CCC;
	padding: 0;
	box-sizing: border-box;
}

#middle .other_box .scroll_box iframe{
	width: 100%;
}
#middle .other_box dl {
	width: 90%;
	font-size: 1.4rem;
	line-height: 1.5em;
	margin: 2% 3% 0 3%;
}
#middle .other_box dt {
	color: #77c587;
	font-weight: bold;
}
/*--dtの三角矢印--*/
#middle .other_box dt.list-item {
  position: relative;
  padding-left: 1rem;
}
#middle .other_box dt.list-item:before {
  content: '';
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 0;
  height: 0;
  margin-top: -5px;
  border-top: 5px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 6px solid #77c587;
}
/*--dtの三角矢印ここまで--*/
#middle .other_box dd {
}

#middle .other_box .right_box iframe {
	height: auto;
	width: 100%;
	overflow: hidden;
}
}

/*---------------------------------
ミッシェルとは
--------------------------------*/
#middle .about_box {
	width: 1000px;
	margin-right: auto;
	margin-left: auto;
}
h3.about_title{
	color: #867268;
	font-size: 21px;
	font-weight: bold;
}
h3.about_title span{
	color: #77c587;
	font-size: 21px;
	font-weight: bold;
}
#middle .about_box .about_left_box{
	width: 476px;
	float:left;
}
#middle .about_box .pc_display{
	display: block;
}
#middle .about_box .sp_display{
	display: none;
}
#middle .about_box .top_mgn{
	margin-top: 50px;
}
#middle .about_box .about_right_box{
	width: 476px;
	float: right;
}
.about_green_line{
	border-top: 1px solid #77c587;
	margin: 50px 0 50px 0;
}

@media(max-width:640px){
#middle .about_box {
	width: 100%;
	margin-right: 0;
	margin-left: 0;
	overflow: hidden;
}
#middle .about_box img {
	width: 80%;
	height: auto;
	margin-top: 5%;
	margin-right: 10%;
	margin-left: 10%;
}
h3.about_title{
	color: #867268;
	font-size: 1.8rem;
	font-weight: bold;
}
h3.about_title span{
	color: #77c587;
	font-size: 1.8rem;
	font-weight: bold;
}
#middle .about_box .about_left_box{
	width: 100%;
	float: none;
}
#middle .about_box .pc_display{
	display: none;
}
#middle .about_box .sp_display{
	display: block;
}
#middle .about_box .top_mgn{
	margin-top: 5%;
}
#middle .about_box .about_right_box{
	width: 100%;
	float: none;
}
.about_green_line{
	display: none;
}
}

/*---------------------------------
こだわりのスイーツ
--------------------------------*/

#pickup_wraper {
	width: 100%;
	min-width: 1000px;
	background-color: #f2f7e0;
	margin-top: 60px;
	padding-bottom: 60px;
}

#pickup_box {
	width: 1000px;
	margin-right: auto;
	margin-left: auto;
}

#pickup_box ul{ 
	margin: 0; 
	padding: 0; 
	list-style: none; 
}

#pickup_box ul li{
	display: inline-block; /* インラインブロック化 */
	vertical-align: top;   /* 上端を揃える */
	padding: 0; 
	width: 320px; 
	margin: 20px 20px 20px 0px;
}

#pickup_box ul li:nth-child(3n){
	margin: 20px 0px 20px 0px;
}
.pickup_h3{
	font-size: 21px;
	font-weight: bold;
	text-align: center;
	color: #77c587;
	padding-top: 30px;
}

@media(max-width:640px){
	#pickup_wraper {
	width: 100%;
	min-width: 100%;
	background-color: #f2f7e0;
	margin-top: 10%;
	padding-bottom: 10%;
	overflow: hidden;
}

#pickup_box {
	width: 100%;
	margin-right: 0;
	margin-left: 0;
}

#pickup_box ul{
	width: 100%;
	margin: 0;
	padding: 0;
	list-style: none;
}

#pickup_box ul img{
	width: 100%;
	height: auto;
}

#pickup_box ul li{
	display: inline-block; /* インラインブロック化 */
	vertical-align: top;   /* 上端を揃える */
	padding: 0; 
	width: 90%; 
	margin: 5% 5% 0% 5%;
}

#pickup_box ul li:nth-child(3n){
	margin: 5% 5% 0% 5%;
}
.pickup_h3{
	font-size: 1.6rem;
	font-weight: bold;
	text-align: center;
	color: #77c587;
	padding-top: 30px;
}
}

/*---------------------------------
区切り線
--------------------------------*/
hr.green_line {
	border-top: 1px solid #77c587;
	margin: 50px 0 50px 0;
}

@media(max-width:640px){
	hr.green_line {
	border-top: 1px solid #77c587;
	margin: 10% 0 10% 0;
}
}

/*---------------------------------
誕生日・記念日　区切り線　お問い合わせ設定
--------------------------------*/
hr.green_line_contact {
	border-top: 1px solid #77c587;
	margin: 10px 0 50px 0;
}
.contact_us{
	text-align: right;
	font-size: 14px;
	color: #77c587;
	margin-top: 30px;
	display: block;
	text-decoration: none;
}

a:hover.contact_us{
	opacity:0.5;
    -moz-opacity:0.5;
    filter:alpha(opacity = 50);  
}

img.linetomo{
	height: auto;
	width: 140px;
	margin-top: 5px;
	margin-bottom: 2px;
}

@media(max-width:640px){
hr.green_line_contact {
	border-top: 1px solid #77c587;
	margin: 1% 0 10% 0;
}
.contact_us{
	text-align: right;
	font-size: 1.4rem;
	color: #77c587;
	margin-top: 5%;
	display: block;
	text-decoration: none;
}

a:hover.contact_us{
	opacity:0.5;
    -moz-opacity:0.5;
    filter:alpha(opacity = 50);  
}

img.linelogo{
	height: auto;
	width: 20%;
}

img.linetomo{
	height: auto;
	width: 25%;
	margin-top: 2%;
	margin-bottom: 2%;
}
}

/*---------------------------------
ケーキ
--------------------------------*/
.cake_select {
	color: #867268;
	font-size: 24px;
	font-weight: bold;
	text-align: center;
	padding-top: 30px;
}
.cake_select span{
	color: #77c587;
	font-size: 14px;
	text-align: center;
}

.cake_neme {
	font-size: 18px;
	margin-top: 10px;
	color: #867268;
	line-height: 1.2em;
	font-weight: bold;
	color: #77c587;
}

@media(max-width:640px){
}

/*---------------------------------
表示価格は全て税抜価格となります
--------------------------------*/
.tax{
	font-size: 12px;
	margin-top: 20px;
	margin-bottom: 20px;
	text-align: center;
}

@media(max-width:640px){
}

/*---------------------------------
クリスマスバナー調整
--------------------------------*/
.christmas_bnr{
	margin-top: 20px;
	display: block !important;
}
.christmas_bnr_sp{
	margin-top: 20px;
	display: none !important;
}

.christmas_bnr_top{
	margin: 40px 0 40px 0;
	display: block !important;
}
.christmas_bnr_top_sp{
	margin: 20px 0 20px 0;
	display: none !important;
}


@media(max-width:640px){
	.christmas_bnr{
	display: none !important;
}
.christmas_bnr_sp{
	margin-top: 20px;
	margin-bottom: 20px;
	display: block !important;
}

.christmas_bnr_top{
	margin: 40px 0 40px 0;
	display: none !important;
}
.christmas_bnr_top_sp{
	margin: 20px 0 20px 0;
	display: block !important;
}
}

/*---------------------------------
ケーキ リンクメニュー
--------------------------------*/
.cake_linkmenu ul{
	padding: 0;
	margin: 20px 0 0 0;
	text-align: center;
}

.cake_linkmenu ul li{
	display: inline-block; /* インラインブロック化 */
	vertical-align: top;   /* 上端を揃える */
	width: 215px;
	border: 2px solid #77c587;
	margin: 20px 15px 0px 0px;
	text-align: center;
}

.cake_linkmenu ul li:nth-child(4n){
	margin: 20px 0px 0px 0px;
}

.cake_linkmenu ul li a{
	text-decoration: none;
	padding: 10px;
	font-size: 16px;
	color: #77c587;
	display:block;
	font-weight: bold;
	list-style: none;
}

.cake_linkmenu ul li a:hover{
	color: #fff;
	background-color: #77c587;
}

@media(max-width:640px){
.cake_linkmenu{
	overflow: hidden;
	padding-bottom: 1%;
}
.cake_linkmenu ul{
	padding: 0;
	margin: 20px 0 0 0;
	text-align: center;
}

.cake_linkmenu ul li{
	display: inline-block; /* インラインブロック化 */
	vertical-align: top;   /* 上端を揃える */
	width: 44%;
	border: 1px solid #77c587;
	margin: 3% 3% 0% 0%;
	text-align: center;
}

.cake_linkmenu ul li:nth-child(4n){
	margin: 3% 3% 0% 0%;
}

.cake_linkmenu ul li:nth-child(2n){
	margin: 3% 0% 0% 0%;
}

.cake_linkmenu ul li a{
	text-decoration: none;
	padding: 4%;
	font-size: 1.3rem;
	color: #77c587;
	display:block;
	font-weight: bold;
	list-style: none;
}

.cake_linkmenu ul li a:hover{
	color: #fff;
	background-color: #77c587;
}
}

/*---------------------------------
ご予約・お問い合わせは
--------------------------------*/
#contact_box{
	width: 1000px;
	margin-right: auto;
	margin-left: auto;
	padding: 30px 0 30px 0;
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-style: solid;
	border-bottom-style: solid;
	border-top-color: #77c587;
	border-bottom-color: #77c587;
	margin-top: 60px;
	text-align: center;
}

#contact_box h3{
	color: #77c587;
	font-size: 28px;
	font-weight: bold;
	margin-bottom: 20px;
}

#contact_box img{
	padding-right: 40px;
	padding-left: 40px;
}

/* クリスマス用 */
#contact_box_xmas{
	width: 1000px;
	margin-right: auto;
	margin-left: auto;
	padding: 30px 0 30px 0;
	margin-top: 60px;
	text-align: center;
}

#contact_box_xmas h3{
	color: #77c587;
	font-size: 28px;
	font-weight: bold;
	margin-bottom: 20px;
    line-height: 1.4;
}

#contact_box_xmas img{
	padding-right: 40px;
	padding-left: 40px;
}

.christmas_att{
    width: 100%;
    margin: 15px auto 10px;
    padding: 0.7em;
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    letter-spacing: 0.1em;
    color: #f00;
    border: dashed 1px #f00;
    box-sizing: border-box;
}
.christmas_att_top{
    width: 100%;
    margin-top: 10px!important;
    padding: 0.5em;
    display: inline-block;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 0.1em;
    color: #f00;
    border: dashed 1px #f00;
    box-sizing: border-box;
}

@media(max-width:640px){
#contact_box{
	width: 100%;
	margin-right: 0;
	margin-left: 0;
	padding: 5% 0 5% 0;
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-style: solid;
	border-bottom-style: solid;
	border-top-color: #77c587;
	border-bottom-color: #77c587;
	margin-top: 10%;
	text-align: center;
	overflow: hidden;
}
#contact_box h3{
	color: #77c587;
	font-size: 2.4rem;
	font-weight: bold;
	margin-bottom: 1%;
}
#contact_box img{
	height: auto;
	width: 80%;
	padding-right: 0;
	padding-left: 0;
	margin-top: 5%;
}
/* クリスマス用 */
#contact_box_xmas{
	width: 100%;
	margin-right: 0;
	margin-left: 0;
	padding: 5% 0 5% 0;
	margin-top: 10%;
	text-align: center;
	overflow: hidden;
}

#contact_box_xmas h3{
	color: #77c587;
	font-size: 2.4rem;
	font-weight: bold;
	margin-bottom: 1%;
	line-height: 1.2em;
}
#contact_box_xmas img{
	height: auto;
	width: 80%;
	padding-right: 0;
	padding-left: 0;
	margin-top: 5%;
}
.christmas_att{
    font-size: 5vw;
    margin: 10px auto 20px;
}
.christmas_att_top{
    font-size: 3.7vw;
    letter-spacing: 0;
    padding: 0.5em 0;
}
}

/*---------------------------------
店舗情報
--------------------------------*/
table.shop_info{
	border-collapse: collapse;
    text-align: left;
    line-height: 1.5;
}

table.shop_info td,th{
	padding: 15px 20px 0 0;
}

table.shop_info .tx_color{
	color:#d9b390;
}

#middle .map_box{
	width: 1000px;
	margin-right: auto;
	margin-left: auto;
}

#middle .big_map{
text-align: center;
}	
	
#middle .big_map a{
	text-decoration: none;
	padding: 10px;
	font-size: 16px;
	color: #77c587;
	display: block;
	font-weight: bold;
	border: 2px solid #77c587;
	width: 230px;
	margin-right: auto;
	margin-left: auto;
	margin-top: 30px;
}

#middle .big_map a:hover{
	color: #fff;
	background-color: #77c587;
}

@media(max-width:640px){
table.shop_info{
	width: 100%;
	border-collapse: collapse;
    text-align: left;
    line-height: 1.5;
}

table.shop_info td,th{
	padding: 2% 2% 0 0;
}

table.shop_info .tx_color{
	color:#d9b390;
	white-space: nowrap;
}

#middle .map_box{
	width: 100%;
	margin-right: 0;
	margin-left: 0;
	position: relative;
	padding-bottom: 75%;
// これが縦横比
	height: 0;
	overflow: hidden;
	margin-top: 5%;
}

#middle .map_box iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100% !important;
	height: 100% !important;
}
#middle .big_map{
text-align: center;
}	
#middle .big_map a{
	text-decoration: none;
	padding: 3%;
	font-size: 1.6rem;
	color: #77c587;
	display: block;
	font-weight: bold;
	border: 2px solid #77c587;
	width: 44%;
	margin-right: auto;
	margin-left: auto;
	margin-top: 7%;
}

#middle .big_map a:hover{
	color: #fff;
	background-color: #77c587;
}
}

/*---------------------------------
プライバシーポリシー
--------------------------------*/
#middle .privacy_box{
	width: 700px;
	margin-top: 40px;
	margin-right: auto;
	margin-left: auto;
}

#middle .privacy_box p{
	width: 700px;
	font-weight: bold;
}

#middle .privacy_box ol{
	list-style-type: decimal;
	list-style-position: outside;
	padding-left: 1.6em;
}

#middle .privacy_box ol li{
	margin-top: 20px;
}

@media(max-width:640px){
#middle .privacy_box{
	width: 100%;
	margin-top: 5%;
	margin-right: 0;
	margin-left: 0;
}

#middle .privacy_box p{
	width: 100%;
	font-weight: bold;
}

#middle .privacy_box ol{
	list-style-type: decimal;
	list-style-position: outside;
	padding-left: 1.6em;
}

#middle .privacy_box ol li{
	margin-top: 5%;
}
}

/*---------------------------------
クレジット Pay
--------------------------------*/
.payment_sec{
    width: 1000px;
    margin: 20px auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.payment_sec h1{
    font-size: 18px;
    font-weight: bold;
     width: 1000px;
}
.payment_sec p{
    margin: 0.5em 0;
}
@media(max-width:640px){
.payment_sec{
    width: 90%;
    margin: 20px auto;
    display: block;
}
.payment_sec img{
    width: 100%;
    height: auto;
}
}

/*---------------------------------
ネット予約
--------------------------------*/
.net_shop{
    position:relative;
    width:100%;
    max-width:1000px;
    height:0;
    margin:0 auto;
}
.net_shop a{
    position: fixed;
    top: 155px;
    left:auto;
    display: block;
	height: 100px;
	width: 160px;
	margin-left:900px;
}
@media(max-width:640px){
.net_shop{
    position: relative;
	width: 100%;
	max-width: 100%;
	height: 0;
	margin: 0;
	overflow: hidden;
}
.net_shop a{
    position: fixed;
	top: 40px;
    right: 8px;
	display: block;
	height: auto;
	width: 35vw;
	margin-left: 0;
}
.net_shop img{
    width: 35vw;
    height: auto;
}
}

/* トップ LINE調整*/
.contents_box_color .img_nomal{ 
    width:inherit;
    margin: 5px auto;
    display: block;
}

/*---------------------------------
ネット予約　旧

.net_shop{
    position:fixed;
    width:100%;
    height:100px;
    top: 160px;
    margin:0 auto;
}
.net_shop a{
    position: absolute;
    top: 0;
    right: calc(50% - 600px);
    display: block;
}
@media(max-width:640px){
.net_shop{
    position:fixed;
    width:100%;
    height:100px;
    top: 20px;
    margin:0 auto;
}
.net_shop a{
    position: absolute;
    top: 24px;
    right: 8px;
    display: block;
}
.net_shop img{
    width: 35vw;
    height: auto;
}
}
--------------------------------*/
