@charset "utf-8";


/*全端末（PC・タブレット・スマホ）共通設定
------------------------------------------------------------------------------------------------------------------------------------------*/

/*全体の設定
---------------------------------------------------------------------------*/
body {
	margin: 0px;
	padding: 0px;
	font-family:"メイリオ", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;	/*フォント種類*/
	font-size: 1em;	/*文字サイズ*/
	line-height: 2;		/*行間*/
}
h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,form,figure,form,input,textarea,select {margin: 0px;padding: 0px;font-size: 100%;font-weight: normal;}
ul {list-style-type: none;}
ol {padding-left: 40px;padding-bottom: 20px;}
img {border: none;max-width: 100%;height: auto;vertical-align: middle;}
table {border-collapse:collapse;font-size: 100%;border-spacing: 0;}
video {max-width: 100%;}
iframe {width: 100%;}

/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
	color: #666;		/*リンクテキストの色*/
	transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
}
a:hover {
	color: #7e6b5a;			/*マウスオン時の文字色*/
	text-decoration: none;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
	opacity:0.6;
}

/*inner
---------------------------------------------------------------------------*/
.inner {
	max-width: 1000px;	/*サイトの最大幅*/
	margin: 0 auto;
	padding: 0 3%;		/*上下、左右へのinner内の余白*/
}

/*ヘッダー（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	border-bottom: 0px solid #ccc;
}
/*ヘッダーブロック　※index.html(.home)への追加設定*/
.home header {
	position: relative;
	margin-bottom: 60px;
}
/*ヘッダーブロックのinner*/
header .inner {
	height: 150px;	/*ヘッダーの高さ*/
	position: relative;
}
/*ロゴ画像*/
header #logo img {
	width: 200px;		/*ロゴ画像の幅*/
	position: absolute;
	left:3%;		/*「header .inner」ブロックに対して左から3%の場所に配置*/
	bottom: 15px;	/*「header .inner」ブロックに対して下から35pxの場所に配置*/
	float:left;
}
/*「ご予約・お問い合わせ」ボタン*/
#toiawase {
	position: absolute;
	top: 43px;		/*「header .innner」ブロックに対して上から-5pxの場所に配置*/
	right: 0px;		/*「header .innner」ブロックに対して右から3%の場所に配置*/
}
/*---------パンくずリスト----------*/   
ol#pan{
	margin-left: 10px;
	margin-top:-30px;
	list-style: none;
	text-align:right !important;
	font-size:0.9em;
}
ol#pan li{
	display: inline;
	padding: 0px;
	margin-top: 0px;
	margin-right: 5px;
	margin-bottom: 0px;
	margin-left: 0px;
}

ol#pan a:link{
	text-decoration: none;
}	
ol#pan a:visited{
	text-decoration: none;
}	
ol#pan a:hover{
	text-decoration: underline;
}
ol#pan a:active{
	text-decoration: none;
}	
@media screen and (max-width:559px) {
	/*---------パンくずリスト----------*/   
ol#pan{
	margin-left: 8px;
	list-style: none;
	text-align:left !important;
	font-size:0.9em;
}
ol#pan li{
	display: inline;
	padding: 0px;
	margin-top: 0px;
	margin-right: 5px;
	margin-bottom: 0px;
	margin-left: 0px;
}
}
/*メインメニュー
---------------------------------------------------------------------------*/
/*メニューブロック*/
#menubar {
	clear: both;overflow: hidden;
	margin-bottom: 0px;	/*上部のメニューと下のコンテンツとの間に空けるスペース*/
	background: #fff;	/*背景グラデーション*/
	border-top:solid 0px #d2d2d2;
}
/*メニューブロック　※index.html(.home)への追加設定*/
.home #menubar {
	float: right;				/*ブロックを右へ回り込み*/
	margin-top: 5px;			/*上下間のバランスをここで調整して下さい*/
	background: transparent;	/*背景色を透明にする設定*/
}
/*メニュー１個あたりの設定*/
#menubar li {
	float: left;	/*左に回り込み*/
	width: 12.5%;		/*メニュー幅（100÷5個=20%）*/
	font-size:0.8em;
}
#menubar li a {
	display:  block;text-decoration: none;
	line-height: 1.6;	/*行間*/
	color: #333;		/*文字色*/
	text-align: center;	/*文字をセンタリング*/
	padding: 10px 0;	/*上下、左右へのメニュー内の余白*/
	border-right: 1px solid #ccc;	/*右側の線の幅、線種、色*/
}
/*メニュー１個あたりの設定　※index.html(.home)への追加設定*/
.home #menubar li {
	width: auto;	/*幅のリセット*/
}
.home #menubar li a {
	background: #000;	/*背景色（古いブラウザ用）*/
	background: linear-gradient(#222, #000);	/*背景グラデーション*/
	color: #fff;		/*文字色*/
	margin-left: 10px;	/*右に空ける余白。メニュー同士の余白です。*/
	padding: 10px 20px;	/*上下、左右へのメニュー内の余白*/
	border-radius: 4px;	/*角丸のサイズ*/
	border: 1px solid #000;	/*枠線の幅、線種、色*/
}
/*１つ目のメニューへの追加設定*/
#menubar li:first-child a {
	border-left: 1px solid #ccc;	/*左側の線の幅、線種、色*/
}
/*１つ目のメニューへの追加設定　※index.html(.home)への追加設定*/
.home #menubar li:first-child a {
	border-left: 1px solid #000;	/*左側の線の幅、線種、色*/
}

/*マウスオン時*/
#menubar li a:hover {
	background: #fff;	/*背景色*/
}
/*マウスオン時　※index.html(.home)への追加設定*/
.home #menubar li a:hover {
	color: #333;		/*文字色*/
	background: #fff;	/*背景色（古いブラウザ用）*/
	background: linear-gradient(#fff, #e3e3e3);	/*背景グラデーション*/
}
/*現在表示中(current)メニューの設定*/
#menubar li.current a {
	background: #202020;	/*背景色*/
	color: #fff;			/*文字色*/
}
/*スマホ用メニューを表示させない*/
#menubar-s {display: none;}
/*３本バーアイコンを表示させない*/
#menubar_hdr {display: none;}

/*contents（mainとsubを囲むブロック）
---------------------------------------------------------------------------*/
#contents {
	clear: both;overflow: hidden;padding-bottom: 40px;
}
/*※index.html(.home)への追加設定*/
.home #contents {
	background: url(../images/img_momiji.png) no-repeat left bottom;	/*背景もみじ画像の読み込み。左、下に配置。*/
}

/*mainコンテンツ
---------------------------------------------------------------------------*/
#main {
	width: 100%;		/*ブロックの幅*/
}
/*１カラム事のmainコンテンツ*/
.c1 #main {
	float: none;
	width: auto;
}
/*h2タグ設定*/
#main h2 {
  position: relative;
  display: block;
  font-size:1.5em;
  font-weight:bold;
  margin-bottom: 1.7em;
  text-align:center;
}
#main h2:before {
  content: '';
  position: absolute;
  bottom: -10px;
  display: inline-block;
  width: 60px;
  height: 5px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #a6937c;
  border-radius: 2px;
}   

/*h3タグ設定*/
#main h3 {
	clear: both;
	margin-bottom: 20px;	/*見出しの下に空けるスペース*/
	font-size: 140%;		/*文字サイズ*/
	font-weight:bold;
	border-left: 5px solid #a6937c;		/*線の幅、線種、色*/
	padding: 5px 15px;		/*上下、左右への見出し内の余白*/
}
/*mainコンテンツのh4タグの設定*/
#main h4 {
	clear: both;
	margin: 15px 0 15px 0;	/*見出しの下にとるスペース*/
	font-size: 18px;		/*文字サイズ*/
	font-weight:bold;
	line-height:140%;
	border-bottom: 1px dotted #ccc;	/*下線の幅、線種、色（古いブラウザ用）*/
}
/*hタグに画像を使った場合用のスタイル*/
#main .img {
	padding: 0 !important;
	border: 0 !important;
	background: none !important;
}
/*段落タグ設定*/
#main p {
	padding: 0px 20px 20px;	/*上、左右、下への余白*/
}
/*他。微調整。*/
#main p + p {
	margin-top: -5px;
}
#main h2 + p,
#main h3 + p,
#main h4 + p {
	margin-top: -10px;
}
#main section + section {
	margin-top: 40px;
}

.menu {
	clear: both;
	margin-bottom: 10px;	/*見出しの下に空けるスペース*/
	font-size: 140%;		/*文字サイズ*/
	font-weight:bold;
	border-left:none!important;
	padding: 7px 0 2px 47px!important; 		/*上下、左右への見出し内の余白*/
	background-image:url(../images/midashibg.png);
	background-position:7px;
	background-repeat:no-repeat;
	background-color:#f5f5f5;
	border-radius:5px;
}
a.btn_02 {
	display: block;
	text-align: center;
	vertical-align: middle;
	text-decoration: none;
	width: 120px;
	margin:10px 0;
	padding: 0.5rem 4rem;
	font-weight: bold;
	border: 1px solid #a6937c;
	border-radius:5px;
	background: #a6937c;
	color: #fff;
	transition: 0.5s;
}
a.btn_02:hover {
	color: #59493f;
	background: #fff;
}
/*top横幅100%設定
---------------------------------------------------------------------------*/
.tbg {
	width:100%;
	background-image:url(../images/bg2_1.jpg);
	background-repeat:repeat;
	margin-bottom:20px;
}
.flexbox {
    display: flex;
	flex-wrap:wrap;
    align-items:stretch;        /* 縦の位置指定 */
    justify-content:space-between;
}
 
.flexitem {
    width:30%;
    padding: 5px;
    margin-top: 30px;              /* 外側の余白 */
    background-color:  #fff; /* 背景色指定 */
    border-radius:  5px;        /* 角丸指定 */
	filter: drop-shadow(3px 3px 5px rgba(0,0,0,0.4));
}


/*ボックス１個あたりの設定*/

/*ボックス（list）設定
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
#main .list {
	position: relative;overflow: hidden;
	background: #fff;		/*背景色*/
	color: #666;			/*文字色*/
	margin-bottom: 20px;	/*ボックス同士の上下間の余白*/
	padding: 20px;			/*ボックス内の余白。ここを変更する場合は、下の「#main .list a」の「margin」と「padding」の数字も変更。*/
}
#main .list a {
	overflow: hidden;display: block;text-decoration: none;
	margin: -20px;	/*ボックス内の余白。ここを変更する場合は、上の「#main .list」の「padding」の数字も変更。※マイナスを必ずつけて下さい。*/
	padding: 20px;	/*ボックス内の余白。ここを変更する場合は、上の「#main .list」の「padding」の数字も変更。*/
	color: #666;	/*文字色*/
}
/*ボックスにリンク指定がされた場合に出る「→」マーク*/
#main .list a::before {
	position: absolute;text-align: center;
	content: "→";		/*この文字を出す。他の文字に変えても可だが機種依存文字は化けるので使わない。*/
	right: 20px;		/*ボックスの右から20pxの場所に配置*/
	bottom: 20px;		/*ボックスの下から20pxの場所に配置*/
	background: #ccc;	/*背景色*/
	color: #fff;		/*文字色*/
	border: 1px solid #fff;	/*枠線の幅、線種、色*/
	width: 30px;		/*幅*/
	line-height: 30px;	/*高さ*/
}
/*マウスオン時の「→」マークの背景色*/
#main .list a:hover::before {
	background: #202020;
}
/*ボックス内の画像設定*/
#main .list figure {
	width: 30%;			/*画像の幅*/
	float: left;		/*左に回り込み*/
	margin-right: 20px;	/*画像の右側に空けるスペース*/
}
/*ボックス内のh4（見出し）タグ設定*/
#main .list h4 {
	clear: both;
	padding: 0;border-bottom: none;
	font-size: 24px;	/*文字サイズ*/
	color: #333;		/*文字色*/
	border-bottom: 1px solid #ccc;	/*下線の幅、線種、色*/
	margin-bottom: 10px;
}
/*ボックス内のh4（見出し）タグの１文字目への設定。左のアクセントラインです。*/
#main .list h4::first-letter {
	border-left: 3px solid #202020;	/*左の線の幅、線種、色*/
	padding-left: 10px;	/*枠線と文字との間の余白*/
}
/*ボックス内のp（段落）タグ設定*/
#main .list p {
	padding: 0;
}

/*list内のアイコン（シニア向け、ご家族向け、カップル向け）
---------------------------------------------------------------------------*/
/*アイコン全体を囲むボックス*/
ul.mark {
	margin-top: -20px;	/*ボックスの上にくっつける為の指定*/
	float: right;		/*ボックスを右側に配置する*/
}
/*アイコン１個あたりの設定*/
ul.mark li {
	line-height: 1;
	float: left;		/*左に回り込み*/
	background: #999;	/*デフォルトの背景色。グレー色。*/
	color: #fff;		/*文字色*/
	font-size: 12px;	/*文字サイズ*/
	padding: 5px 10px;	/*上下、左右へのアイコン内の余白*/
	margin-right: 5px;	/*アイコンの左右間に空けるスペース*/
	margin-bottom: 5px;	/*アイコンの上下間に空けるスペース*/
}
/*mark1（シニア向け）への追加設定*/
ul.mark .mark1 {
	background: #604781;	/*背景色*/
}
/*mark2（ご家族向け）への追加設定*/
ul.mark .mark2 {
	background: #668d22;	/*背景色*/
}
/*mark3（カップル向け）への追加設定*/
ul.mark .mark3 {
	background: #c8436f;	/*背景色*/
}
/*mark4（キャンペーン向け）への追加設定*/
ul.mark .mark4 {
	background: #e38000;	/*背景色*/
}

/*subコンテンツ（左側のブロック）
---------------------------------------------------------------------------*/
#sub {
	float: left;	/*左に回り込み*/
	width: 22%;		/*ブロックの幅*/
}
/*１カラム事のsubコンテンツ*/
.c1 #sub {
	display: none;	/*非表示にする設定*/
}
/*h2見出しタグ設定*/
#sub h2 {
	text-align: center;
	background: #333;	/*背景色（古いブラウザ用）*/
	background: linear-gradient(#333, #111);	/*背景グラデーション*/
	padding: 10px;		/*ボックス内の余白*/
	border: 1px solid #000;		/*枠線の幅、線種、色*/
}

/*サブメニュー（左側ブロックのメニュー）
---------------------------------------------------------------------------*/
/*メニューブロック全体の設定*/
.submenu {
	margin-bottom: 20px;	/*メニューブロックの下にあけるスペース*/
}
/*メニュー１個ごとの設定*/
.submenu li a {
	text-decoration: none;display: block;
	border: 1px solid #555;	/*枠線の幅、線種、色*/
	border-bottom: none;		/*下の枠線だけ消す*/
	background: #222;		/*背景色*/
	padding: 5px 15px;			/*上下、左右へのメニュー内の余白*/
}
/*マウスオン事*/
.submenu li a:hover {
	background: #333;	/*背景色*/
}

/*box
---------------------------------------------------------------------------*/
.box {
	background: #333;	/*背景色*/
	padding: 10px;					/*ボックス内の余白*/
	margin-bottom: 20px;			/*ボックスの下に空けるスペース*/
}
/*box内にsubmenuがある場合、下のmarginをリセットする*/
.box .submenu {
	margin-bottom: 0;
}

/*利用規約・個人情報
---------------------------------------------------------------------------*/
.kiyaku {
		overflow:auto;
		width:96%; 
		height:250px;
		margin-left:2%;
		margin-bottom:20px;
		padding:10px;
		background-color:#efefef;
		line-height:1.5em;
	}
/*フッター設定
---------------------------------------------------------------------------*/
footer {
	clear: both;
	color: #fff;		/*文字色*/
	background: #444;	/*背景色*/
}
/*リンクテキスト*/
footer a {
	color: #fff;	/*文字色*/
	text-decoration: none;
}
/*リンクのマウスオン時*/
footer a:hover {
	color: #fff;
}
footer .pr {display: block;}

/*フッター設定
---------------------------------------------------------------------------*/
footer {
	clear: both;
	font-size: 90%;		/*文字サイズ*/
	color: #fff;		/*文字色*/
	text-align: center;	/*文字をセンタリング*/
	padding: 10px;		/*フッター内の余白*/
}
.home footer {background: none;}
.home footer, .home footer a {color: #ccc;}
footer a {text-decoration: none;color: #ccc;}
footer .pr {display: block;font-size: 80%;}

.fleft{
	float:left;
	width:48%;
	margin-top:20px;
	margin-bottom:5px;
	text-align:left!important;
}
.fright{
	float:right;
	width:48%;
	margin-top:20px;
	margin-bottom:5px;	
}
	
/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#new dl {
	padding: 0px 20px;	/*上下、左右へのボックス内の余白*/
	margin-bottom: 20px;	/*下に空けるスペース*/
}
/*ブロック全体の設定　※index.html(.home)への追加設定*/
.home #new dl {
	height: 200px;	/*高さ*/
	overflow: auto;	/*高さよりコンテンツ量が多くなった場合にスクロールバーを自動で出す設定*/
}
/*日付設定*/
#new dt {
	float: left;	/*左に回り込み*/
	width: 9em;		/*幅*/
	letter-spacing: 0.1em;
}
/*記事設定*/
#new dd {
	padding-left: 9em;	/*左に空ける余白*/
}

/*Informationページのページ内メニュー
---------------------------------------------------------------------------*/
/*メニューボックス全体の設定*/
#pagenav {
	overflow: hidden;
	margin-bottom: 20px;
	color: #fff;		/*文字色*/
	text-align: center;	/*内容をセンタリング*/
	padding: 10px;		/*ボックス内余白*/
	background: #333;	/*背景色（古いブラウザ用）*/
	background: rgba(0,0,0,0.5);	/*背景色。0,0,0は黒の事で0.5は50%色がついた状態の事。*/
}
#pagenav a {
	color: #fff;	/*リンクテキストの文字色*/
}
/*メニュー１個あたりの設定*/
#pagenav li {
	display: inline-block;	/*横並びにさせる設定*/
	margin: 5px;			/*メニュー同士に空けるスペース*/
}

/*テーブル
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta1 caption {
	border: 1px solid #ccc;	/*テーブルの枠線の幅、線種、色*/
	border-bottom: none;	/*下線だけ消す*/
	text-align: left;		/*文字を左寄せ*/
	background: #eee;		/*背景色*/
	color: #666;			/*文字色*/
	font-weight: bold;		/*太字に*/
	padding: 10px;			/*ボックス内の余白*/
}
/*ta1設定*/
.ta1 {
	table-layout: fixed;
	width: 100%;
	margin: 0 auto 20px;
	background: #fff;	/*背景色*/
	color: #666;			/*文字色*/
}
.ta1, .ta1 td, .ta1 th {
	border: 1px solid #ccc;	/*テーブルの枠線の幅、線種、色*/
	padding: 10px 15px;	/*ボックス内の余白*/
	word-break: break-all;
}
/*ta1の左側ボックス*/
.ta1 th {
	width: 140px;		/*幅*/
	text-align: center;	/*センタリング*/
	font-weight: normal;
}

/*ボタン（btn）
---------------------------------------------------------------------------*/
input[type="submit"].btn,
input[type="button"].btn,
input[type="reset"].btn {
	padding: 5px 20px;		/*上下、左右へのボックス内の余白*/
	border-radius: 3px;		/*角丸のサイズ*/
	color: #666;			/*文字色*/
	background: #fff;		/*背景色（古いブラウザ用）*/
	background: linear-gradient(#fff, #eee);/*背景グラデーション*/
}
/*マウスオン時*/
input[type="submit"].btn:hover,
input[type="button"].btn:hover,
input[type="reset"].btn:hover {
	background: #fff;	/*背景色*/
	color: #111;		/*文字色*/
}

/*よく頂く質問ページ
---------------------------------------------------------------------------*/
/*ブロック全体*/
.faq {
	padding: 0px 20px;	/*上下、左右への余白*/
}
/*質問の設定*/
.faq dt {
	color: #e8bf2e;	/*文字色*/
	padding-top: 15px;
	margin-bottom: 10px;
}
/*回答の設定*/
.faq dd {
	border-bottom: 1px solid rgba(255,255,255,0.3);	/*下線の幅、線種、色*/
	overflow: auto;
	padding-bottom: 5px;
}

.cp_qa *, .cp_qa *:after, .cp_qa *:before {
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}
.cp_qa .cp_actab {
	position: relative;
	overflow: hidden;
	width: 100%;
	margin: 0 0 1em 0;
	color: #1b2538;
}
.cp_qa .cp_actab input {
	position: absolute;
	opacity: 0;
}
/* 質問 */
.cp_qa .cp_actab label {
	font-weight: bold;
	line-height: 1.6em;
	position: relative;
	display: block;
	margin: 0 0 0 0;
	padding: 1em 2em 1em 2.5em;
	cursor: pointer;
	text-indent: 1em;
	border-radius: 0.5em;
	background: rgba(246,239,228,0.8);
}
.cp_qa .cp_actab label::before {
	font-family: serif;
	font-size: 1.5em;
	margin-left: -2em;
	padding-right: 0.5em;
	content: 'Q';
}
.cp_qa .cp_actab label:hover {
	transition: all 0.3s;
	color: #e64100;
}
/* --質問の＋アイコン */
.cp_qa .cp_actab label::after {
	font-size: 1.7em;
	font-weight: bold;
	line-height: 2em;
	position: absolute;
	top: 0;
	right: 0;
	content: '+';
	display: inline-block;
	width: 2em;
	height: 2em;
	-webkit-transition: transform 0.4s;
	        transition: transform 0.4s;
}
/* 答え */
.cp_qa .cp_actab .cp_actab-content {
	position: relative;
	overflow: auto;
	max-height: 0;
	padding: 0 0 0 2.5em;
	-webkit-transition: max-height 0.2s;
	        transition: max-height 0.2s;
	border-radius: 0 0 0.5em 0.5em;
}
.cp_qa .cp_actab .cp_actab-content::before {
	font-family: serif;
	font-size: 1.5em;
	position: absolute;
	margin: 0.4em 0 0 -1em;
	padding: 0;
	content: 'A';
}
.cp_qa .cp_actab .cp_actab-content p {
	margin: 1em 1em 1em 0;
}
/* 質問を開いた時の仕様 */
/* --答えの高さ */
.cp_qa .cp_actab input:checked ~ .cp_actab-content {
	max-height: 60em;
	border: 10px solid rgba(246,239,228,0.8);
}
/* 質問をクリックした時のアイコンの動き */
.cp_qa .cp_actab input:checked ~ label {
	color: #e64100;
	border-radius: 0.5em 0.5em 0 0;
}
/* 質問をクリックした時の+の動き */
.cp_qa .cp_actab input[type=checkbox]:checked + label::after {
	-webkit-transform: rotateZ(45deg);
	transform: rotateZ(45deg);
	-webkit-transform-origin: 50% 50%;
	transform-origin: 50% 50%;
}


/*お客様の声
---------------------------------------------------------------------------*/
.balloon5 {
	width: 100%;
	overflow: hidden;
	margin-top: 0em;
	margin-right: 0;
	margin-bottom: 1.5em;
	margin-left: 0;
}

.balloon5 .faceicon {
    float: left;
    margin-right: -90px;
    width: 80px;
}

.balloon5 .faceicon img{
    width: 100%;
    height: auto;
    border: solid 3px #d6c9bb;
    border-radius: 50%;
}

.balloon5 .chatting {
    width: 100%;
}

.says {
	display: inline-block;
	position: relative;
	padding: 10px;
	border-radius: 12px;
	background: #faf5ee;
	margin-top: 5px;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 105px;
}

.says:before{
	content: "";
	position: absolute;
	top: 10%;
	left: -25px;
  	margin-top: 20px;
	border: 15px solid transparent;
	border-right: 15px solid #faf5ee;
 	z-index: 0;
}

.balloon6 {
	width: 100%;
	overflow: hidden;
	margin-top: 0em;
	margin-right: 0;
	margin-bottom: 1.5em;
	margin-left: 0;
}

.balloon6 .faceicon {
    float: right;
    margin-right: 10px;
    width: 80px;
}

.balloon6 .faceicon img{
    width: 100%;
    height: auto;
    border: solid 3px #ffd675;
    border-radius: 50%;
}

.balloon6 .chatting {
    width: 100%;
}

.says1 {
   display: inline-block;
	position: relative;
	padding: 10px;
	border-radius: 12px;
	background: #fdfbe8;
	margin-top: -80px;
	margin-right: 0;
	margin-bottom: 0;
	margin-right: 105px;
}

.says1:before{
	content: "";
	position: absolute;
	top: 20%;
	left: 100%;
 	margin-top: 20px;
	border: 15px solid transparent;
	border-left: 15px solid #fdfbe8;
}


/*ご予約状況ボックス
---------------------------------------------------------------------------*/
.man span {
	color: #BE8406;	/*「■」の色*/
}

/*PAGE TOP（↑）設定
---------------------------------------------------------------------------*/
/*アニメーションのキーフレーム設定（変更不要）*/
@keyframes scroll {
0% {opacity: 0;}
100% {opacity: 1;}
}
/*デフォルトでは非表示に*/
body .nav-fix-pos-pagetop a {display: none;}
/*ボタンの設定*/
body.is-fixed-pagetop .nav-fix-pos-pagetop a {
	display: block;text-decoration: none;text-align: center;z-index: 100;position: fixed;
	width: 60px;		/*幅*/
	line-height: 60px;	/*高さ*/
	border-radius: 50%;	/*角丸のサイズ。円形にする。正方形がいいならこの１行削除。*/
	bottom: 30px;	/*下から30pxの場所に配置*/
	right: 3%;		/*右から3%の場所に配置*/
	background: #000;	/*背景色（古いブラウザ用）*/
	background: rgba(0,0,0,0.6);	/*背景色。0,0,0は黒の事で0.6は色が60%ついた状態の事。*/
	color: #fff;	/*文字色*/
	border: 1px solid #fff;	/*枠線の幅、線種、色*/
	animation-name: scroll;	/*上のアニメーションで指定しているkeyframesの名前（scroll）*/
	animation-duration: 1S;	/*アニメーションの実行時間*/
	animation-fill-mode: forwards;	/*アニメーションの完了後、最後のキーフレームを維持する*/
}
/*マウスオン時*/
body.is-fixed-pagetop .nav-fix-pos-pagetop a:hover {
	background: #999;	/*背景色*/
}

/*「NEW」アイコン
---------------------------------------------------------------------------*/
.newicon {
	background: #F00;	/*背景色*/
	color: #FFF;		/*文字色*/
	font-size: 70%;		/*文字サイズ*/
	line-height: 1.5;
	padding: 2px 5px;
	border-radius: 2px;
	margin: 0px 5px;
	vertical-align: text-top;
}

/*checkブロック。赤い注意書きブロックです。
---------------------------------------------------------------------------*/
p.check {
	background: #ff0000;
	color:#fff;
	padding: 10px 25px !important;
	margin-bottom: 20px;
}
p.check a {color: #fff;}

/*その他
---------------------------------------------------------------------------*/
.look {background: #000;background: rgba(0,0,0,0.3);padding: 5px 10px;border-radius: 4px;}
.mb15,.mb1em {margin-bottom: 15px !important;}
.mb30 {margin-bottom: 30px !important;}
.clear {clear: both;}
ul.disc {padding: 0 20px 20px 40px;list-style: disc;}
.color1, .color1 a {color: #e8bf2e;}
.pr {font-size: 10px;}
.wl {width: 96%;}
.ws {width: 50%;}
.c {text-align: center;}
.r {text-align: right;}
.l {text-align: left;}
img.fr {float: right;margin-left: 10px;margin-bottom: 10px;width: 30%;}
img.fl {float: left;margin-right: 10px;margin-bottom: 10px;width: 30%;}
.fr {float: right;}
.fl {float: left;}
.fl40 {
	float:left;
	width: 28%;
}

.fl750 {
	float:left;
	width:calc(100% - 250px);
}
.fr250 {
	float:right;
	width:250px;
}
.fl230 {
	float:left;
	width: 40%;
}
.fr60 {
	float:right;
	width:70%;
	padding-top:15px;
	background-image:url(../images/bg3.jpg);
	background-repeat:no-repeat;
	background-position:top right;

}

.fl283 {
	float:left;
	width: 283px;
}
.fr717 {
	float:right;
	width:calc(100% - 290px);
}

.fl400 {
	float:left;
	width: 400px;
}
.fl600 {
	float:left;
	width: 600px;
}
.fr400 {
	float:right;
	width:calc(100% - 620px);
}

.fr602 {
	float:right;
	width:58%;
	margin-left:2%;
}
.fl60 {
	float:left;
	width: 60%;
}
.fr40 {
	float:right;
	width:39%;
	margin-left:1%;
	padding-top:15px;
}
.big1 {font-size: 28px;letter-spacing: 0.1em;}
.mini1 {font-size: 11px;display: inline-block;line-height: 1.5;}
.sh {display: none;}

.btnblack{
  width:94%;
  color: #7e6b5a;
  font-size:1em;
  text-align:center;
  background-color: #FFF;
  display: inline-block;
  margin-top:5px;
  margin-bottom:5px;
  padding: 5px 2px;
  border:solid 1px #000;
  border-radius: 0.2rem;
}
.btnblack a{
  color: #000;
  text-decoration:none;
}
.btnblack a:hover{
  color: #f05a5a;
}

.btns{
	width:200px;
	text-align:center;
	margin-top:10px;
	margin-bottom:10px;
	padding-top:5px;
	padding-bottom:5px;
	border:solid 1px #666;
	border-radius:5px;
}
	
/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc { display: block !important; }
.sp { display: none !important; }

#formWrap {
	width:80%;
	margin-left:20px;
	color:#555;
	line-height:120%;
}
table.formTable {
	width:100%;
	margin:0 auto;
	border-collapse:collapse;
}
table.formTable td, table.formTable th {
	border:1px solid #ccc;
	padding:10px;
}
table.formTable th {
	width:30%;
	font-weight:normal;
	background:#efefef;
	text-align:left;
}
.hissu {
	color:#F00;
	font-size:90%;
}

/*画面幅800px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:800px){

/*ヘッダー（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
header {
	background: #fff;	/*背景画像をなくして背景色のみにする*/
	margin-bottom: 10px;	/*ヘッダーと下のコンテンツとの間に空けるスペース*/
}
/*ヘッダーブロックのinner*/
header .inner {
	height: 120px;
	position: static;
	text-align: center;
	padding:5px 3%;
}
/*ロゴ画像*/
header #logo img {
	position: static;
	padding-bottom: 20px;
	width:180px;
}
/*ロゴ画像　※index.html(.home)への追加設定*/
.home header #logo img {
	padding-bottom: 0px;
}

ol#pan{
	margin-left: 10px;
	margin-top:-10px;
	list-style: none;
	text-align:right !important;
	font-size:0.9em;
}
/*「ご予約・お問い合わせ」ボタン*/
#toiawase{
	position: absolute;
	top: 10px;		/*「header .innner」ブロックに対して上から-5pxの場所に配置*/
	right: 80px;		/*「header .innner」ブロックに対して右から3%の場所に配置*/
}
#mainimg {
	margin-bottom: 20px;
}
.flexbox {
    display: flex;
    align-items:stretch;        /* 縦の位置指定 */
    justify-content:space-between;
	flex-wrap:wrap;
}
 
.flexitem {
    width:43.4%;
    padding: 5px;
    margin-top: 30px;              /* 外側の余白 */
    margin-left: 1%;              /* 外側の余白 */
}

.fl400 {
	float:left;
	width: 40%;
}
.fr600 {
	float:right;
	width:57%;
}

/*メインメニュー
---------------------------------------------------------------------------*/
/*アニメーションのフレーム設定。全100コマアニメーションだと思って下さい。透明度(opacity)0%から透明度100%にする指定。*/
@keyframes menu1 {
0% {opacity: 0;}
100% {opacity: 1;}
}
/*スマホ用メニューブロック*/
#menubar-s {
	display: block;overflow: hidden;
	position: absolute;z-index: 10;
	width: 100%;
	top: 70px;					/*上から70pxの場所に配置*/
	border-top: 1px solid #fff;	/*上の線の幅、線種、色*/
	animation-name: menu1;		/*上のkeyframesの名前*/
	animation-duration: 0.5S;	/*アニメーションの実行時間。0.5秒。*/
	animation-fill-mode: both;	/*アニメーションの完了後、最後のキーフレームを維持する*/
}
/*スマホ用メニューブロック　※index.html(.home)への追加設定*/
.home #menubar-s {
	top: 0px;
}
/*メニュー１個あたりの設定*/
#menubar-s li a {
	display: block;text-decoration: none;
	padding: 15px 10px 15px 20px;	/*上、右、下、左へのメニュー内の余白*/
	border-bottom: 1px solid #fff;	/*下の線の幅、線種、色*/
	background: rgba(0,0,0,0.9);	/*背景色*/
	color: #fff;		/*文字色*/
	font-size: 20px;	/*文字サイズ*/
}
/*現在表示中メニュー（current）*/
#menubar-s li.current a {
	color: #e8bf2e;	/*文字色*/
}
/*英語表記（飾り文字）*/
#menubar-s li a span {
	display: block;
	font-size: 12px;	/*文字サイズ*/
}
/*PC用メニューを非表示にする*/
#menubar {
	display: none;
}

/*３本バーアイコン設定
---------------------------------------------------------------------------*/
/*３本バーブロック*/
#menubar_hdr {
	display: block;
	position: absolute;z-index: 20;

	top: 10px;	/*上から10pxの場所に配置*/
	right: 3%;	/*右から3%の場所に配置*/
	border: 1px solid #000;	/*枠線の幅、線種、色*/
}
/*３本バーブロック　※index.html(.home)への追加設定*/
.home #menubar_hdr {
	top: 20px;	/*上から20pxの場所に配置*/
	border: 1px solid #fff;	/*枠線の幅、線種、色*/
}
/*アイコン共通設定*/
#menubar_hdr.close,
#menubar_hdr.open {
	width: 50px;	/*幅*/
	height: 50px;	/*高さ*/
}
/*三本バーアイコン*/
#menubar_hdr.close {
	background: url(../images/icon_menu.png) no-repeat center top/50px;
}
/*三本バーアイコン　※index.html(.home)への追加設定*/
.home #menubar_hdr.close {
	background: url(../images/icon_menu2.png) no-repeat center top/50px;
}
/*閉じるアイコン*/
#menubar_hdr.open {
	background: url(../images/icon_menu.png) no-repeat center bottom/50px;
}
/*閉じるアイコン　※index.html(.home)への追加設定*/
.home #menubar_hdr.open {
	background: url(../images/icon_menu2.png) no-repeat center bottom/50px;
}

/*main,subコンテンツ
---------------------------------------------------------------------------*/
#main, #sub {
	float: none;
	width: auto;
	overflow: hidden;
}

/*その他
---------------------------------------------------------------------------*/
body.s-n #sub,body.s-n #footermenu,.m-n {display: none;}

}

/*画面幅600px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:600px){
#menubar-s {
	top: 130px;	
}
header {
	height:120px;
}

/*h3タグ設定*/
#main h3 {
	font-size: 1.3em!important;		/*文字サイズ*/
}
/*「ご予約・お問い合わせ」ボタン*/
#toiawase{
	position: absolute;
	top: 84px;		/*「header .innner」ブロックに対して上から-5pxの場所に配置*/
	right: 5px;		/*「header .innner」ブロックに対して右から3%の場所に配置*/
}

.fl40 {
	float:none;
	width: 100%;
}

.fl401 {
	float:none;
	width: 100%;
}

.fl40 img{
	width:50%;
	margin-left:25%;
}

.fl401 img{
	width:90%;
	margin-left:5%;
}

.fl400 {
	float:none;
	width: 90%;
	margin:0 auto 15px auto;
}

.fr600 {
	float:none;
	width: 100%;
}
.fl600 {
	float:none;
	width: 90%;
	margin:0 auto 15px auto;
}
.fr400 {
	float:none;
	width: 96%;
	margin:0 auto 15px auto;
}

.fr60 {
	float:none;
	width:100%;
	margin-top:10px;
}

.fr602 {
	float:none;
	width:100%;
	margin-top:10px;
}
.fl60 {
	float:none;
	width: 100%;
}
.fr40 {
	float:none;
	width:96%;
    margin:10px 2% 20px 2%;
}

.fleft{
	float:none;
	width:98%;
	margin-left:1%;
}
.fright{
	float:none;
	width:98%;
	margin-left:1%;
}

.fl750 {
	float:none;
	width: 100%;
}
.fr250 {
	float:none;
	margin:auto!important;
}


/*お客様の声
---------------------------------------------------------------------------*/
.balloon5 {
	width: 100%;
	overflow: hidden;
	margin-top: 0em;
	margin-right: 0;
	margin-bottom: 1.5em;
	margin-left: 0;
}

.balloon5 .faceicon {
    float: none;
    margin-left:35%;
    width: 80px;
}

.balloon5 .faceicon img{
    width: 100%;
    height: auto;
    border: solid 3px #d6c9bb;
    border-radius: 50%;
}

.balloon5 .chatting {
    width: 100%;
}

.says {
	display: inline-block;
	position: relative;
	padding: 10px;
	border-radius: 12px;
	background: #faf5ee;
	margin-top: 5px;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 5px;
}

.says:before{
	display: none;
}

.balloon6 {
	width: 100%;
	overflow: hidden;
	margin-top: 0em;
	margin-right: 0;
	margin-bottom: 1.5em;
	margin-left: 0;
}

.balloon6 .faceicon {
    float: none;
    margin-left:35%;
    width: 80px;
}



.says1 {
	display: inline-block;
	position: relative;
	padding: 10px;
	border-radius: 12px;
	background: #fdfbe8;
	margin-top: 5px;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 5px;
}

.says1:before{
	display: none;
}
.pc { display: none !important; }
.sp { display: block !important; }

}

@media screen and (max-width:572px) {
#formWrap {
	width:95%;
	margin:0 auto;
}
table.formTable th, table.formTable td {
	width:auto;
	display:block;
}
table.formTable th {
	margin-top:5px;
	border-bottom:0;
}
input[type="text"], textarea {
	width:80%;
	padding:5px;
	font-size:110%;
	display:block;
}
input[type="submit"], input[type="reset"], input[type="button"] {
	display:inline-block;
	width:40%;
	margin-right:2%;
	margin-bottom:10px;
	height:40px;
}
.fl283 {
	float:none;
	width: 283px;
	margin-left:auto;
	margin-right:auto;
}
.fr717 {
	float:none;
	width:100%;
}
}

/*画面幅480px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:480px){

/*全体の設定
---------------------------------------------------------------------------*/
body {
	font-size: 0.9em;	/*文字サイズ*/
	line-height: 1.5;	/*行間*/
}

/*ヘッダーブロックのinner*/
header .inner {
	height: 120px;
	position: static;
	text-align: center;
	padding:10px 3% 0 1%;
}

/*ヘッダー（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ロゴ画像*/
header #logo img {
	width: 130px;
	padding-bottom: 5px;
}



/*３本バーアイコン設定　※index.html(.home)への追加設定
---------------------------------------------------------------------------*/
.home #menubar_hdr {
	top: 13px;	/*上から13pxの場所に再配置*/
}

/*mainコンテンツ
---------------------------------------------------------------------------*/
#main h2, #main h3, #main h4 {
	font-size: 14px;
	padding-left: 10px;
	padding-right: 10px;
}
/*段落タグ設定*/
#main p {
	padding: 0px 10px 20px;	/*上、左右、下への余白*/
}

/*ボックス（list）設定
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
#main .list {
	padding: 10px;	/*ボックス内の余白。ここを変更する場合は、下の「#main .list a」の「margin」と「padding」の数字も変更。*/
}
#main .list a {
	margin: -10px;	/*ボックス内の余白。ここを変更する場合は、上の「#main .list」の「padding」の数字も変更。※マイナスを必ずつけて下さい。*/
	padding: 10px;	/*ボックス内の余白。ここを変更する場合は、上の「#main .list」の「padding」の数字も変更。*/
}
/*ボックス内のh4（見出し）タグ設定*/
#main .list h4 {
	font-size: 16px;
}
/*ボックスにリンク指定がされた場合に出る「→」マーク*/
#main .list a::before {
	right: 10px;		/*ボックスの右から10pxの場所に配置*/
	bottom: 10px;		/*ボックスの下から10pxの場所に配置*/
	width: 20px;		/*幅*/
	line-height: 20px;	/*高さ*/
}

/*list内のアイコン（シニア向け、ご家族向け、カップル向け）
---------------------------------------------------------------------------*/
/*アイコン全体を囲むボックス*/
ul.mark {
	margin-top: -10px;	/*ボックスの上にくっつける為の指定*/
}
/*アイコン１個あたりの設定*/
ul.mark li {
	font-size: 10px;	/*文字サイズ*/
	padding: 2px 5px;	/*上下、左右へのアイコン内の余白*/
}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#new dl {
	padding: 0 10px;	/*上下、左右へのボックス内の余白*/
}

/*テーブル（ta1）
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta1 caption {
	padding: 5px;	/*ボックス内の余白*/
}
/*ta1設定*/
.ta1, .ta1 td, .ta1 th {
	padding: 5px;	/*ボックス内の余白*/
}
/*ta1の左側ボックス*/
.ta1 th {
	width: 100px;
}

/*その他
---------------------------------------------------------------------------*/
.ws,.wl {width: 94%;}
.big1 {font-size: 16px;}
img.fr,img.fl {float: none;margin: 0;width: 100%;}
.sh {display:block;}
.pc {display:none;}

body.is-fixed-pagetop .nav-fix-pos-pagetop a {
	bottom: 5px;	/*下から30pxの場所に配置*/
}
}