@charset "utf-8";

/* ========================================
   CSS変数定義
======================================== */
:root {
    --hotel-main-red: #e60033;
    --hotel-sub-red: #c90037;
    --hotel-gradient-red: linear-gradient(
        to bottom,
        #c90037 0%,
        #ae001b 45%,
        #c90037 100%
    );
}

/* ========================================
   ホテル検索ブロック
======================================== */
.hotels-bnr {
    position: relative;
}
.hotels-bnr img {
	width: 100%;
	height: auto;
}
.hotels-bnr-txt {
	position: absolute;
	left: 40px;
	top: 50%;
	transform: translateY(-50%);
	color: #fff;
	font-family: "Hiragino Mincho ProN", "ヒラギノ明朝 ProN", "Hiragino Mincho Pro", serif;
	font-weight: bold;
	font-size: 50px;
	width: 240px;
	text-align: center;
}
input[type="text"].hotelSearchPage__inputText {
    border: 2px solid rgb(104, 73, 81);
    padding: 0 20px;
    font-size: 18px;
}

.hotelSearchPage__block--search {
	border: 2px solid var(--hotel-main-red);
	background-color: #fafafa;
	padding: 16px;
	box-shadow: 0px 3px 2px 0px rgba(192, 186, 186, 0.67);
	margin-top: 15px;
}

.hotelSearchPage__heading {
    color: var(--hotel-sub-red);
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 0px;
}

/* フォーム */
.hotelSearchPage__form {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-top: 5px;
}

/* 入力フィールド */
.hotelSearchPage__inputText {
    flex: 1;
    height: 48px;
    padding: 0 12px;
    font-size: 14px;
    border: 2px solid #999;
    border-radius: 2px;
    outline: none;
    background-color: #fff;
}

.hotelSearchPage__inputText:focus {
    border-color: var(--hotel-main-red);
}

.hotelSearchPage__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    padding: 0 24px;
    font-size: 20px;
    color: #fff;
    background-color: #ca0138;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    white-space: nowrap;
    width: 190px;
    gap: 5px;
}
.hotelSearchPage__button.hotelSearchPage__button-reset {
	background: transparent;
	border: 1px solid #000;
	color: #000;
	width: 120px;
}
/* ========================================
   市区町村検索ブロック
======================================== */
.hotelSearchPage__block--area {
    border: 2px solid var(--hotel-main-red);
    background-color: #f7f7f7;
    margin-top: 15px;
}

/* 見出し（赤グラデーション） */
.hotelSearchPage__block--area .hotelSearchPage__heading {
    background: var(--hotel-gradient-red);
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    padding: 10px 16px;
    margin: 0;
    border: 1px solid #cd5466;
}

/* リスト全体 */
.hotelSearchPage__areaList {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
    padding: 16px;
    margin: 0;
    list-style: none;
}

/* 各項目 */
.hotelSearchPage__areaItem {
    font-size: 16px;
}

/* リンク */
.hotelSearchPage__areaItem .hotelSearchPage__areaLink {
    color: #af001d;
    text-decoration: underline;
}

.hotelSearchPage__categoryList {
	display: flex;
	gap: 5px;
	margin-top: 15px;
}
.hotelSearchPage__categoryItem {
	width: calc(100% / 3);
	text-align: center;
	background: #999;
	border-radius: 10px 10px 0px 0;
	background-image: -moz-linear-gradient( 90deg, rgb(209,208,208) 24%, rgb(255,255,255) 100%);
	background-image: -webkit-linear-gradient( 90deg, rgb(209,208,208) 24%, rgb(255,255,255) 100%);
	background-image: -ms-linear-gradient( 90deg, rgb(209,208,208) 24%, rgb(255,255,255) 100%);
	border: 1px solid #ad9898;
	font-size: 15px;
}
.hotelSearchPage__categoryLink {
	padding: 20px;
	display: block;
}

.hotelSearchPage__categoryItem.active {
	background: var(--hotel-gradient-red);
	font-weight: bold;
	overflow: hidden;
}
.hotelSearchPage__categoryItem.active a {
	color: #fff;
	border: 1px solid #cd5466;
	overflow: hidden;
	border-radius: 10px 10px 0px 0;
}


.hotelSearchPage__sortList {
    display: flex;
    margin-top: 15px;
}
.hotelSearchPage__sortItem {
	width: calc(100% / 4);
	text-align: center;
	font-size: 16px;
	border-bottom: 2px solid;
}
.hotelSearchPage__sortLink {
    padding: 20px 20px 10px;
    display: block;
}
.hotelSearchPage__sortItem.active {
	border-bottom: 4px solid #ac001c;
}
.hotelSearchPage__sortItem.active a {
	background: #fbebeb;
}

/*========================ページャー用=======================*/

.ajax_pager{
	margin:20px 0;
	display: flex;
	position: relative;
}

.pager01 {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	position: absolute;
	left: 20px;
	right: 0;
}

.pager01 li{
	margin:2px;
}

.pager01 li a{
	display:block;
	padding:10px;
	border:1px solid #cda8ae;
	border-radius:3px;
	color: var(--c-gray-color);
}

.pager01 li span {
	display: block;
	padding: 10px;
	background: #faebeb;
	border: 1px solid #cda8ae;
	border-radius: 3px;
	color: var(--c-gray-color);
}
.pager01 li.current a{
	background:#e1e1e1;
}

.pager01 li a:hover{
	color: var(--c-red-color);
}

.ajax_pager .now{
	margin:10px 0;
	font-size:16px;
}

.ajax_pager .now span{
	font-weight:bold;
}

.ajax_pager .now span.big {
	font-size: 1.4em;
	color: var(--c-red-color);
}
.hotelListPage__item.b-hotel {
	background: #eff7fc;
	border: 1px solid #95b0c1;
}
.hotelListPage__item.l-hotel {
	background: #fef2f6;
	border: 1px solid #fe7184;
}
.hotelListPage__item:not(:first-child) {
	margin-top: 5px;
}
/* ========================================
   ホテル一覧
======================================== */
.hotelListPage__listWrap {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* アイテム全体 */
.hotelListPage__item {
	border: 2px solid #f2b6c1;
	background-color: #fafafa;
	margin-bottom: 5px;
	padding: 10px;
}

/* 内側レイアウト */
.hotelListPage__itemInner {
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

/* 左側情報 */
.hotelListPage__info {
	flex: 1;
	overflow: hidden;
}

/* ヘッダー */
.hotelListPage__header {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ランク */
.hotelListPage__rank {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	background: #fff;
	border: 2px solid #999;
	border-radius: 6px;
	font-weight: bold;
	font-size: 18px;
	flex-shrink: 0;
}
.hotelListPage__header-inner {
	display: flex;
	flex-direction: column;
	gap: 5px;
	overflow: hidden;
}
/* ホテル名 */
.hotelListPage__header .hotelListPage__name {
	font-size: 18px;
	font-weight: bold;
	color: #2f2ff7;
	text-decoration: underline;
	white-space: nowrap;
	width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	display: block;
}
.hotelListPage__item.l-hotel .hotelListPage__name {
	color: #d60033;
}
/* タイプ */
.hotelListPage__type {
    font-size: 13px;
    color: #666;
    margin: 0;
}

/* メタ情報 */
.hotelListPage__meta {
	margin: 5px 0;
	font-size: 14px;
	color: #333;
	display: flex;
	border-top: 1px solid #cad7df;
	align-items: last baseline;
	padding-top: 5px;
	gap: 20px;
}
.hotelListPage__meta-inner {
	display: flex;
	align-items: end;
}
/* 価格ラベル */
.hotelListPage__priceLabel {
	background: #333;
	color: #fff;
	padding: 2px 6px;
	font-size: 13px;
	margin-right: 4px;
	white-space: nowrap;
}
.hotelListPage__priceLabel-yen {
	color: #1b1b1b;
	font-weight: bold;
}
/* 価格 */
.hotelListPage__price {
	color: #d60033;
	font-size: 22px;
	font-family: "Yu Gothic", "YuGothic", sans-serif;
	font-weight: bold;
	line-height: 1;
}

/* 電話 */
.hotelListPage__tel {
    white-space: nowrap;
    display: flex;
    gap: 5px;
}

/* 住所 */
.hotelListPage__address {
	overflow: hidden;
	width: 45%;
	text-overflow: ellipsis;
	white-space: nowrap;
	display: block;
}
.hotelListPage__address .icon-map {
	vertical-align: bottom;
	margin-right: 2px;
}
/* 備考 */
.hotelListPage__note {
	font-size: 13px;
	color: #555;
	border-top: 1px solid #cad7df;
	padding-top: 5px;
	width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.hotelListPage__note svg {
	display: inline-block;
	vertical-align: bottom;
}
/* ========================================
   右側ステータス
======================================== */
.hotelListPage__stats {
    display: flex;
    gap: 8px;
}

/* 各ステータス */
.hotelListPage__statItem {
	width: 90px;
	border: 1px solid #776262;
	text-align: center;
	background: #fff;
	height: 100%;
	overflow: hidden;
}
.hotelListPage__statItem.hotelListPage__statItem-bad {
	background: #eee;
}
.hotelListPage__statItem.hotelListPage__statItem-bad .hotelListPage__statValue {
	color: #000;
}
/* ラベル */
.hotelListPage__statLabel {
	display: block;
	font-size: 18px;
	color: #fff;
	padding: 2px 0;
	text-shadow: 0px 1px 2px rgba(82, 45, 45, 0.8);
}

/* 値 */
.hotelListPage__statValue {
	display: flex;
	align-items: first baseline;
	justify-content: center;
	font-size: 40px;
	font-weight: bold;
	padding: 0;
	color: #af001d;
	font-family: "Yu Gothic", "YuGothic", sans-serif;
	line-height: 2;
}
.hotelListPage__statValue-per {
	font-size: 20px;
	font-weight: bold;
	margin-top: 10px;
}

/* GOOD */
.hotelListPage__item .hotelListPage__statItem:nth-child(1) .hotelListPage__statLabel {
    background: linear-gradient(to bottom, #d60033, #a80022);
	font-weight: bold;
}

/* BAD */
.hotelListPage__item .hotelListPage__statItem:nth-child(2) .hotelListPage__statLabel {
    background: linear-gradient(to bottom, #666, #333);
	font-weight: bold;
}

/* 満足度 */
.hotelListPage__item .hotelListPage__statItem:nth-child(3) .hotelListPage__statLabel {
	color: #333;
	text-shadow: initial;
	font-weight: bold;
}
.hotelListPage__statItem.hotelListPage__statItem-achieve {
	background: linear-gradient(to bottom, #ffcc33, #e6a800);
}
.hotelListPage__item .hotelListPage__statItem:nth-child(3) .hotelListPage__statValue {
    color: #333;
}

/* ========================================
   データなし
======================================== */
.hotelListPage__noData {
    text-align: center;
    padding: 20px;
    font-size: 16px;
}
