@charset "utf-8";
/* ▼タブ設定 */
.tabbox {
	margin,padding: 0px;
	width: 650px; /* 全体の横幅 */
}/* 表示領域全体 */

.tabs {
	margin,padding: 0px;
}/* 上部タブ */
.tabs li {
	float: left;  /* リスト項目を横方向に並べる */
	width: 120px; /* タブのデフォルトの横幅 */
	height: 30px;
}/* 上部タブliで使用 */

#tabBlank {
	margin-top: 3px;/* activeでないtabを下げる */
	width: 138px;
	height: 26px;/* 30-2(margin-top)-1(border-bottom) */
	border-left: 1px solid #c8c4c4;
	border-bottom: 1px solid #c8c4c4;
}/* 上部タブ右スペース部分にライン(4タブ) */

.tabs a {
	display: block;  /* ブロックレベルに */
	padding: 10px 0 0 0;/* 内側の余白 */
	height: 20px; /* タブの高さ 30-padding5×2*/
	font-size: 13px;
	line-height: 13px;
	text-align: center; /* 中央寄せ */
	text-decoration: none; /* 下線を消す */
}
.tabs a:hover{
	text-decoration: underline; /* 下線 */
}

/* ▼タブに対応するボックス領域 */
.tab {
	/*height: 150px;  ボックスの横幅 */
	/*overflow: auto;  スクロールバー自動表示 */
	clear: left; /* 回り込み解除(必須) */
	padding: 5px;
	border-right: 1px solid #d2cfcf;
	border-bottom: 1px solid #d2cfcf;
	border-left: 1px solid #d2cfcf;
	zoom: 1
}

.tabbox {
	width: 100%;
}/* tab.cssで650指定された幅を宿泊プラン用に書き換え */

/*.tabbox .content {
	width: 640px;
}/* tab幅に合わせて横幅書き換え */

/*.tabbox .title{
	width: 620px;
}/* tab幅に合わせて横幅書き換え */



