@CHARSET "UTF-8";

/*********************************************
 商品リスト
**********************************************/
ul.thumbnails {
	width: 100%;
	list-style: none;
}

ul.thumbnails li {
	float: left;
	margin: 3px 2px 10px;
}

/* 1列1商品 */
ul.thumbnails li.span12 {
	width: 99%;
}
/* 1列2商品 */
ul.thumbnails li.span6 {
	width: 49%;
}
/* 1列3商品 */
ul.thumbnails li.span4 {
	width: 32%;
}
/* 1列4商品 */
ul.thumbnails li.span3 {
	width: 24%;
}

.thumbnail {
    display: block;
    height: 360px;
    padding: 4px;
    line-height: 20px;
    border: 1px solid #ddd;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    -webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.055);
    -moz-box-shadow: 0 1px 3px rgba(0,0,0,0.055);
    box-shadow: 0 1px 3px rgba(0,0,0,0.055);
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.traveloutline {
    height: 330px;
}

.golfoutline {
    height: 500px;
}

/** 画像を縦横の大きい方でリサイズ。ただし128pxを最大とする。 */
.thumbnail .itemimg {
	width: 128px;
	height: 128px;
	position: relative;	/* リサイズの仕掛け */
	margin:0 auto;	/* 中央寄せ */
}

.thumbnail .ecbtn {
	text-align:center;
	margin: 5px 0 10px;
}

.star_color {
    color: #ffd700;
}

.span12 .thumbnail p.itemimg {
	margin: 5px;
	float:left;
}

.span12 .thumbnail {
	height: 180px;
}

.thumbnail .itemimg a img {
	/* ↓リサイズの仕掛け（ここから）↓ */
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
		/* ↑リサイズの仕掛け（ここまで）↑ */
}

.thumbnail h4:before {
	font-family: initial !important;
	color: initial !important;
	content: initial !important;
	font-size:initial !important;
	position:initial !important;
	top:initial !important;
	left:initial !important;
}

.thumbnail h4:after {
	font-family: initial !important;
	color: initial !important;
	content: initial !important;
	font-size:initial !important;
	position:initial !important;
	top:initial !important;
	left:initial !important;
}

.thumbnail h4 {
	border: initial !important;
	padding:initial !important;
	margin:initial !important;
	font-size: 16px !important;
	font-family: inherit !important;
	font-weight: bold !important;
	margin-top:5px !important;
}

.thumbnail h4 a {
	color: #08c !important;
	text-decoration: none !important;
}

.thumbnail .price {
    color: #F00;
    margin-right:4px;
    text-align: right;
}

.thumbnail .shop {
    color: #999;
    font-size: 12px;
}

.thumbnail .itemtext {
	font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
    color: #333;
    font-size: 14px;
}

.thumbnail .golftext {
	margin-top: 10px;
	margin-bottom:5px;
}

.thumbnails:after {
    clear: both;
}

.btn {
    display: inline-block;
    *display: inline;
    padding: 4px 12px;
    margin-bottom: 0;
    *margin-left: .3em;
    font-size: 14px;
    line-height: 20px;
    color: #333;
    text-align: center;
    text-shadow: 0 1px 1px rgba(255,255,255,0.75);
    vertical-align: middle;
    cursor: pointer;
    background-color: #f5f5f5;
    *background-color: #e6e6e6;
    background-image: -moz-linear-gradient(top,#fff,#e6e6e6);
    background-image: -webkit-gradient(linear,0 0,0 100%,from(#fff),to(#e6e6e6));
    background-image: -webkit-linear-gradient(top,#fff,#e6e6e6);
    background-image: -o-linear-gradient(top,#fff,#e6e6e6);
    background-image: linear-gradient(to bottom,#fff,#e6e6e6);
    background-repeat: repeat-x;
    border: 1px solid #bbb;
        border-top-color: rgb(187, 187, 187);
        border-right-color: rgb(187, 187, 187);
        border-bottom-color: rgb(187, 187, 187);
        border-left-color: rgb(187, 187, 187);
    *border: 0;
    border-color: #e6e6e6 #e6e6e6 #bfbfbf;
    border-color: rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);
    border-bottom-color: #a2a2a2;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff',endColorstr='#ffe6e6e6',GradientType=0);
    filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
    *zoom: 1;
    -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,0.2),0 1px 2px rgba(0,0,0,0.05);
    -moz-box-shadow: inset 0 1px 0 rgba(255,255,255,0.2),0 1px 2px rgba(0,0,0,0.05);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.2),0 1px 2px rgba(0,0,0,0.05);
}

.btn-small {
    padding: 2px 10px;
    font-size: 11.9px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

.btn-success {
    color: #fff;
    text-decoration: none!important;
    text-shadow: 0 -1px 0 rgba(0,0,0,0.25);
    background-color: #5bb75b;
    *background-color: #51a351;
    background-image: -moz-linear-gradient(top,#62c462,#51a351);
    background-image: -webkit-gradient(linear,0 0,0 100%,from(#62c462),to(#51a351));
    background-image: -webkit-linear-gradient(top,#62c462,#51a351);
    background-image: -o-linear-gradient(top,#62c462,#51a351);
    background-image: linear-gradient(to bottom,#62c462,#51a351);
    background-repeat: repeat-x;
    border-color: #51a351 #51a351 #387038;
    border-color: rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff62c462',endColorstr='#ff51a351',GradientType=0);
    filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
}

.btn-success:hover {
    color: #fff!important;
    background-color: #5b665b!important;
}

.btn-danger {
    color: #fff;
    text-decoration: none!important;
    text-decoration: none;
    text-shadow: 0 -1px 0 rgba(0,0,0,0.25);
    background-color: #da4f49;
    *background-color: #bd362f;
    background-image: -moz-linear-gradient(top,#ee5f5b,#bd362f);
    background-image: -webkit-gradient(linear,0 0,0 100%,from(#ee5f5b),to(#bd362f));
    background-image: -webkit-linear-gradient(top,#ee5f5b,#bd362f);
    background-image: -o-linear-gradient(top,#ee5f5b,#bd362f);
    background-image: linear-gradient(to bottom,#ee5f5b,#bd362f);
    background-repeat: repeat-x;
    border-color: #bd362f #bd362f #802420;
    border-color: rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffee5f5b',endColorstr='#ffbd362f',GradientType=0);
    filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
}

.btn-danger {
    color: #fff!important;
    background-color: #994f49!important;
}

@media screen and (max-width: 700px)
{
	.thumbnail {
    	height: 300px;
	}

	.golfoutline {
	    height: 400px;
	}

	.span12 .thumbnail p.itemimg {
		float: none;
		margin: 0 auto;
	}

	.span12 .thumbnail {
		height: 300px;
	}

	.traveloutline {
	    height: 260px;
	}

	ul.thumbnails li,
	ul.thumbnails li.span12,
	ul.thumbnails li.span6,
	ul.thumbnails li.span4,
	ul.thumbnails li.span3 {
		float:none;
		width: 96%;
	}
}

/*********************************************
 ページ送り
**********************************************/
.paging-centered {
    text-align: center;
}

.paging {
    margin: 15px 0;
    font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
	font-size: 14px;
	line-height: 20px;
}

.paging ul {
    display: inline-block;
    margin-bottom: 0;
    margin-left: 0;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    -webkit-box-shadow: 0 1px 2px rgba(0,0,0,0.05);
    -moz-box-shadow: 0 1px 2px rgba(0,0,0,0.05);
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.paging ul, ol {
    padding: 0;
    margin: 0 0 10px 25px;
}

.paging ul>li {
    display: inline;
}

.paging ul li a {
    color: #08c;
    text-decoration: none;
}

.paging ul > li > a, .paging ul > li > span {
    float: left;
    padding: 4px 12px;
    line-height: 20px;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #ddd;
        border-left-width: 1px;
    border-left-width: 0;
}

.paging ul > li:first-child > a, .paging ul > li:first-child > span {
    border-left-width: 1px;
    -webkit-border-bottom-left-radius: 4px;
    border-bottom-left-radius: 4px;
    -webkit-border-top-left-radius: 4px;
    border-top-left-radius: 4px;
    -moz-border-radius-bottomleft: 4px;
    -moz-border-radius-topleft: 4px;
}

.paging ul > li:last-child > a, .paging ul > li:last-child > span {
    -webkit-border-top-right-radius: 4px;
    border-top-right-radius: 4px;
    -webkit-border-bottom-right-radius: 4px;
    border-bottom-right-radius: 4px;
    -moz-border-radius-topright: 4px;
    -moz-border-radius-bottomright: 4px;
}

.paging a {
    font-weight: bold;
    /*min-width: 44px;*/
    /*min-height: 44px;*/
    color: #333;
    box-shadow: inset 0px 1px 0px 0px rgba(255,255,255,.35);
}

.paging, .paging li a {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.paging ul > li > a, .paging ul > li > span {
    float: left;
    padding: 4px 12px;
    line-height: 20px;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #ddd;
    border-left-width: 1px;
    border-left-width: 0;
}

.paging ul>.active>a, .paging ul>.active>span {
    color: #999;
    cursor: default;
}

.paging ul>li>a:hover, .paging ul>.active>a, .paging ul>.active>span {
    background-color: #f5f5f5;
}

/**************************************
 詳細ページ（商品）
**************************************/
.ecitem_detail {
	width: 100%;
    margin: 10px 0 20px;
    padding: 4px 5px;
}

.ecitem_detail .ecitem_box {
	border-collapse: collapse;
	border-spacing: 2px;
    border-color: grey;
    border-top: 1px solid #ddd;
    vertical-align: top;
    padding: 4px 5px;
}

.ecitem_detail .ecitem_image {
	text-align: center;
}

.ecitem_detail .ecitem_box a {
	color: #08c;
    text-decoration: none;
}

.ecitem_detail .ecitem_box .ecitem_caption {
	width: 20%;
	font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
    font-size: 14px;
	font-weight: bold;
	color: #333;
	line-height: 20px;
    text-align: left;
    vertical-align: top;
    display: inline-block;
}

.ecitem_detail .ecitem_box .ecitem_data {
	width: 77%;
	line-height: 20px;
    text-align: left;
    vertical-align: top;
    display: inline-block;
    font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
    font-size: 14px;
    color: #333;
}

.ecitem_button {
	text-align: center;
	margin: 10px;
	font-size: 1.2em;
}

.square_btn {
    position: relative;
    display: inline-block;
    padding: 0.25em 0.5em;
    text-decoration: none !important;
    color: #FFF !important;
    background: #ff8c00;/*色*/
    border: solid 1px #d2691e;/*線色*/
    border-radius: 4px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.2);
    text-shadow: 0 1px 0 rgba(0,0,0,0.2);
}

.square_btn:hover {/*押したとき*/
    border: solid 1px #a0522d;
    box-shadow: none;
    text-shadow: none;
    color: #FFF !important;
    background: #d2691e !important;/*色*/
}


/**************************************
 詳細ページ（楽天トラベル）
**************************************/
.travel_images {
	margin-left: 0;
	list-style: none;
}


.travel_images li {
	width: 31.5%;
    display: inline-block;
    vertical-align: top;
    padding: 4px;
    border: 1px solid #ddd;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    -webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.055);
    -moz-box-shadow: 0 1px 3px rgba(0,0,0,0.055);
    box-shadow: 0 1px 3px rgba(0,0,0,0.055);
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.travel_images li a img {
	border: 1px solid #ddd;
}

.ecitem_travel a {
	color: #08c;
    text-decoration: none !important;
}

.ecitem_travel table {
	width: 100% !important;
    margin: 5px 0 20px 0 !important;
	color: #333;
    background: #ffffff;
    background-color: transparent;
    border-collapse: collapse;
    border-spacing: 0;
}

.table-bordered {
    border: 1px solid #ddd;
    border-collapse: separate;
    border-left: 0;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

.ecitem_travel table {
	border-collapse: collapse;
}

.ecitem_travel table th, .ecitem_travel table td {
	border: 1px solid #ccc !important;
	text-align: left !important;
	padding-left:2px;
}

.ecitem_travel table th {
	width: 38%;
}

.ecitem_travel table td {
	font-size: 14px;
}

.ecitem_travel table tr:nth-child(even) {
	background: #eee;
}

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

.text-red {
	color: #f00;
}

@media screen and (max-width: 700px)
{
	.travel_images li {
		text-align: center;
		display: block;
		width: 90%;
		margin:0 auto 10px;	/* 中央寄せ */

	}

	.travel_images li a img {
		width: 100%;
	}
}


/**************************************
 詳細ページ（楽天GORA）
**************************************/
.golf_thumbnail {
    display: block;
    padding: 4px;
    line-height: 20px;
    border: 1px solid #ddd;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    -webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.055);
    -moz-box-shadow: 0 1px 3px rgba(0,0,0,0.055);
    box-shadow: 0 1px 3px rgba(0,0,0,0.055);
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}
.golf-table {
    width: 100%!important;
    margin-bottom: 20px;
    max-width: 100%;
    background-color: transparent;
    border-collapse: collapse;
    border-spacing: 0;
    border:initial !important;
}
.golf-table th, .table-condensed td {
    padding: 4px 5px;
}
.golf-table th {
	width: 30%;
    font-weight: bold;
}
.golf-table th, .golf-table td {
	border:initial !important;
	padding: 8px;
    line-height: 20px;
    text-align: left!important;
    vertical-align: top;
    border-top: 1px solid #ddd;
}
.golf-table tr {
	border-top: 1px solid #ddd;
}

h4.media-heading {
	padding-left:initial !important;
	font-size: 1.1em !important;
}

h4.media-heading:before {
	content: initial !important;
	position:initial !important;
	top:initial !important;
	left:initial !important;
}
.reviewarea {
	width: 100%;
	height:320px;
}
.review-left {
	width: 50%;
	padding:0 10px;
	float: left;
}
.review-right {
	width: 50%;
	float: right;
}
hr {
    margin: 20px 0;
    border: 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #fff;
}
.alert-danger, .alert-error {
    color: #b94a48;
    background-color: #f2dede;
    border-color: #eed3d7;
    padding: 8px 35px 8px 14px;
    margin-bottom: 20px;
    text-shadow: 0 1px 0 rgba(255,255,255,0.5);
    border: 1px solid #fbeed5;
    border-top-color: rgb(251, 238, 213);
    border-right-color: rgb(251, 238, 213);
    border-bottom-color: rgb(251, 238, 213);
    border-left-color: rgb(251, 238, 213);
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

@media screen and (max-width: 700px)
{
	.review-left {
		width: 100%;
		float: none;
	}
	.review-right {
		width: 100%;
		float: none;
	}
}
/**************************************
 商品検索フォーム
**************************************/
.ecitem_search {
	text-align: center;
	padding: 19px 20px 20px;
	margin-top: 20px;
	margin-bottom: 20px;
	background-color: #f5f5f5;
	border-top: 1px solid #e5e5e5;
}

.ecitem_search form p {
	margin: 0 0 10px;
	font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
    font-size: 14px;
    line-height: 20px;
    color: #333;
}

input.search-query {
    padding-right: 14px;
    padding-left: 14px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
}

.ecitem_search input[type="text"] {
	background-color: #fff;
    border: 1px solid #ccc;
    height: 30px;
    padding: 4px 6px;
    font-size: 14px;
    line-height: 20px;
    color: #555;
    vertical-align: middle;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    width: 270px;
}

.api_search_btn, .api_search_golf_btn {
	color: #fff;
    text-shadow: 0 -1px 0 rgba(0,0,0,0.25);
    background-color: #006dcc;
    background-image: -moz-linear-gradient(top,#08c,#04c);
    background-image: -webkit-gradient(linear,0 0,0 100%,from(#08c),to(#04c));
    background-image: -webkit-linear-gradient(top,#08c,#04c);
    background-image: -o-linear-gradient(top,#08c,#04c);
    background-image: linear-gradient(to bottom,#08c,#04c);
    background-repeat: repeat-x;
    border-color: rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    padding: 4px 12px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,0.2), 0 1px 2px rgba(0,0,0,0.05);
    -moz-box-shadow: inset 0 1px 0 rgba(255,255,255,0.2),0 1px 2px rgba(0,0,0,0.05);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.2), 0 1px 2px rgba(0,0,0,0.05);
}

@media screen and (max-width: 700px)
{
	.api_search_btn {
		margin:3px;
	}
}

