@charset "utf-8";

/* ================================
   基本リセット & 初期設定
================================ */
html,
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td {
	margin: 0;
	padding: 0;
}

html,
body {
	overflow-x: hidden;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	touch-action: manipulation;
	font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo,
		"ＭＳ Ｐゴシック", Helvetica, Arial, Verdana, sans-serif;
	background: #fff;
	color: #000;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

fieldset,
img {
	border: 0;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
	font-style: normal;
	font-weight: normal;
}

ol,
ul {
	list-style: none;
}

caption,
th {
	text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-size: 100%;
	font-weight: normal;
}

q:before,
q:after {
	content: '';
}

abbr,
acronym {
	border: 0;
	font-variant: normal;
}

sup {
	vertical-align: text-top;
}

sub {
	vertical-align: text-bottom;
}

/* ================================
   フォーム・入力フィールド共通
================================ */
input,
textarea,
select,
button {
	font-family: inherit;
	font-size: 100%;
	font-weight: inherit;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	box-sizing: border-box;
}

input,
textarea,
select {
	padding: 10px;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 1.25em;
	width: 100%;
}

input[type=radio],
input[type=checkbox] {
	width: 10px;
	height: 10px;
	vertical-align: middle;
}

input:checked {
	background: #555;
}

select {
	color: #555;
	background-image: url("../img/arrow.png"), linear-gradient(to bottom, #fff, #ccc);
	background-repeat: no-repeat, no-repeat;
	background-position: right center, center;
	background-color: #fff;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#cccccc');
	-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#cccccc')";
}

select:hover {
	background-image: url("../img/arrow.png"), linear-gradient(to bottom, #fff, #ccc);
}

/* ================================
   リンク
================================ */
a {
	-webkit-touch-callout: none;
	text-decoration: none;
	color: #00f;
}

a:hover {
	color: #08f;
}

/* ================================
   ユーティリティクラス
================================ */
.clearfix::after {
	content: "";
	display: block;
	clear: both;
}

.pointer {
	cursor: pointer;
}

.align_center {
	text-align: center;
}

.align_left {
	text-align: left;
}

.float_left {
	float: left;
}

.float_right {
	float: right;
}

form {
	text-align: center;
}

.num {
	text-align: right;
}

li {
	position: relative;
}

li a {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	color: #000;
}

.two_options {
	width: 50%;
}

.three_options {
	width: 30%;
}

/* キャプション */
.caption {
	margin-top: 10px;
	color: #fff;
	font-weight: bold;
	background-color: #002b5c;
	padding: 10px;
}

.caption2 {
	color: #777;
	font-weight: bold;
	background-color: #faf0e6;
	margin-top: 10px;
}

/* Google翻訳 */
#google_translate_element select {
	padding: 0;
	width: 200px;
	max-width: 40%;
}

/* 非表示ブロック */
#setting,
#category {
	display: none;
}

/* フッター */
.footer_sub_menu {
	width: 18%;
	margin: 1%;
}

/* ポップアップ */
.popup_back {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	background-color: #000;
	opacity: 0.5;
	z-index: 8000;
}

.popup_element {
	display: none;
	position: fixed;
	border-radius: 6px;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
	background: #fff;
	z-index: 9000;
}

/* グラデーションメニュー */
.pupup_menus {
	padding: 20px;
	background-image: url("../img/arrow.png"), linear-gradient(to bottom, #fff, #ccc);
	background-repeat: no-repeat, no-repeat;
	background-position: right center, center;
	background-color: #002b5c;
	color: #000;
}

/* 選択状態 */
.li_selected {
	background-image: linear-gradient(to bottom, #666, #eee);
	background-color: #002b5c;
	color: #000;
}

/* ボタン */
.button {
	width: 100%;
	height: 50px;
	margin: 10px 0;
	font-size: 1.25em;
	color: #fff;
	text-align: center;
	line-height: 50px;
	border-radius: 6px;
	border: none;
	cursor: pointer;
	background-image: url("../img/arrow.png"), linear-gradient(to bottom, #333, #000);
	background-repeat: no-repeat, no-repeat;
	background-position: right center, center;
	background-color: #000;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333', endColorstr='#000000');
	-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333', endColorstr='#000000')";
}

.button:hover {
	background-color: #555;
	color: #fff;
}

/* キャンセルボタン */
.cancel_button {
	width: 100%;
	height: 50px;
	margin: 10px 0;
	font-size: 1.25em;

	background-image: linear-gradient(to bottom, #fff, #ccc);
	background-color: #fff;
	color: #000;
	border: none;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#cccccc');
	-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#cccccc')";

	background-color: #f00;
	/* fallback */
	color: #000000;

	/* 角丸 - 古いブラウザ含めて対応 */
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
}

.cancel_button.touchstart {
	background: #999999;
}

.cancel_button:hover {
	background-color: #ddd;
}

/* モバイル対応 */
.mobile-scroll {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	width: 100%;
}

.pop {
	width: 100%;
}

.sentences {
	color: #666;
	padding: 10px;
}

/* グリッド表示 */
.results {
	width: 33.33%;
	box-sizing: border-box;
}

.index_price {
	padding: 0 10px;
	text-align: right;
	color: #164A87;
}

.search_title_index {
	height: 3em;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.thumbnails {
	overflow: hidden;
}

.back_color_false {
	border: none;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#cccccc');
	-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#cccccc')";
	background-image: -moz-linear-gradient(-45deg, #ffffff, #cccccc);
	background-image: -webkit-linear-gradient(-45deg, #ffffff, #cccccc);
	background-image: -ms-linear-gradient(-45deg, #ffffff, #cccccc);
	background-image: linear-gradient(-45deg, #ffffff, #cccccc);
	background-color: #f00;
	font-size: 0.8em;
}

/* レスポンシブ */
.appear_pc {
	display: none;
}

@media (min-width: 500px) {
	#setting {
		display: block;
		float: right;
		margin: 0 10px;
		padding: 0 10px;
	}

	#category {
		display: block;
	}

	.results {
		width: 25%;
	}
}

@media (min-width: 1000px) {
	#header {
		padding: 0 1%;
	}

	.wrap {
		padding: 1%;
	}

	#navigation_wrap {
		position: relative;
	}

	#searchForm {
		text-align: left;
	}

	#user_setting {
		background-color: #ff5000;
		position: absolute;
		right: 0;
		top: 0;
		border: 1px dotted;
		margin: 10px;
		padding: 10px;
	}

	#contents {
		padding: 0 1%;
	}

	#category {
		padding: 0 0 1% 0.5%;
	}

	.close_button {
		position: absolute;
		right: 5px;
		top: 5px;
	}

	.close_window {
		background: #ddd;
		color: #fff;
		font-size: 1.25em;
		border: none;
	}

	#footer {
		background-color: #dcdcdc;
		padding: 10px;
	}

	.link_li:hover {
		opacity: 0.3;
	}

	.appear_pc {
		display: inline-block;
	}

	.results {
		width: 16.66%;
	}
}