@charset "UTF-8";

@import url('clearfix.css');

/*********************************************************
	基本設定・初期化・その他共通設定
*********************************************************/

*{
	margin: 0;
	padding: 0;
	font-style:normal;
}

body{
	color:#552e37;
	font-size:88%;
	line-height:1.6;
	background:url(../img/bg.gif);
	font-family:"ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3";
	font-size:14px;
}

h1,h2,h3,h4,th{
	font-weight:normal;
}

img{
	border:0;
	
}

th, td {
	line-height:1.4;
}

ul li {
	list-style: none;
}

a{
	color:#300308;
}

a:hover{
	text-decoration:none;
}

.f-left{
	float:left;
}

.f-right{
	float:right;
}

.t-left{ text-align:left;}
.t-center { text-align:center;}
.t-right { text-align:right;}

.m5{margin:0 0 5px;}
.m10{margin:0 0 10px;}
.m20{margin:0 0 20px;}
.m30{margin:0 0 30px;}

.mr10{margin:0 10px 0 0;}

.pt10{padding:10px 0 0;}
.pt40{padding:40px 0 0;}
.none{display:none;}


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

#head {
	width:85%;
	max-width: 895px;
	margin:20px auto 0 auto;
	padding:30px 0 20px;
	background-color:#fff;
	border-radius: 15px 15px 0 0 ;
}
#head h2{
	margin-left: 5%;
}
#head p{
	margin-left: 5%;
}
/* #head h1{
	font-size:71%;
	text-align:right;
} */
#head h1 a img{
	margin-left: 3%;
	width: 20%;
}

/* ハンバーガーメニュー */
.circle{
	display: none;
}
.burger-wrapper{
    cursor: pointer;
    margin: auto;
    width: 50px;
    height: 40px;
}
.burger-wrapper .hamburger {
    background: black;
    width: 30px;
    height: 2px;
    z-index: 999;
    position: fixed;
    right: 5%;
    transition:  10ms 300ms ease;
    transform: translateY(20px);
    top: 20px;
  }
  .burger-wrapper .hamburger:before, .burger-wrapper .hamburger:after {
    transition: top 300ms 350ms ease, transform 300ms 50ms ease;
    position: absolute;
    background: black;
    width: 30px;
    height: 2px;
    content: "";
  }
  .burger-wrapper .hamburger:before {
    top: -10px;
  }
  .burger-wrapper .hamburger:after {
    top: 10px;
  }
  
  .menu-trigger:checked ~ .burger-wrapper .hamburger {
    background: transparent;
  }
  .menu-trigger:checked ~ .burger-wrapper .hamburger:after, .menu-trigger:checked ~ .burger-wrapper .hamburger:before {
    transition: top 300ms 50ms ease, transform 300ms 350ms ease;
    top: 0;
  }
  .menu-trigger:checked ~ .burger-wrapper .hamburger:before {
    transform: rotate(45deg);
  }
  .menu-trigger:checked ~ .burger-wrapper .hamburger:after {
    transform: rotate(-45deg);
  }
  .hidden{
    display: none;
  }

  #g-nav{
    position: fixed;
    z-index: 99;
    top: -120%;
    left: 0;
    width: 100%;
    height: 90vh;
    background: url(../img/bg.gif);
    transition: all 0.6s;
    border-radius: 10% 10% 55% 68% / 0% 0% 15% 15%  ;
    /* border: #000 1px solid; */
}
/*アクティブになったエリア*/
#g-nav.panelactive{
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    /* position:fixed;
    z-index: 99;
	top: -120%;
    left: 0;
	width:100%;
    height: 100vh;
    background-color: #999;
    transition: all 0.6s; */
    top: 0;
}

/*丸の拡大*/
.circle-bg{
    position: fixed;
	z-index:3;
    /*丸の形*/
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: url(../img/bg.gif);
    /*丸のスタート位置と形状*/
	transform: scale(0);/*scaleをはじめは0に*/
	right:-50px;
    top:-50px;
    transition: all .6s;/*0.6秒かけてアニメーション*/
}

.circle-bg.circleactive{
	transform: scale(50);/*クラスが付与されたらscaleを拡大*/
}

/*ナビゲーションの縦スクロール*/
#g-nav-list{
    display: none;/*はじめは表示なし*/
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 99; 
    width: 100%;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

#g-nav.panelactive #g-nav-list{
     display: block; /*クラスが付与されたら出現*/
     z-index: 999;
     width: 100%;
     height: 90vh;
     overflow: auto;
     -webkit-overflow-scrolling: touch;
}
/*リストのレイアウト設定*/
#g-nav li{
	text-align: center; 
	list-style: none;
}

.g-nav-text li a{
	color: #333;
	text-decoration: none;
	padding:10px;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: bold;
}
/*ナビゲーション*/
#g-nav .g-nav-text {
	opacity: 0;/*はじめは透過0*/
    /*ナビゲーション天地中央揃え※レイアウトによって調整してください。不必要なら削除*/
    position: absolute;
    z-index: 999;
    top:35%;
    left:50%;
    transform: translate(-50%,-50%);
    background-color: #fff;
    border-radius: 30px;
    width: 80%;
    height: 62vh;
    max-width: 300px;
    max-height: 420px;
}
.g-nav-link{
    position: absolute;
    top: 83%;
    left: 10%;
    /* transform: rotate(4deg); */
}
.g-nav-img{
    display: flex;
}
.g-nav-img li .g-link{
    padding: 0;
}
.g-nav-img li a img{
	max-width: 100%;
	height: auto;
}
/*背景が出現後にナビゲーションを表示*/
#g-nav.panelactive ul {
    opacity:1;
}

/* 背景が出現後にナビゲーション li を表示※レイアウトによって調整してください。不必要なら削除*/
#g-nav.panelactive ul li{
animation-name:gnaviAnime;
animation-duration:1s;
animation-delay:.5s;/*0.2 秒遅らせて出現*/
animation-fill-mode:forwards;
opacity:0;
margin: 15px 0;
}
@keyframes gnaviAnime{
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}





/*********************************************************
	レイアウト
*********************************************************/

#outline{
	width:85%;
	max-width: 895px;
	margin:0 auto;
	padding:0;
	/* background:url(../img/main_bg.gif) top repeat-y; */
	padding-bottom: 30px;
	background-color: #fff;
	display: flex;
	justify-content: space-around;
}

/*------------------------------------*/
/*	左カラム
/*------------------------------------*/

#left_column{
	width:165px;
	float:none;
	margin:0;
	padding:0 0 0 10px;
}

#left_column h2{
	width:123px;
	margin:0 auto 5px auto;
}

#left_column p{
	width:123px;
	margin:0 auto;
}

#left_column #groval_navi{
	width:165px;
	margin:10px auto 15px auto;
}

/*グローバルナビ*/
#left_column #groval_navi li{
	width:165px;
	padding:10px 0;
	background:url(../img/dot2.gif) left bottom repeat-x;
}

/*Twitter*/
#left_column #news{
	width:146px;
	margin:0 auto 15px auto;
	font-size:74%;
}

#left_column #news_bg{
	margin:10px 0 0 0;
	padding:60px 0 0 0;
	background:url(../img/top/left_column/news_top.gif) top no-repeat;
}

#left_column #twitter_div{
	padding:0 5px;
	background:url(../img/top/left_column/news_bg.gif) top repeat-y;
}

#left_column #twitter_update_list li{
	background:url(../img/dot2.gif) left bottom repeat-x;
	padding:5px 0;
}

#left_column #twitter_update_list li .ago{
	text-align:right;
}

#left_column #news_btm{
	margin:0;
}

/*従業員募集*/
#left_column #news #boshu{
	font-weight: bold;
	font-size: 30px;
	color: #ff0000;
	text-align: center;
	line-height: 1.2em;
	margin: 10px auto 0;
}

/* ランチメニュー設定 */
.lunchmenu_title{
	margin-top: 30px;
	text-align: center;
	font-size: 24px;
	font-weight: bold;
}
.lunchmenu{
	background-color: #174526;
	text-align: center;
	margin: 5px 0 20px;
	color: #fff;
	border: #330609 5px solid;
}
.lunchmenu h3{
	padding-top: 20px;
    color: #fff;
}
.lunchmenu p{
	font-size: 18px;
	margin-bottom: 5px;
}


/*サブメニュー*/
#left_column #sub_menu{
	width:165px;
	margin:0 0 20px;
}

#left_column #sub_menu li{
	padding:12px 0;
	background:url(../img/dot2.gif) bottom repeat-x;
}


/*------------------------------------*/
/*	中央・右カラム共通
/*------------------------------------*/

#wrapper{
	width:100%;
	margin:10px 0 0 25px;
	float:left;
	font-size:88%;
	max-width: 500px;
}

#wrapper h3{
	/* display:none; */
	font-size: 24px;
	color: #370208;
	font-weight: bold;
	border-bottom: #ccba68 1px dashed;
	margin-bottom: 10px;
}
#wrapper h3 span{
	font-size: 12px;
	color: #ccba68;
	letter-spacing: 5px;
	margin-left: 5px;
}

#wrapper .more{
	background:url(../img/arrow.gif) left no-repeat;
	padding:0 0 0 15px;
	float:right;
}

#wrapper .more2{
	background:url(../img/arrow2.gif) left no-repeat;
	padding:0 0 0 15px;
}

.recruit{
	width: 95%;
	margin: 30px auto 20px;
}
.recruit h4{
	font-weight: bold;
	font-size: 28px;
	color: red;
}
.recruit p {
	font-weight: bold;
	font-size: 20px;
	color: red;
}

/*------------------------------------*/
/*	右カラム
/*------------------------------------*/

#right_column{
	width:170px;
	float:right;
}

/* #right_column h4{
} */

/*本日のランチ*/
#right_column #sub_today{
	width:160px;
	background:#E8DFB8;
	padding:15px 5px;
}

#right_column #sub_today #calendar{
	width:105px;
	background:url(../img/top/right_column/cal_bg.gif) no-repeat;
	margin:0 auto;
	text-align:center;
}

#right_column #sub_today #calendar p{
	width:60px;
	background:#300308;
	margin:0 auto;
}

#right_column #sub_today #today_menu{
	margin:0 5px;
}

#right_column #sub_today #today_menu li{
	border-bottom:1px solid black;
	margin:10px 0 0;
	padding:0 0 0 20px;
}


/*SHOP*/
#right_column #sub_shop{
	width:160px;
	background:#E8DFB8;
	padding:15px 5px;
	text-align:center;
	line-height:0;
	font-size:0;
}

#right_column #sub_shop dl{
	width:130px;
	margin:0 auto;
}

#right_column #sub_shop dt{
	background:#330207;
	padding:3px 0;
}

/*当店人気No1 ** スタッフ*/
#right_column .sub{
	width:140px;
	background:#E8DFB8;
	padding:15px;
	text-align:center;
}

#right_column .sub dd{
	text-align:left;
}

/*ブログリンク*/
#right_column p{
	text-align:center;
}

/*********************************************************
	トップページ
*********************************************************/

#top{
	width:100%;
	float:left;
	/* background:url(../img/top/main/title.gif) no-repeat; */
}

#top #main_pic{
	height:400px;
	margin:0 0 10px;
}
#main_pic div img{
	width: 97%;
	margin: 0 auto;
}

#top #intro p{
	float:left;
}

#top .service{
	clear:right;
	padding:10px 0 0;
}

.service_title{
    width: 75%;
    color: #fff;
    background-color: #330609;
    font-size: 24px;
    padding: 0 5px;
    font-family:'Times New Roman', Times, serif ;
    display: flex;
	align-items: center;
    justify-content: space-between;
}
.service_contents{
	background-color: #174526;
	color: #fff;
	justify-content: space-around;
	display: flex;
	align-items: center;
	padding: 10px 0;
}
.s_block{
	width: 70%;
}
.service_contents div p{
	width: 80%;
	margin: 0 auto;
}
.s_title{
	font-size: 18px;
	font-weight: bold;
}
.s_text{
	padding-bottom: 10px;
}
#top dl{
	color:#FFFFFF;
	background:#174526;
	padding:20px;
}

#top dt{
	float:left;
	padding:0 20px 0 0;
}

#top dd{
	margin:0 0 5px;
}

.right{
	font-weight: bold;
	/* background-color: #934234; */
	display: flex;
	justify-content: space-around;
}
.main_block{
	margin-top: 40px;
}
.main_block h4{
	text-align: center;
	font-weight: bold;
	font-size: 24px;
}
.main_block p{
	text-align: center;
}
.main_title{
	font-size: 18px;
}
.main_flex{
	display: flex;
	justify-content: space-around;
	align-items: center;
	margin-top: 30px;
}
.main_box{
	width: 50%;
}
.main_box img{
	display: block;
	margin: 0 auto;
}
.main_box p{
	margin-top: 10px;
}
.menu_link{
	display: block;
	text-align: center;
	margin: 20px auto 0;
	padding: 20px 0;
	background-color: #330609;
	color: #fff;
	width: 30%;
	border-radius: 30px;
	border: #330609 1px solid;
	transition: all 0.2s ease-in;
}
.menu_link:hover{
	color: #330609;
	background-color: #fff;
	border: 1px #330609 solid;
	transition: all 0.2s ease-in;
}
.contact_link{
    display: block;
    text-align: center;
    margin: 0 auto;
    padding: 20px 0 ;
    background-color: #330609;
    color: #fff;
    width: 50%;
    border-radius: 30px;
    border: #330609 1px solid;
    transition: all 0.2s ease-in;
}
.contact_link:hover{
    background-color: #fff;
    color: #330609;
    text-decoration: none;
	transition: all 0.2s ease-in;
}
/*********************************************************
	クリスタルリバージュについて
*********************************************************/

#about_us{
	width:100%;
	float:left;
	/* background:url(../img/about/h3_about.jpg) no-repeat; */
	/* padding:50px 0 0; */
}

#about_us .backimg{
	height:1100px;
	background:url(../img/about/about_back.jpg) no-repeat;
	background-size: contain;
}

#about_us .text{
	top:20px;
	left:55px;
	width:185px;
	position:relative;
	word-break: break-all;
}

#about_us .text2{
	top:22%;
	left:75%;
	width:105px;
	position:relative;
}

#about_us .text3{
	top:44%;
	left:65%;
	width:120px;
	position:relative;
	text-align:center;
}

#about_us .text3 .more{
	background:url(../img/arrow.gif) left no-repeat;
	padding:0 0 0 15px;
	margin:0 50px 0;
}
.mobile_text{
	display: none;
}

/*********************************************************
	アクセス
*********************************************************/

#access{
	width:490px;
	float:left;
	/* background:url(../img/access/h3_access.jpg) no-repeat; */
	/* padding:50px 0 0; */
}

#access .shopmap{
	background:#f5f7e2;
	text-align:center;
	padding:20px 0;
}

#access .shopmap .btn{
	text-align:right;
	margin:0 20px 0;
}

#access dl{
	padding:15px 0 15px 15px;
	background:url(../img/dot.gif) repeat-x left bottom;
	clear:both;
}

#access dt{
	float:left;
	width:80px;
	font-weight:bold;
}

#access dl.yellow{
	background:#f5f7e2 url(../img/dot.gif) repeat-x left bottom;
}

#access dd{
	/* float:right; */
	width:100%;
}

#access dl dd span{
	float:left;
	width:90px;
}

/*GoogleMap*/

#map{
	background:none;
	text-align:center;
}

#map .map_area{
	width:500px;
	height:450px;
	margin:20px auto 0 auto;
	font-size:88%;
	text-align:left;
}

#map .map_area h1{
	font-size:98%;
	font-weight:bold;
}


/*********************************************************
	メニューのご紹介
*********************************************************/

#menu{
	width:100%;
	float:left;
	/* background:url(../img/menu/h3_menu.jpg) no-repeat; */
	/* padding:50px 0 0; */
}

#menu .page{	
	float:right;
	margin:0 0 10px;
}

#menu .page li{
	display:inline;
	margin:0 0 0 5px;
}

/*メニューリスト*/

#menu p{
	padding:5px 0 5px 10px;
	background:#330207;
}

#menu .sub{
	background:none;
	padding:10px 0 5px 5px;
	margin:0 0 10px;
}

#menu .menu_list{
	background:#f8f4cf;
	padding:15px 0 10px;
	margin:0 0 20px;
}

#menu table{
	width:460px;
}

#menu th{
	width:176px;
	text-align:left;
	padding:0 0 10px;
}

#menu td{
	vertical-align:top;
	padding:0 0 10px;
}

#menu .option{
	width:428px;
	margin:10px 0 0;
	padding:15px;
	border:1px solid #330207;
}

#menu .option li{
	padding:0 0 0 10px;
	background:url(../img/menu/icon.gif) 0 3px no-repeat;
}

#menu .left{
	width:213px;
	margin:0 35px 0 0;
}

#menu .right{
	width:220px;
}

#menu .left .last,
#menu .right .last{
	padding:0;
}

#menu .menu_list span{
	color:#ffffff;
	background:#330206;
	padding:2px 2px 1px 2px;
	margin:0 3px 0 0;
}
.menu_box{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 20px 0;
    width: 95%;
    margin: 0 auto;
}
.menu_items{
    width: 45%;
    display: flex;
    justify-content: space-between;
}
.menu_list p{
    background-color: transparent!important;
}
.menu_text{
    width: 95%;
    margin: 0 auto;
    border: 1px solid #330207;
    padding: 15px 0 15px 15px;
}
.menu_text li{
    background: url(../img/menu/icon.gif) 0 3px no-repeat;
    padding-left: 10px;
}
.vesitabl{
    display: block;
}
.sand{
    display: flex;
}
.menu_title{
    padding: 5px 0 5px 10px!important;
    background-color: #330207;
}
.items_list{
    display: flex;
    justify-content: flex-end;
}
/*********************************************************
	サービスタイム
*********************************************************/

.service_time{
	width:100%;
	float:left;
	/* background:url(../img/servicetime/h3_servicetime.jpg) no-repeat; */
	/* padding:50px 0 0; */
}

.service_time .servicetime_menu{
	padding:0 5px;
	margin:0 0 10px;
	display: flex;
	justify-content: center;
}

.service_time .servicetime_menu li{
	margin:0 2px;
	display:block;
}


/*------------------------------------*/
/*	モーニング
/*------------------------------------*/

.service_time #ser_morning{
	color:#FFFFFF;
	background:#194624 url(../img/servicetime/morning/morning_bg2025.png) no-repeat;
	padding:100px 0 30px 20px;
	background-size: contain;
}

.service_time .title{
	width:50%;
	height:205px;
}

.service_time .comment{
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	width:100%;
	margin:0 0 20px;
}

.service_time .comment .serimg{
	/* width:210px;
	float:left; */
	width: 40%;
	/* margin:0 15px 0 0; */
	
}

.service_time .comment div{
	/* width:225px;
	float:right; */
	width: 45%;
}

.service_time .comment ul{
	/* width:180px; */
	display: flex;
	flex-wrap: wrap;
}

.service_time .comment li{
	/* float:left; */
	margin:0 5px 5px 0;
}

.service_time .last{
	padding:0 0 20px;
	background:url(../img/dot3.gif) repeat-x bottom;
}


/*------------------------------------*/
/*	ランチ
/*------------------------------------*/

.service_time #ser_lunch{
	color:#FFFFFF;
	background:#330207 url(../img/servicetime/lunch/lunch_bg2025.png) no-repeat;
	padding:100px 0 30px 20px;
	background-size: contain;
}

.service_time #ser_lunch .lunch_box{
	margin:0 20px 0;
	height:190px;
	background:url(../img/servicetime/lunch/lunchbox_bg.jpg) no-repeat right top;
}

.service_time #ser_lunch .comment{
	align-items: center;
} 

.service_time #ser_lunch .lunch_box p{
	width:180px;
}

.service_time #ser_lunch a{
	color:#FFFFFF;
}

.service_time #ser_lunch .txt{
	/* padding:130px 0 0; */
	bottom:0px;
}
#ser_lunch .last{
	display: block;
}

/*------------------------------------*/
/*	アフタヌーン
/*------------------------------------*/
.service_time #ser_after{
	color:#5E1402;
	background:#FFD983 url(../img/servicetime/afternoon/afternoon_bg.gif) no-repeat;
	padding:100px 0 30px 20px;
	background-size: contain;
}



/*********************************************************
	テイクアウト
*********************************************************/

#takeout{
	width:100%;
	float:left;
	/* background:url(../img/takeout/h3_takeout.jpg) no-repeat; */
	/* padding:50px 0 0; */
}

#takeout .main{
	background:#F7F4CF url(../img/takeout/takeout_bg2025.png) no-repeat;
	padding:70px 0 30px 0;
	background-size: contain;
}

#takeout .title{
	width:50%;
	height:235px;
	padding-left: 20px;
}

#takeout .leftbox{
	float:left;
	width:220px;
}

.takeout_title{
	font-size: 20px;
	margin-bottom: 10px;
	width: 90%;
	margin: 0 auto;
}
.takeoutmenu{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	background-color: #ffffff;
	border-radius: 50px;
	padding: 10px 20px;
	width: 85%;
	margin: 0 auto;
}
.takeoutmenu li{
	width: 45%;
	margin: 10px 0;
	font-size: 17px;
	font-family: inherit;
}


/*********************************************************
	お問い合わせ
*********************************************************/

#contact{
	width:100%;
	float:left;
	/* background:url(../img/contact/h3_contact.jpg) no-repeat; */
	/* padding:50px 0 0; */
}

#contact .formwrap{
	width:98.5%;
	padding:20px 0 40px 0;
	background:url(../img/contact/bg.gif) repeat-y;
}

#contact .formbox{
	width:90%;
	margin:0 auto;
}

#contact .formbox p{
	margin:10px 0 5px;
}

#contact .attention{
	color:#ff0000;
	font-weight:bold;
}

#contact #name,
#contact #e_mail{
	width:200px;
}

#contact #switch{
	color:#FFFFFF;
	padding:3px 5px;
	background:#330207;
	border:0px;
	font-size:98%;
}

#contact .back{
	float:left;
	margin:0 20px 0 0;
}

#contact .break{
	overflow-x:auto;
	word-break: break-all;
}


/*********************************************************
	クーポン
*********************************************************/

#coupon{
	width:100%;
	float:left;
	/* background:url(../img/coupon/h3_coupon.gif) no-repeat; */
	/* padding:50px 0 0; */
}

#coupon .coupon_menu{
	width:100%;
	margin:0 auto 20px;
	text-align:right;
	/* float:right; */
}

#coupon .coupon_menu li{
	display:inline;
}

#coupon .couponBoxWrap{
	padding:0 0 2px;
	margin:0 0 90px;
	clear:right;
}


#coupon .couponBox {
	text-align:center;
	background:url(../img/coupon/coupon_bg.gif) no-repeat;
	background-size: contain;
	padding:100px 50px 60px;
	margin:0 0 10px;
}

#coupon .txt_right {
	float:left;
	margin:12px 0 0;
}

#coupon .ticketBox {
	text-align:center;
	background:url(../img/coupon/ticket_bg.gif) no-repeat;
	padding:55px 40px;
	color:#FFFFFF;
	margin:0 0 20px;
}

#coupon .ticketBox02 {
	text-align:center;
	background:url(../img/coupon/ticket_bg02.gif) no-repeat;
	padding:55px 60px;
	color:#FFFFFF;
}

#coupon .notice {
	text-align:left;
	margin:40px auto 0 70px;
}

#coupon .notice02 {
	text-align:left;
	margin:40px auto 0 50px;
}

#coupon .p_btn {
	padding:35px 0 0;
	cursor:pointer;
}

#coupon #couponImg{
	display:none;
}


/*********************************************************
	カレンダー
*********************************************************/

#calender{
	width:490px;
	float:left;
	background:url(../img/calendar/h3_calendar.jpg) no-repeat;
	/* padding:50px 0 0; */
}


/*********************************************************
	フッター
*********************************************************/

#footer{
	width:85%;
	max-width: 895px;
	/* height:69px; */
	margin:0 auto 20px;
	/* background:url(../img/footer.gif) bottom no-repeat; */
	background-color: #330207;
	color: #fff;
	font-size:88%;
	/* color:#AAA281; */
	border-radius: 0 0 15px 15px;
}

#footer a{
	/* color:#AAA281; */
	color: #fff;
}

#footer_menu{
	padding:0 25px 10px 0;
	text-align:right;
}

.footer_inner{
	padding: 40px 0;
	display: flex;
	align-items: flex-start;
	justify-content: space-around;
}
.footer_img{
	width: 20%;
	height: auto;
}
.footer_items{
	display: flex;
	padding: 10px 0 ;
}
.f_items_header{
	width: 65px;
	margin-right: 10px;
}
.f_items_time{
	margin-top: 15px;
}
.footer_nav li a{
	color: #fff;
}
.copy{
	text-align: center;
	padding-bottom: 20px;
}

/*********************************************************
	③ランチカレンダーページの指定
*********************************************************/

#month{
width:490px;
height:30px;
margin:0;
padding:0;
text-align:left;
}

table#lunch_calendar{
width:490px;
height:auto;
margin:0;
padding:0;
border-collapse:collapse;
}

table#lunch_calendar tr.schedule_block1{
width:490px;
margin:0;
padding:0;
background:#f0dbbe;
}

table#lunch_calendar tr.schedule_block2{
width:490px;
margin:0;
padding:0;
background:#f8f4cf;
}

table#lunch_calendar tr.schedule_block3{
width:490px;
margin:0;
padding:0;
background:#ffffff;
}

table#lunch_calendar tr.schedule_block4{
width:490px;
margin:0;
padding:0;
background:#ff9999;
}

table#lunch_calendar tr td.cl_schedule{
width:70px;
margin:0;
padding:8px 0px;
text-align:center;
border-bottom:dotted 2px #6e4940;
border-right:dotted 2px #6e4940;
}

table#lunch_calendar tr td.cl_schedule_today{
background:url("../img/today_stripe.gif") repeat scroll 0 0 transparent;
width:70px;
margin:0;
padding:8px 0px;
text-align:center;
border-bottom:dotted 2px #6e4940;
border-right:dotted 2px #6e4940;
color:#ffffff;
font-weight:bold;
}

table#lunch_calendar tr td.cl_menu{
width:350px;
height:30px;
margin:0;
padding:0;
border-bottom:dotted 2px #6e4940;
}

ul.cl_menulist{
width:350px;
margin:10px 0;
padding:0 0 0 15px;
}

ul.cl_menulist li{
width:100%;
height:20px;
margin:0 0 5px 0;
padding:0;
text-align:left;
}

/* メニューの行を増やす時に使用 */
/*
table tr:nth-child(20) ul.cl_menulist li:nth-child(1) {
height:35px;
}
*/

ul.cl_menulist li img{
width:20px;
height:20px;
float:left;
margin:0;
padding:0;
}

ul.cl_menulist li p{
width:327px;
height:16px;
float:right;
margin:0;
padding:3px 0 0 3px;
}

ul.cl_menulist p#sunday{
padding-left:5px;
}

.cl_menu p.day_menu{
width:350px;
margin:0;
padding:0;
padding-left:15px;
}



/*********************************************************
	朝活　クリスタルde英会話
*********************************************************/

#asakatsu {
	width: 490px;
	float: left;
	background: url(../img/asakatsu/h3.png) no-repeat;
	padding: 136px 0 0;
}

#asakatsu #point {
	width: 475px;
	margin: 0 auto;
}

#asakatsu #point .detail {
	margin: 20px auto 0;
}

#asakatsu #point .detail p {
	float: left;
}

#asakatsu #point .detail p.num {
	margin: 0 10px 0 0;
	padding: 0 10px 0 0;
	border-right: solid 1px #40210f;
}

#asakatsu #point .detail p.long {
	padding: 0 10px 20px 0;
}

#asakatsu #point .detail h5 {
	margin: 0 0 5px 0;
}

#asakatsu #point #campaign {
	margin: 20px auto;
}

#asakatsu #caution {
	width: 475px;
	margin: 30px auto;
}

#asakatsu #caution h4 {
	background: #40210f;
	padding: 5px;
	display: block;
	color: #ffffff;
	font-size: 20px;
	text-align: center;
	font-weight: bold;
}

#asakatsu #caution h5 {
	background: #f6f1e7;
	padding: 0 5px;
	display: block;
	font-size: 15px;
	font-weight: bold;
	margin: 20px auto 5px;
}

#asakatsu #caution p .large_txt {
	font-size: 15px;
	font-weight: bold;
}

#asakatsu #information {
	margin: 20px auto;
}



