﻿@charset "UTF-8";
/* CSS Document */
/* ====================================
ヘッダー、header.cssフッターfooter.css記載
全体レイアウトcommon_layout.css記載
ページタイトル　common_item.css記載
先頭にcommonが付くタグcommon_item.css記載
===================================== */
/* ====================================

ページ共通文字サイズ色など

===================================== */
/*基本fontサイズと色*/
#right_contents{
font-size: 14px;
  line-height: 18px;
	color: #343232;
}
		  
/*注意書き*/
.font_tyuuigaki { /*<p>指定　注意書き用文字サイズ*/
  font-size: 10px;
}
.tyuui_mark, .txt_red { /*<span>指定　注意書きの先頭につける（*）   赤文字*/
  color: #FF0000;
}
.red {
  color: #F7060A;
}

/*リンク処理*/
#right_contents a {
  text-decoration: none;
	color: #343232;
}
#right_contents a:hover {
  color: #E44040;
}
/* ====================================
ページ内共通
===================================== */
#ticket {

}
.common_tyuui{
	text-align: center;
}
/* =======================================================================================================

チケット販売所一覧テーブル

========================================================================================================== */
/*左右のテーブル囲み*/
#ticket .wrap{
	width: 100%;
	margin-top: 20px;
	text-align: center;
	border: solid 0px;
	margin-bottom: 50px;
}
#ticket .wrap table.hanbaisyo_tbl{
	display: inline-block;
	vertical-align: top;
}
/*テーブル設定*/
table.hanbaisyo_tbl {
  width: 100%;
	max-width: 320px;
  text-align: left;
  vertical-align: middle;
  margin-bottom: 50px;
	margin-right: 4%;
  border-collapse: collapse; /* 囲み線を1本で重なりをなくす table,th,tdに指定 */
  border: 0px solid;
}
table.hanbaisyo_tbl:last-child {
	margin-right: 0px;
}

table.hanbaisyo_tbl tr {/*行の修飾*/
  border-collapse: collapse;
  border-top: 1px solid #5EBBB2;
}
table.hanbaisyo_tbl tr:last-child {
  border-bottom: 1px solid #5EBBB2; 
}

table.hanbaisyo_tbl td {/*項目の修飾*/
  padding: 8px 5px; 
  border: solid 0px;
}

table.hanbaisyo_tbl .td01{/*販売所*/
	width: 50%;
	border: solid 0px;
}

table.hanbaisyo_tbl .td02{/*電話番号*/
	width: 35%;
	border: solid 0px;
}
/* =======================================================================================================

電話予約方法　各種サービス　共通

========================================================================================================== */
#ticket .yoyakuhouhou,#ticket .service{
		width: 100%;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 50px;
	border: solid 0px;
}


/* 番号修飾　OL
=========================================================== */
#ticket ol {

  counter-reset: number; /* 数字をリセット */
  list-style-type: none !important; /* 数字を一旦消す */
  padding: 0em;
  margin: 0; /* olの余白をなくす */
}
#ticket ol li {
  position: relative;
  line-height: 1.5em;
  padding: 0em 0em 0.5em 30px; /* 左余白30px以上必須 */
}
#ticket ol li:before {
  /* 以下数字をつける */
  position: absolute;
  counter-increment: number;
  content: counter(number);
  /* 以下数字のデザイン変える */
  display: inline-block;
  background: #74C4E7; /* 青 */
  color: white;
  font-family: 'Avenir', 'Arial Black', 'Arial', sans-serif;
  font-weight: bold;
  font-size: 15px;
  border-radius: 50%;
  left: 0;
  width: 22px;
  height: 22px;
  line-height: 22px;
  text-align: center;
}	
	
	

/* ====================================

ディバイスサイズ設定

===================================== */
/* スマホ用 */
@media (max-width: 749px) {

	/*テーブル設定*/
.wrap table.hanbaisyo_tbl{
	display: block;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
}
}
/* タブレット用 */
@media (min-width: 750px) and (max-width: 1023px) {

}
/* PC用 */
@media (min-width: 1024px) {}