@charset "UTF-8";


/* -----------------------------------------------
CSS INFO

 Style Info:     ボタンごとのCSS設定
 last update:    2011.05.13

1.カラーバリエーション(TOP仕様)
2.番号(TOP仕様)
3.もっとみる
4.コンテンツ見出し
5.サイト全体の共有ボタン
6.エラーメッセージ
7.フォームパーツ
8.ページャー
9.テーブルレイアウトカラー
10.その他

----------------------------------------------- */

/* ====================================================================================================

	1.カラーバリエーション(TOP仕様)

======================================================================================================= */
.btn_black {
	background: #111111;
	background:-moz-linear-gradient(
		top,
		#585859 0%,
		#585859 6%,
		#111111);
	background:-o-linear-gradient(
		top,
		#585859 0%,
		#585859 6%,
		#111111);
	background:-webkit-gradient(
		linear, left top, left bottom, 
		from(#585859),
		color-stop(0.06, #585859),
		to(#111111));
	background:linear-gradient(
		top,
		#585859 0%,
		#585859 6%,
		#111111);
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	-webkit-tap-highlight-color:rgba(251,3,152,0.70);
}
.btn_black a{ 	border:1px solid #000; }
/*.btn_black a:hover {
	background: #F8016A;
	background:-moz-linear-gradient(
		top,
		#F476A5 0%,
		#F476A5 6%,
		#F8016A);
	background:-o-linear-gradient(
		top,
		#F476A5 0%,
		#F476A5 6%,
		#F8016A);
	background:-webkit-gradient(
		linear, left top, left bottom, 
		from(#F476A5),
		color-stop(0.06, #F476A5),
		to(#F8016A));
	background:linear-gradient(
		top,
		#F476A5 0%,
		#F476A5 6%,
		#F8016A);
	border:1px solid #F8016A;
}*/

.btn_white{
	background: #F4F3F4;
	background:-moz-linear-gradient(
		top,
		#fff 0%,
		#fff 6%,
		#F4F3F4);
	background:-o-linear-gradient(
		top,
		#fff 0%,
		#fff 6%,
		#F4F3F4);
	background:-webkit-gradient(
		linear, left top, left bottom, 
		from(#fff),
		color-stop(0.06, #fff),
		to(#F4F3F4));
	background:linear-gradient(
		top,
		#fff 0%,
		#fff 6%,
		#F4F3F4);
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
}

.btn_pink{
	background: #F8016A;
	background:-moz-linear-gradient(
		top,
		#F476A5 0%,
		#F476A5 6%,
		#F8016A);
	background:-o-linear-gradient(
		top,
		#F476A5 0%,
		#F476A5 6%,
		#F8016A);
	background:-webkit-gradient(
		linear, left top, left bottom, 
		from(#F476A5),
		color-stop(0.06, #F476A5),
		to(#F8016A));
	background:linear-gradient(
		top,
		#F476A5 0%,
		#F476A5 6%,
		#F8016A);
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
}
.btn_pink a { border:1px solid #F8016A; }

.btn_green{
	background: #9de676;
	background: -moz-linear-gradient(top,  #9de676 0%, #66cc33 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#9de676), color-stop(100%,#66cc33));
	background: -webkit-linear-gradient(top,  #9de676 0%,#66cc33 100%);
	background: -o-linear-gradient(top,  #9de676 0%,#66cc33 100%);
	background: -ms-linear-gradient(top,  #9de676 0%,#66cc33 100%);
	background: linear-gradient(to bottom,  #9de676 0%,#66cc33 100%);
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
}
.btn_green a{ border: 1px solid #4FA226; }

.btn_logout {
	background: #111111;
	background:-moz-linear-gradient(
		top,
		#585859 0%,
		#585859 6%,
		#111111);
	background:-o-linear-gradient(
		top,
		#585859 0%,
		#585859 6%,
		#111111);
	background:-webkit-gradient(
		linear, left top, left bottom, 
		from(#585859),
		color-stop(0.06, #585859),
		to(#111111));
	background:linear-gradient(
		top,
		#585859 0%,
		#585859 6%,
		#111111);
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	-webkit-tap-highlight-color:rgba(251,3,152,0.70);
}


/* ====================================================================================================

	2.番号(TOP仕様)

======================================================================================================= */
.btn_number{ 
	background: #333;
	background:-moz-linear-gradient(
		top,
		#333 0%,
		#000 6%,
		#333);
	background:-o-linear-gradient(
		top,
		#333 0%,
		#000 6%,
		#333);
	background:-webkit-gradient(
		linear, left top, left bottom, 
		from(#333),
		color-stop(0.06, #000),
		to(#333));
	background:linear-gradient(
		top,
		#333 0%,
		#000 6%,
		#333);
}
.btn_number a.current {
	background: #FFCCFF;
	background:-moz-linear-gradient(
		top,
		#FFCCFF 0%,
		#E31F69 6%,
		#FFCCFF);
	background:-o-linear-gradient(
		top,
		#FFCCFF 0%,
		#E31F69 6%,
		#FFCCFF);
	background:-webkit-gradient(
		linear, left top, left bottom, 
		from(#FFCCFF),
		color-stop(0.06, #E31F69),
		to(#FFCCFF));
	background:linear-gradient(
		top,
		#FFCCFF 0%,
		#E31F69 6%,
		#FFCCFF);
}


/* ====================================================================================================

	3.もっとみる

======================================================================================================= */
.btn_more_p a {
	width:auto;
	height:51px;
	background:
		url(../../../img/sp/common/ico_arwr.png) no-repeat right 10px,
		url(../../../img/sp/common/bg_more.png) repeat-x 0 0;
	display:block;
	text-align:center;
	color:#FF598B;
	padding:9px 0 0 0;
}

.btn_more_g a {
	width:auto;
	height:51px;
	background:
		url(../../../img/sp/common/ico_arwb.png) no-repeat right 10px,
		url(../../../img/sp/common/bg_more02.png) repeat-x 0 0;
	display:block;
	text-align:center;
	color:#666;
	padding:9px 0 0 0;
}


/* ====================================================================================================

	4.コンテンツ見出し

======================================================================================================= */
.statictitle{
	margin: 0 10px 10px;
	font-weight: bold;
}

.stitle{
	font-weight: bold;
	padding: 3px 5px;
	background: none repeat scroll 0 0 #f0f0f0;
	border-top: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	font-size: 14px;
	margin-bottom: 10px;
}

.actiontitle{
	margin: 8px 5px 5px;
	padding: 1px 5px;
	border: solid 5px #DDDDDD;
	font-weight: bold;
	text-align: center;
	font-size: 14px;
}
/*
.maintitle {
	width:auto;
	padding:6px 0 4px 35px;
	margin-bottom: 10px;
	background:url(../../../img/sp/common/ico_logo.png) no-repeat 5px 5px;
	background-size:24px;
	-moz-background-size:24px;
	-webkit-background-size:24px;
	border-bottom: 5px solid #E31F69;
	font-size: 18px;
	font-weight:bold;
	line-height: 1.3;
}
*/

.maintitle {
	width:auto;
	padding:3px 0px;
	margin:0 5px 5px;
	border-bottom: 1px solid #ff7c60;
	font-size: 24px;
	font-weight:bold;
	line-height: 1.3;
}

.Nsubtitle {
	width:auto;
	padding:3px 10px;
	margin:0 5px 5px;
	border-left: 5px solid #E31F69;
	font-size: 18px;
	font-weight:bold;
	line-height: 1.3;
}


/* default pink */
.subtitle {
	width:auto;
	background: #FF659D;
	background:-moz-linear-gradient(
		top,
		#FE97C4 0%,
		#FE97C4 6%,
		#FF659D);
	background:-o-linear-gradient(
		top,
		#FE97C4 0%,
		#FE97C4 6%,
		#FF659D);
	background:-webkit-gradient(
		linear, left top, left bottom, 
		from(#FE97C4),
		color-stop(0.06, #FE97C4),
		to(#FF659D));
	background:linear-gradient(
		top,
		#FE97C4 0%,
		#FE97C4 6%,
		#FF659D);
	color:#FFF;
	font-weight:bold;
	text-shadow: 1px 1px 1px #FE97C4;
	overflow:hidden;
	padding:2px 0 2px 10px;
}

/* aqua */
.st_col_aq {
background: #2478bd;
	background:-moz-linear-gradient(
		top,
		#96c9f6 0%,
		#76b4eb 6%,
		#2478bd);
	background:-o-linear-gradient(
		top,
		#96c9f6 0%,
		#76b4eb 6%,
		#2478bd);
	background:-webkit-gradient(
		linear, left top, left bottom, 
		from(#96c9f6),
		color-stop(0.06, #76b4eb),
		to(#2478bd));
	background:linear-gradient(
		top,
		#96c9f6 0%,
		#76b4eb 6%,
		#2478bd);
	text-shadow:1px 1px 1px #2286d2;
}

/* blue */
.st_col_bl {
	background: #162b99;
	background:-moz-linear-gradient(
		top,
		#719be1 0%,
		#254db4 6%,
		#162b99);
	background:-o-linear-gradient(
		top,
		#719be1 0%,
		#254db4 6%,
		#162b99);
	background:-webkit-gradient(
		linear, left top, left bottom, 
		from(#719be1),
		color-stop(0.06, #254db4),
		to(#162b99));
	background:linear-gradient(
		top,
		#719be1 0%,
		#254db4 6%,
		#162b99);
	text-shadow:1px 1px 1px #00C;
}

/* green */
.st_col_gr {
	background: #619b40;
	background:-moz-linear-gradient(
		top,
		#8bc66a 0%,
		#76b453 6%,
		#619b40);
	background:-o-linear-gradient(
		top,
		#8bc66a 0%,
		#76b453 6%,
		#619b40);
	background:-webkit-gradient(
		linear, left top, left bottom, 
		from(#8bc66a),
		color-stop(0.06, #76b453),
		to(#619b40));
	background:linear-gradient(
		top,
		#8bc66a 0%,
		#76b453 6%,
		#619b40);
	text-shadow:1px 1px 1px #3b721b;
}

/* gray */
.st_col_gy {
	background: #333;
	background:-moz-linear-gradient(
		top,
		#666 0%,
		#333 6%,
		#000);
	background:-o-linear-gradient(
		top,
		#666 0%,
		#333 6%,
		#000);
	background:-webkit-gradient(
		linear, left top, left bottom, 
		from(#666),
		color-stop(0.06, #333),
		to(#000));
	background:linear-gradient(
		top,
		#666 0%,
		#333 6%,
		#000);
	text-shadow:1px 1px 1px #000;
}

/* orange */
.st_col_or {
	background: #ff9900;
	background:-moz-linear-gradient(
		top,
		#dd7700 0%,
		#ff9900 6%,
		#dd5500);
	background:-o-linear-gradient(
		top,
		#dd7700 0%,
		#ff9900 6%,
		#dd5500);
	background:-webkit-gradient(
		linear, left top, left bottom, 
		from(#dd7700),
		color-stop(0.06, #ff9900),
		to(#dd5500));
	background:linear-gradient(
		top,
		#dd7700 0%,
		#ff9900 6%,
		#dd5500);
	text-shadow: 0px 1px 1px #CC6600;
}

.ico_mail {
	padding:8px 0 4px 48px;
	background:url(../../../img/sp/common/ico_mail.png) no-repeat 5px 5px;
	border-bottom: 5px solid #2286d2;
}

/* tour title */
.tourtitle, .headtitle{
	padding:3px 5px;
	background-color:#222222;
	border-top:solid 1px #444444;
	border-bottom:solid 1px #000;
	line-height: 1.3;
}
.tourtitle span, .headtitle span{
	display:block;
	padding-left:7px;
	border-left:solid 4px #E31F69;
	color:#FFF;
	font-weight:bold;
	text-shadow:0px 1px 1px #000;
}
.precedingtitle{
	margin-bottom: 5px;
	font-weight:bold;
	-moz-box-shadow: 0px 1px 2px #ccc;
	-webkit-box-shadow: 0px 1px 2px #ccc;
	-o-box-shadow: 0px 1px 2px #ccc;
	border-bottom:solid 1px #FFF;
	box-shadow: 0px 1px 2px #ccc;
	color:#000;
}

/* ====================================================================================================

	5.サイト全体の共有ボタン

======================================================================================================= */
.content .btn {
	-webkit-appearance: none;
	display: block;
	text-align: center;
	line-height: 1.2;
	border: none;
	border-radius: 3px;
	margin: 10px 0;
}

.content input.btn {
	width: 100%;
}

.content .b_siz_s {
	padding: 3px 0 4px;
}

.content .b_siz_l {
	padding: 10px 0;
}

/* red */
.content .b_col_rd {
	background: #cc0000;
	background: -moz-linear-gradient(
		top,
		#d82e2e 0%,
		#cc0000 50%,
		#990000);
	background: -o-linear-gradient(
		top,
		#d82e2e 0%,
		#cc0000 50%,
		#990000);
	background: -webkit-gradient(
		linear, left top, left bottom, 
		from(#d82e2e),
		color-stop(0.50, #cc0000),
		to(#990000));
	background: linear-gradient(
		top,
		#d82e2e 0%,
		#cc0000 50%,
		#990000);
	border: 1px solid #cc0000;
	text-shadow: 0px -1px 1px #900;
	color: #FFF;
}

/* pink */
.content .b_col_pk {
	background: #e9537d;
	color: #fff;
}

/* gray */
.content .b_col_gy {
	background: #888;
	color: #fff;
}

/* blue */
.content .b_col_bl {
	background: #254db4;
	background: -moz-linear-gradient(
		top,
		#719be1 0%,
		#254db4 25%,
		#162b99);
	background: -o-linear-gradient(
		top,
		#719be1 0%,
		#254db4 25%,
		#162b99);
	background: -webkit-gradient(
		linear, left top, left bottom, 
		from(#719be1),
		color-stop(25%, #254db4),
		to(#162b99));
	background: linear-gradient(
		top,
		#719be1 0%,
		#254db4 25%,
		#162b99);
	border:1px solid #162b98;
	text-shadow: 0px -1px 1px #00C;
	color: #FFF;
}

/* aqua */
.content .b_col_aq {
	background: #2478bd;
	background: -moz-linear-gradient(
		top,
		#7fb7f2 0%,
		#64a8e5 25%,
		#2478bd);
	background: -o-linear-gradient(
		top,
		#7fb7f2 0%,
		#64a8e5 25%,
		#2478bd);
	background: -webkit-gradient(
		linear, left top, left bottom, 
		from(#7fb7f2),
		color-stop(25%, #64a8e5),
		to(#2478bd));
	background: linear-gradient(
		top,
		#7fb7f2 0%,
		#64a8e5 25%,
		#2478bd);
	border:1px solid #2286d2;
	text-shadow: 0px -1px 1px #1262b3;
	color: #FFF;
}

/* orange */
.content .b_col_og {
	background: #F60;
	background: -moz-linear-gradient(
		top,
		#ffa351 0%,
		#F60 25%,
		#d83d00);
	background: -o-linear-gradient(
		top,
		#ffa351 0%,
		#F60 25%,
		#d83d00);
	background: -webkit-gradient(
		linear, left top, left bottom, 
		from(#ffa351),
		color-stop(25%, #F60),
		to(#d83d00));
	background: linear-gradient(
		top,
		#ffa351 0%,
		#F60 25%,
		#d83d00);
	border:1px solid #d83d00;
	text-shadow: 0px -1px 1px #d83d00;
	color: #FFF;
}

/* green */
.content .b_col_gr {
	background: #F60;
	background: -moz-linear-gradient(
		top,
		#c7f06b 0%,
		#8fe047 25%,
		#5abe28);
	background: -o-linear-gradient(
		top,
		#c7f06b 0%,
		#8fe047 25%,
		#5abe28);
	background: -webkit-gradient(
		linear, left top, left bottom, 
		from(#c7f06b),
		color-stop(25%, #8fe047),
		to(#5abe28));
	background: linear-gradient(
		top,
		#c7f06b 0%,
		#8fe047 25%,
		#5abe28);
	border:1px solid #65cb33;
	text-shadow: 0px -1px 1px #468124;
	color: #FFF;
}

/* black */
.content .b_col_bk {
	background: #F60;
	background: -moz-linear-gradient(
		top,
		#666 0%,
		#222222 25%,
		#000);
	background: -o-linear-gradient(
		top,
		#666 0%,
		#222222 25%,
		#000);
	background: -webkit-gradient(
		linear, left top, left bottom, 
		from(#666),
		color-stop(25%, #222222),
		to(#000));
	background: linear-gradient(
		top,
		#666 0%,
		#222222 25%,
		#000);
	border:1px solid #000;
	text-shadow: 0px -1px 1px #000;
	color: #FFF;
}

/* dummy button */
.content .b_dummy {
	background: #ddd;
	color: #aaa;
}

/* ====================================================================================================

	6.エラーメッセージ

======================================================================================================= */
.err_msg {
	width: auto;
	margin: 0 5px 10px;
	color: #C00;
}

.err_msg .err_ttl {
	width: auto;
	padding: 1px 10px 1px 35px;
	background: url(../../../img/sp/common/ico_atten.png) no-repeat 5px 0px;
	font-weight: bold;
	line-height: 1.2;
}

.err_msg ul {
	margin: 0 5px;
	padding-top: 5px;
}

.err_msg ul li {
	width:auto;
	margin-bottom: 5px;
	padding: 2px;
	border-bottom: dotted 1px #000;
	line-height: 1.4;
	font-size:14px;
}

.err_msg ul li a{
	text-decoration:underline;
}
.content table th.err, .content table td.err {
	background-color: #FFCCCC;
	border-bottom:1px solid #f3acac;
	border-right:1px solid #f3acac;
}

.content table th.err {
	color: #C00;
}

.content dl dt.err {
	color: #C00;
	border-top:1px solid #f3acac;
	border-bottom:1px solid #f3acac;
	background-color: #f3acac;
}

.content dl dd.err {
	background-color: #FFCCCC;
}

.content table input[type="text"],
.content table input[type="tel"],
.content table input[type="email"],
.content table input[type="password"] {
	width: 100%;
	height: auto;
	box-sizing: border-box;
	padding: 5px;
}



/* ====================================================================================================

	7.フォームパーツ

======================================================================================================= */
.content dl dd.radioBtn:after { content: ''; display: block; clear: both; }
.content dl dd.radioBtn li {
	position: relative;
	list-style: none;
	float: left;
	width: 50%;
}

.content dl dd.radioBtn label {
	display: block;
	padding: 5px 12px;
	background: #bbbbbb;
	background:-moz-linear-gradient(
		top,
		#fff 0%,
		#ccc 50%,
		#aaa 50%,
		#bbb);
	background:-o-linear-gradient(
		top,
		#fff 0%,
		#ccc 50%,
		#aaa 50%,
		#bbb);
	background:-webkit-gradient(
		linear, left top, left bottom, 
		from(#fff),
		color-stop(0.50, #ccc),
		color-stop(0.50, #aaa),
		to(#bbb));
	background:linear-gradient(
		top,
		#fff 0%,
		#ccc 50%,
		#aaa 50%,
		#bbb);
	border: 1px solid #666;
	border-radius: 10px 0 0 10px;
	-moz-border-radius: 10px 0 0 10px;
	-webkit-border-top-left-radius: 10px;
	-webkit-border-bottom-left-radius: 10px;
	font-weight: bold;
	text-shadow: 0 1px #FFF;
	text-align: center;
	color: #000;
}

.content dl dd.radioBtn li:last-child label {
	border-left: 0;
	border-radius: 0 10px 10px 0;
	-moz-border-radius: 0 10px 10px 0;
	-webkit-border-top-right-radius: 10px;
	-webkit-border-bottom-right-radius: 10px;
}

.content dl dd.radioBtn input[type="radio"]:checked + label {
	text-shadow: 0px -1px 1px #c80064;
	background: #F8016A;
	background:-moz-linear-gradient(
		top,
		#F8016A 0%,
		#F476A5 50%,
		#F476A5);
	background:-o-linear-gradient(
		top,
		#F8016A 0%,
		#F476A5 50%,
		#F476A5);
	background:-webkit-gradient(
		linear, left top, left bottom, 
		from(#F8016A),
		color-stop(0.50, #F476A5),
		to(#F476A5));
	background:linear-gradient(
		top,
		#F8016A 0%,
		#F476A5 50%,
		#F476A5);
	color: #fff;
}

/* radio button aqua color*/
.content dl dd.col_aq input[type="radio"]:checked + label {
	text-shadow: 0px -1px 1px #1262b3;
	background: #64a8e5;
	background:-moz-linear-gradient(
		top,
		#2478bd 0%,
		#64a8e5 50%,
		#7fb7f2);
	background:-o-linear-gradient(
		top,
		#2478bd 0%,
		#64a8e5 50%,
		#7fb7f2);
	background:-webkit-gradient(
		linear, left top, left bottom, 
		from(#2478bd),
		color-stop(0.50, #64a8e5),
		to(#7fb7f2));
	background:linear-gradient(
		top,
		#2478bd 0%,
		#64a8e5 50%,
		#7fb7f2);
}

.content dl dd.radioBtn input[type="radio"] {
	opacity : 0;
	position: absolute;
	top: -3px;
	left: -3px;
	width: 100%;
	height: 100%;
	padding: 0;
}

.content .radioBtnSgl {
	position: relative;
}

.content .radioBtnSgl label {
	display: block;
	padding: 5px 12px;
	background:#EEEEEE url(../../../img/sp/common/ico_radio.png) no-repeat 8px center;
	border: 1px solid #999;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	font-weight: bold;
	text-shadow: 0 1px #fff;
	text-align: center;
	color: #000;
	line-height: 1.2;
}

.radioBtnSgl input[type="radio"]:checked + label {
	text-shadow: 0px -1px 1px #c80064;
	background:#F8016A url(../../../img/sp/common/ico_radioon.png) no-repeat 8px center;
	border: 1px solid #d3095f;
	color: #fff;
}

.content .radioBtnSgl input[type="radio"] {
	opacity: 0;
	position: absolute;
	top: 10px;
	left: 20px;
	width: 90%;
	padding: 0;
}

.content .checkBtn {
	position: relative;
	padding: 0 10px 10px;
}

.content .checkBtn2 {
	position: relative;
	padding: 0 10px 5px;
}

.content .checkBtn2:last-child {
	padding: 0 10px 0;
}

.content table .checkBtn {
	padding: 0;
}

.content .checkBtn label {
	display: block;
	padding: 8px 12px 8px 30px;
	background:#EEEEEE url(../../../img/sp/common/ico_check.png) no-repeat 8px center;
	border: 1px solid #999;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	font-weight: bold;
	text-shadow: 0 1px #fff;
	text-align: center;
	color: #000;
	line-height: 1.2;
}

.content .checkBtn2 label {
	display: block;
	padding: 8px 12px 8px 30px;
	background:#FFF url(../../../img/sp/common/ico_check.png) no-repeat 8px center;
	color: #000;
	line-height: 1.2;
}

.checkBtn input[type="checkbox"]:checked + label {
	text-shadow: 0px -1px 1px #c80064;
	background:#F8016A url(../../../img/sp/common/ico_checked.png) no-repeat 8px center;
	border: 1px solid #d3095f;
	color: #fff;
}

.checkBtn2 input[type="checkbox"]:checked + label {
	background:#f5ccdd url(../../../img/sp/common/ico_checked.png) no-repeat 8px center;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
}

.checkBtn2 input[type="hidden"] + label {
	background:#aaaaaa url(../../../img/sp/common/ico_checked.png) no-repeat 8px center;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
}

.content .checkBtn input[type="checkbox"],
.content .checkBtn2 input[type="checkbox"] {
	opacity: 0;
	position: absolute;
	top: 10px;
	left: 20px;
	width: 90%;
	padding: 0;
}

/* ====================================================================================================

	8.ページャー

======================================================================================================= */
#pager {
	clear: both;
	width:100%;
	text-align:center;
	padding:7px 0 7px;
}

#pager a {
	background: #222222;
	background: -moz-linear-gradient(
		top,
		#999999 0%,
		#333333 50%,
		#222222 50%,
		#000000);
	background: -o-linear-gradient(
		top,
		#999999 0%,
		#333333 50%,
		#222222 50%,
		#000000);
	background: -webkit-gradient(
		linear, left top, left bottom, 
		from(#999999),
		color-stop(0.50, #333333),
		color-stop(0.50, #222222),
		to(#000000));
	background: linear-gradient(
		top,
		#999999 0%,
		#333333 50%,
		#222222 50%,
		#000000);
	border: 1px solid #000000;
	text-shadow: 0px -1px 1px #000;
}

#pager span {
	background: #F8016A;
	background: -moz-linear-gradient(
		top,
		#F476A5 0%,
		#fa3488 50%,
		#F8016A 50%,
		#F8016A);
	background: -o-linear-gradient(
		top,
		#F476A5 0%,
		#fa3488 50%,
		#F8016A 50%,
		#F8016A);
	background: -webkit-gradient(
		linear, left top, left bottom, 
		from(#F476A5),
		color-stop(0.50, #fa3488),
		color-stop(0.50, #F8016A),
		to(#F8016A));
	background: linear-gradient(
		top,
		#F476A5 0%,
		#fa3488 50%,
		#F8016A 50%,
		#F8016A);
	border: 1px solid #F8016A;
	text-shadow: 0px -1px 1px #c80064;
}

#pager a, #pager span {
	margin: 0 2px 5px 0;
	padding:2px 8px;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	text-align: center;
	font-size:15px;
	color: #FFF;
	line-height: 2.0;
}


/* ====================================================================================================

	9.テーブルレイアウトカラー

======================================================================================================= */
/* Default Pink */
.content table {
	width: 100%;
	box-sizing: border-box;
	border-top:1px solid #FFCCD9;
	border-left:1px solid #FFCCD9;
}

.content table th, .content table td {
	border-bottom:1px solid #FFCCD9;
	border-right:1px solid #FFCCD9;
	padding: 5px;
}

.content table th {
	background-color: #FFF7F9;
	text-align: left;
}

.content table th.head {
	background-color: #FFCCD9;
}

.content dl {
	border-bottom:1px solid #FFCCD9;
}

.content dl dt {
	background-color: #FFF7F9;
	border-top:1px solid #FFCCD9;
	border-bottom:1px solid #FFCCD9;
}

/* aqua */
.content table.col_aq {
	border-top:1px solid #96c6e5;
	border-left:1px solid #96c6e5;
}

.content table.col_aq th, .content table.col_aq td {
	border-bottom:1px solid #96c6e5;
	border-right:1px solid #96c6e5;
}

.content table.col_aq th {
	background-color: #E3F8FF;
}

.content dl.col_aq {
	border-bottom:1px solid #96c6e5;
}

.content dl.col_aq dt {
	background-color: #E3F8FF;
	border-top:1px solid #96c6e5;
	border-bottom:1px solid #96c6e5;
}

/* blue */
.content table.col_bl {
	border-top:1px solid #215fcb;
	border-left:1px solid #215fcb;
}

.content table.col_bl th, .content table.col_bl td {
	border-bottom:1px solid #215fcb;
	border-right:1px solid #215fcb;
}

.content table.col_bl th {
	background-color: #3f7ce7;
	color: #FFF;
}

.content dl.col_bl {
	border-bottom:1px solid #215fcb;
}

.content dl.col_bl dt {
	background-color: #215fcb;
	border-top:1px solid #215fcb;
	border-bottom:1px solid #3f7ce7;
	color: #FFF;
}

/* orange */
.content table.col_og {
	border-top:1px solid #d44a00;
	border-left:1px solid #d44a00;
}

.content table.col_og th, .content table.col_og td {
	border-bottom:1px solid #d44a00;
	border-right:1px solid #d44a00;
}

.content table.col_og th {
	background-color: #F60;
	color: #FFF;
}

.content dl.col_og {
	border-bottom:1px solid #d44a00;
}

.content dl.col_og dt {
	background-color: #F60;
	border-top:1px solid #d44a00;
	border-bottom:1px solid #d44a00;
	color: #FFF;
}

/* ====================================================================================================

	10.その他

======================================================================================================= */
.content .pointTxt {
	margin-right: 2px;
	padding: 1px 3px;
	background: #F8016A;
	background: -moz-linear-gradient(
		top,
		#F476A5 0%,
		#F476A5 25%,
		#F8016A);
	background: -o-linear-gradient(
		top,
		#F476A5 0%,
		#F476A5 25%,
		#F8016A);
	background: -webkit-gradient(
		linear, left top, left bottom, 
		from(#F476A5),
		color-stop(25%, #F476A5),
		to(#F8016A));
	background: linear-gradient(
		top,
		#F476A5 0%,
		#F476A5 25%,
		#F8016A);
	border:1px solid #F8016A;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	text-shadow: 0px -1px 1px #dd628f;
	color: #FFF;
	font-weight: bold;
}

.content .pointTxtBl {
	padding: 2px 4px;
	background-color: #3f7ce7;
	color: #FFF;
	font-weight: bold;
	text-shadow: 0px -1px 1px #124aac;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
}

.content .pointTxtGr {
	padding: 2px 4px;
	background-color: #5cac2f;
	color: #FFF;
	font-weight: bold;
	text-shadow: 0px -1px 1px #397c13;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
}

.content .pointTxtGy {
	padding: 2px 4px;
	background-color: #666;
	color: #FFF;
	font-weight: bold;
	text-shadow: 0px -1px 1px #333;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
}

.content .helpTxt {
	display: block;
	width: 33px;
	padding: 3px 3px 4px 15px;
	background: #4b94d5 url(../../../img/sp/common/ico_question.png) no-repeat 2px 0px;
	background: url(../../../img/sp/common/ico_question.png) no-repeat 2px 0px, -moz-linear-gradient(
		top,
		#7fb7f2 0%,
		#4b94d5 50%,
		#2478bd 50%,
		#4b94d5);
	background: url(../../../img/sp/common/ico_question.png) no-repeat 2px 0px, -o-linear-gradient(
		top,
		#7fb7f2 0%,
		#4b94d5 50%,
		#2478bd 50%,
		#4b94d5);
	background: url(../../../img/sp/common/ico_question.png) no-repeat 2px 0px, -webkit-gradient(
		linear, left top, left bottom, 
		from(#7fb7f2),
		color-stop(0.50, #4b94d5),
		color-stop(0.50, #2478bd),
		to(#4b94d5));
	background: url(../../../img/sp/common/ico_question.png) no-repeat 2px 0px, linear-gradient(
		top,
		#7fb7f2 0%,
		#4b94d5 50%,
		#2478bd 50%,
		#4b94d5);
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border:1px solid #2286d2;
	text-shadow: 0px -1px 1px #407aaf;
	color: #FFF;
	font-weight: bold;
	line-height: 1;
}

.myPhoto {
	width: 158px;
	border: solid 1px #999;
	padding: 20px 3px;
	margin: 0 auto 5px;
}






#ticket_select .tourtitle span, #ticket_select .headtitle span{
    border-left: solid 4px #FF7C60;
}

#ticket_type_select .tourtitle span, #ticket_type_select .headtitle span{
    border-left: solid 4px #FF7C60;
}


.content #ticket_select table th {
    background-color: #FFE6E1!important;
}

.content #ticket_select table th, .content #ticket_select table td {
    border-bottom: 1px solid #fdcabf;
    border-right: 1px solid #fdcabf;
}


#ticket_select .subtitle{
		background: linear-gradient(to bottom,  #fb8e84 0%,#FF6D63 100%);
}


.content #ticket_select .b_col_pk {
    background: #FF7C60;
}


#ticket_select table{
    border-top: 1px solid #fdcabf;
    border-left: 1px solid #fdcabf;
}

