@charset "utf-8";

/*============================
横線
============================*/
body {
	overflow-x: hidden;
}

body::before {
	content: "";
	width: 1px;
	height: 100%;
	background-color: #E3E3E3;
	position: absolute;
	left: calc(50% - 6.00rem);
	top: 0;
	z-index: -1;
}
@media screen and (max-width: 640px) {
	body::before {
		content: none;
	}
}

body::after {
	content: "";
	width: 1px;
	height: 100%;
	background-color: #E3E3E3;
	position: absolute;
	left: calc(50% + 6.00rem);
	top: 0;
	z-index: -1;
}
@media screen and (max-width: 640px) {
	body::after {
		content: none;
	}
}

/*============================
ヘッダー
============================*/
header {
	transition: transform 0.5s 0.3s;
	width: 100%;
	height: 1.00rem;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10;
	min-width: 1080px;
}
@media screen and (max-width: 640px) {
	header {
		height: 0.60rem;
		min-width: 100%;
		z-index: 1000000000000;
	}
}

header::before {
	content: "";
	width: 100%;
	height: 100%;
	background-color: rgba(255, 255, 255, 0.85);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
}

/* --------- 以下、必要に応じて有効化 ---------- */

/* ヘッダーが上に消える
header.hide {
	transform: translateY(-1.50rem);
}
*/

/* スクロールで表示された状態
header.scr {
	background-color: rgba(255, 255, 255, 0.85);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
}
*/

/* ロゴ */
header .logo {
	position: absolute;
	top: 50%;
	left: 0.30rem;
	transform: translateY(-50%);
	width: 1.90rem;
	z-index: 1;
}
@media screen and (max-width: 640px) {
	header .logo {
		left: 0.20rem;
		width: 1.20rem;
	}
}

@media (hover: hover) {
	header .logo a:hover {
		opacity: 0.7;
	}
}

/* ナビゲーション（全体） */
header .glo_navi {
	position: absolute;
	top: 0;
	right: 0;
	z-index: 1;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0 0.35rem;
}
@media screen and (max-width: 640px) {
	header .glo_navi {
		position: absolute;
		top: 0.60rem;
		left: 0;
		background-color: #145F81;
		gap: 0;
		display: none;
	}
}

header .glo_navi .navi_wrap {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	flex-direction: column-reverse;
}
@media screen and (max-width: 640px) {
	header .glo_navi .navi_wrap {
		display: block;
	}
}

/* サブナビゲーション */
header .glo_navi .navi_wrap .main_list {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	align-items: center;
	gap: 0 0.40rem;
	font-size: 0.16rem;
	font-weight: 600;
	padding-top: 0.24rem;
}
@media screen and (max-width: 640px) {
	header .glo_navi .navi_wrap .main_list {
		display: block;
		font-size: 0.15rem;
		padding: 0.20rem;
		position: relative;
		border-bottom: 1px solid rgba(255,255,255,0.2);
		gap: 0;
	}
}

header .glo_navi .navi_wrap .main_list a {
	color: #333333;
}
@media screen and (max-width: 640px) {
	header .glo_navi .navi_wrap .main_list a {
		color: #FFF;
		line-height: 2.2;
		display: block;
	}
	header .glo_navi .navi_wrap .main_list a::before {
		content: "";
		width: 0.06rem;
		height: 1px;
		background-color: rgba(255,255,255,0.2);
		display: inline-block;
		margin-right: 0.08rem;
		position: relative;
		top: -0.05rem;
	}
}

header .glo_navi .navi_wrap .main_list a span {
	position: relative;
}

header .glo_navi .navi_wrap .main_list a span::after {
  position: absolute;
  bottom: -0.03rem;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #333;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.3s;
}

@media (hover: hover) {
	header .glo_navi .navi_wrap .main_list a:hover span::after {
		transform-origin: left top;
		transform: scale(1, 1);
	}
}

/* サブナビゲーション */
header .glo_navi .navi_wrap .sub_list {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 0 0.28rem;
	align-items: center;
	font-size: 0.13rem;
	font-weight: 500;
}
@media screen and (max-width: 640px) {
	header .glo_navi .navi_wrap .sub_list {
		justify-content: space-between;
		font-size: 0.13rem;
		padding: 0.20rem;
		align-items: baseline;
		gap: 0.20rem 0;
		box-sizing: border-box;
	}
	header .glo_navi .navi_wrap .sub_list .link {
		width: 48%;
	}
}

header .glo_navi .navi_wrap .sub_list a {
	color: #333333;
	line-height: 1;
}
@media screen and (max-width: 640px) {
	header .glo_navi .navi_wrap .sub_list a {
		color: #FFF;
	}
}

header .glo_navi .navi_wrap .sub_list .link a span {
	position: relative;
}

header .glo_navi .navi_wrap .sub_list .link a span::after {
  position: absolute;
  bottom: -0.02rem;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #333;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.3s;
}

@media (hover: hover) {
	header .glo_navi .navi_wrap .sub_list .link a:hover span::after {
		transform-origin: left top;
		transform: scale(1, 1);
	}
}

header .glo_navi .navi_wrap .sub_list .link a.blank::after {
	content: "";
	display: inline-block;
	width: 0.18rem;
	height: 0.10rem;
	background-image: url(../common/img/icon_newwin_black.svg);
	background-position: right center;
	background-repeat: no-repeat;
	background-size: contain;
}
@media screen and (max-width: 640px) {
	header .glo_navi .navi_wrap .sub_list .link a.blank::after {
		background-image: url(../common/img/icon_newwin_white.svg);
	}
}

header .glo_navi .navi_wrap .sub_list .link.insta a {
	display: inline-flex;
	align-items: center;
}

header .glo_navi .navi_wrap .sub_list .link.insta a img {
	height: 0.13rem;
	position: relative;
	display: inline-block;
	padding-right: 0.05rem;
	top: 0.01rem;
}
header .glo_navi .navi_wrap .sub_list .link.insta a img.sp_only {
	display: none;
}
@media screen and (max-width: 640px) {
	header .glo_navi .navi_wrap .sub_list .link.insta a img.pc_only {
		display: none;
	}
	header .glo_navi .navi_wrap .sub_list .link.insta a img.sp_only {
		display: inline-block;
	}
}

header .glo_navi .navi_wrap .sub_list .tel_link {
	position: relative;
	padding-left: 0.25rem;
}
@media screen and (max-width: 640px) {
	header .glo_navi .navi_wrap .sub_list .tel_link {
		width: 100%;
		padding-left: 0;
		padding-top: 0.10rem;
		box-sizing: border-box;
	}
	header .glo_navi .navi_wrap .sub_list .tel_link a {
		background-color: #FFF;
		display: block;
		padding: 0.20rem 0;
		text-align: center;
		color: #145F81;
		border-radius: 0.40rem;
		font-size: 0.18rem;
	}
}

header .glo_navi .navi_wrap .sub_list .tel_link::before {
	content: "";
	width: 1px;
	height: 0.20rem;
	background-color: #333;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}
@media screen and (max-width: 640px) {
	header .glo_navi .navi_wrap .sub_list .tel_link::before {
		content: none;
	}
}

header .glo_navi .navi_wrap .sub_list .tel_link a::before {
	content: "";
	width: 0.13rem;
	height: 0.13rem;
	background-image: url(../img/common/icon_tel.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	display: inline-block;
	margin-right: 0.08rem;
}
@media screen and (max-width: 640px) {
	header .glo_navi .navi_wrap .sub_list .tel_link a::before {
		width: 0.16rem;
		height: 0.16rem;
		background-image: url(../img/common/icon_tel_blue.svg);
	}
}

header .glo_navi .navi_wrap .sub_list .tel_link span {
	font-size: 0.11rem;
}


/* ご予約・空室検索 */
header .glo_navi .reserve_btn {
	width: 1.80rem;
	height: 1.00rem;
}
@media screen and (max-width: 640px) {
		header .glo_navi .reserve_btn {
		width: 100%;
		height: auto;
		padding: 0 0.20rem 0.20rem;
		box-sizing: border-box;
	}
}

header .glo_navi .reserve_btn a {
	display: block;
	height: 100%;
	position: relative;
	background-color: #4EC1DD;
	font-size: 0.14rem;
	font-weight: 600;
	color: #FFF;
	text-align: center;
	box-sizing: border-box;
	padding-top: 0.20rem;
}
@media screen and (max-width: 640px) {
	header .glo_navi .reserve_btn a {
		font-size: 0.16rem;
		font-weight: 600;
		padding: 0.05rem 0 0.20rem;
		border-radius: 0.40rem;
		display: block;
	}
}

header .glo_navi .reserve_btn a::before {
	content: "";
	width: 0.41rem;
	height: 0.35rem;
	background-image: url(../img/common/icon_cal_white.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	display: block;
	margin: auto;
	position: relative;
	z-index: 1;
}
@media screen and (max-width: 640px) {
	header .glo_navi .reserve_btn a::before {
		content: none;
	}
	header .glo_navi .reserve_btn a span::before {
		content: "";
		width: 0.30rem;
		height: 0.20rem;
		display: inline-block;
		top: 0.06rem;
	}
}

header .glo_navi .reserve_btn a::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: #145F81;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.3s;
	z-index: 0;
}

@media (hover: hover) {
	header .glo_navi .reserve_btn a:hover::after {
		transform-origin: left top;
		transform: scale(1, 1);
	}
}

header .glo_navi .reserve_btn a span {
	display: block;
	text-align: center;
	padding-top: 0.10rem;
	position: relative;
	z-index: 1;
}

header .reserve_btn_sp {
	position: absolute;
	right: 0.60rem;
	top: 0;
	width: 0.90rem;
	height: 100%;
}

header .reserve_btn_sp a {
	background-color: #4EC1DD;
	display: block;
	height: 100%;
	position: relative;
	color: #FFF;
	font-size: 0.08rem;
	font-weight: 600;
	font-family: "Noto Sans JP", sans-serif;
	text-align: center;
}

header .reserve_btn_sp a span::before {
	content: "";
	width: 0.30rem;
	height: 0.22rem;
	background-image: url(../img/common/icon_cal_white.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	display: block;
	margin: auto;
	position: relative;
	z-index: 1;padding: 0.10rem 0;
}

/*============================
共通スタイル
============================*/
main {
	padding-top: 1.00rem;
	position: relative;
}
@media screen and (max-width: 640px) {
	main {
		padding-top: 0.60rem;
		overflow: hidden;
		width: 100vw;
	}
}

.deco_top {
	position: relative;
}

.deco_top::before {
	content: "";
	width: 5.06rem;
	height: 5.06rem;
	background-image: url(../img/common/deco01.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	left: -2.30rem;
	top: -2.30rem;
	z-index: -2;
}
@media screen and (max-width: 640px) {
.deco_top::before {
	content: "";
	width: 2.50rem;
	height: 2.50rem;
	background-image: url(../img/common/deco01.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	left: -1.10rem;
	top: -1.50rem;
	z-index: -2;
}
}

.in1000 {
	max-width: 11.00rem;
	margin: auto;
	padding: 0 0.50rem;
	box-sizing: border-box;
}
@media screen and (max-width: 640px) {
	.in1000 {
		padding: 0 0.20rem;
	}
}

.in1200 {
	max-width: 13.00rem;
	margin: auto;
	padding: 0 0.50rem;
	box-sizing: border-box;
}
@media screen and (max-width: 640px) {
	.in1200 {
		padding: 0 0.20rem;
	}
}

/*============================
セクションタイトル（汎用）
============================*/
.sec_ttl_wrap {
  padding-bottom: 0.40rem;
}
@media screen and (max-width: 640px) {
	.sec_ttl_wrap {
		padding-bottom: 0.30rem;
	}
}

.sec_ttl_wrap .sec_ttl {
  font-size: 0.35rem;
  font-weight: 600;
	line-height: 1.5;
}
@media screen and (max-width: 640px) {
	.sec_ttl_wrap .sec_ttl {
		font-size: 0.24rem;
	}
}

.sec_ttl_wrap .sec_ttl.-center {
  text-align: center;
}

/* ボタン（下線、右矢印付き） */
.more_btn {
	width: 100%;
	position: relative;
}

.more_btn .btn01 {
	width: 2.60rem;
	display: block;
	position: relative;
	line-height: 1;
	padding: 0.10rem 0;
	border-bottom: 1px solid #333;
}

.more_btn .btn01::before {
	content: "";
	width: 0.05rem;
	height: 100%;
	background-image: url(../img/common/btn01_arrow.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	right: 0.08rem;
	top: 0;
	transition: all 0.3s;
}

@media (hover: hover) {
	.more_btn .btn01:hover::before {
		right: 0.04rem;
	}
}

.more_btn .btn01::after {
  position: absolute;
  bottom: -1px;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #4EC1DD;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.3s;
	z-index: 0;
}

@media (hover: hover) {
	.more_btn .btn01:hover::after {
		transform-origin: left top;
		transform: scale(1, 1);
	}
}

.more_btn .btn01 span {
	font-size: 0.16rem;
	font-weight: 500;
	color: #333;
}
@media screen and (max-width: 640px) {
	.more_btn .btn01 span {
		font-size: 0.15rem;
		font-weight: 600;
	}
}

.more_btn .btn01.-center {
	margin: auto;
}

.more_btn .btn01.-blank::before {
	background-image: url(../common/img/icon_newwin_black.svg);
	width: 0.14rem;
}

@media (hover: hover) {
	.more_btn .btn01.-blank:hover::before {
		right: 0.08rem;
	}
}

/*============================
画像のobject-fit:cover設定
============================*/
.-cover {
	overflow: hidden;
}

.-cover img {
	display: block;
	object-fit: cover;
	width: 100%;
	height: 100%;
	transition: all 0.3s;
}

/*============================
お問い合わせパーツ
============================*/
.mod_contact_wrap {
	padding-top: 1.00rem;
}
@media screen and (max-width: 640px) {
	.mod_contact_wrap {
		padding-top: 0.60rem;
	}
}

.mod_contact_wrap .wrap {
	border-radius: 0.10rem;
	overflow: hidden;
	background-color: #145F81;
	color: #FFF;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: center;
}
@media screen and (max-width: 640px) {
	.mod_contact_wrap .wrap {
		border-radius: 0.06rem;
	}
}

.mod_contact_wrap .wrap .ph {
	width: 48%;
}
@media screen and (max-width: 640px) {
	.mod_contact_wrap .wrap .ph {
		width: 100%;
		height: 55vw;
	}
}

.mod_contact_wrap .wrap .txt_box {
	width: 51.9%;
	text-align: center;
	padding: 0.50rem 0;
}
@media screen and (max-width: 640px) {
	.mod_contact_wrap .wrap .txt_box {
		width: 100%;
		padding: 0.30rem 0.20rem;
		box-sizing: border-box;
	}
}

.mod_contact_wrap .wrap .txt_box .ttl {
	font-size: 0.30rem;
	font-weight: 700;
	padding-bottom: 0.25rem;
}
@media screen and (max-width: 640px) {
	.mod_contact_wrap .wrap .txt_box .ttl {
		font-size: 0.20rem;
		padding-bottom: 0.20rem;
	}
}

.mod_contact_wrap .wrap .txt_box .txt {
	font-size: 0.15rem;
	font-weight: 600;
}
@media screen and (max-width: 640px) {
	.mod_contact_wrap .wrap .txt_box .txt {
		font-size: 0.14rem;
	}
}

.mod_contact_wrap .wrap .txt_box .txt span {
	border-bottom: 1px solid #FFF;
	letter-spacing: 0.06em;
}

.mod_contact_wrap .wrap .txt_box .tel_num {
	padding: 0.15rem 0;
}

.mod_contact_wrap .wrap .txt_box .tel_num a {
	font-size: 0.24rem;
	font-weight: 600;
	color: #FFF;
}
@media screen and (max-width: 640px) {
	.mod_contact_wrap .wrap .txt_box .tel_num a {
		font-size: 0.22rem;
	}
}

.mod_contact_wrap .wrap .txt_box .tel_num span {
	font-size: 0.13rem;
	font-weight: 600;
}
@media screen and (max-width: 640px) {
	.mod_contact_wrap .wrap .txt_box .tel_num span {
		padding-top: 0.10rem;
		display: block;
	}
}

.mod_contact_wrap .wrap .txt_box .address {
	font-size: 0.14rem;
}
@media screen and (max-width: 640px) {
	.mod_contact_wrap .wrap .txt_box .address {
		font-size: 0.13rem;
	}
}

.mod_contact_wrap .wrap .txt_box .btn {
	padding-top: 0.40rem;
	width: 100%;
	max-width: 2.95rem;
	margin: auto;
}
@media screen and (max-width: 640px) {
	.mod_contact_wrap .wrap .txt_box .btn {
		padding-top: 0.25rem;
		max-width: 90%;
	}
}

.mod_contact_wrap .wrap .txt_box .btn a {
	display: block;
	background-color: #FFF;
	color: #145F81;
	padding: 0.18rem 0.15rem 0.20rem;
	font-size: 0.18rem;
	font-weight: 600;
	text-align: left;
	position: relative;
}
@media screen and (max-width: 640px) {
	.mod_contact_wrap .wrap .txt_box .btn a {
		padding: 0.18rem 0.15rem 0.20rem 0;
		font-size: 0.16rem;
		text-align: center;
	}
}

@media (hover: hover) {
	.mod_contact_wrap .wrap .txt_box .btn a:hover {
		opacity: 0.7;
	}
}

.mod_contact_wrap .wrap .txt_box .btn a::after {
	content: "";
	width: 0.05rem;
	height: 100%;
	background-image: url(../img/common/mod_contact_arrow.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	top: 0;
	right: 0.15rem;
	transition: all 0.3s;
}

.mod_contact_wrap .wrap .txt_box .btn a:hover::after {
	right: 0.12rem;
}

/*============================
お知らせ
============================*/
.news {
  padding: 1.00rem 0 1.20rem;
	position: relative;
}
@media screen and (max-width: 640px) {
	.news {
		padding: 0.60rem 0;
		overflow-x: clip;
	}
}

.news::before {
	content: "";
	width: 4.60rem;
	height: 5.24rem;
	background-image: url(../img/common/deco04.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	top: -3.00rem;
	right: -0.80rem;
	z-index: -1;
}
@media screen and (max-width: 640px) {
	.news::before {
		width: 2.30rem;
		height: 2.60rem;
		top: -1.60rem;
		right: -1.00rem;
	}
}

.news .in {
  max-width: 10.80rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.news .in .sec_ttl {
  font-family: "Playfair Display", serif;
  font-size: 0.30rem;
  letter-spacing: 0.10em;
  width: 1.00rem;
}
@media screen and (max-width: 640px) {
	.news .in .sec_ttl {
		font-size: 0.24rem;
		text-align: center;
		width: 100%;
		padding-bottom: 0.40rem;
	}
}

.news .in .news_list_wrap {
  width: 100%;
  max-width: 8.40rem;
}

.news .in .news_list_wrap .list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 0;
}

.news .in .news_list_wrap .list .detail {
  width: 100%;
}

.news .in .news_list_wrap .list .detail a {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0 0.40rem;
  font-size: 0.15rem;
  color: #333;
}
@media screen and (max-width: 640px) {
	.news .in .news_list_wrap .list .detail a {
		gap: 0.05rem 0.10rem;
		font-size: 0.13rem;
	}
}

@media (hover: hover) {
	.news .in .news_list_wrap .list .detail a:hover {
		opacity: 0.7;
	}
}

.news .in .news_list_wrap .list .detail a .date {
  width: 0.80rem;
}
@media screen and (max-width: 640px) {
	.news .in .news_list_wrap .list .detail a .date {
		width: 0.70rem;
	}
}

.news .in .news_list_wrap .list .detail a .cat {
  width: 0.60rem;
}
@media screen and (max-width: 640px) {
	.news .in .news_list_wrap .list .detail a .cat {
		width: auto;
	}
	.news .in .news_list_wrap .list .detail a .cat::before {
		content: "|";
		display: inline-block;
		padding-right: 0.07rem;
	}
}

.news .in .news_list_wrap .list .detail a .news_ttl {
  font-weight: 500;
}
@media screen and (max-width: 640px) {
	.news .in .news_list_wrap .list .detail a .news_ttl {
		line-height: 1.65;
		color: #145F81;
		text-decoration: underline;
		width: 100%;
	}
}

.news .in .more_btn {
  padding-top: 0.50rem;
}

/*============================
フッター画像スライド
============================*/
.footer_slider {
	margin-bottom: -3px;
}

.footer_slider .slides .slide {
	width: 3.80rem;
	height: 2.90rem;
	overflow: hidden;
}
@media screen and (max-width: 640px) {
	.footer_slider .slides .slide {
		width: 2.00rem;
		height: 30vw;
	}
}

.footer_slider .slides .slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	margin: 0 1px;
}
@media screen and (max-width: 640px) {
	.footer_slider .slides .slide img {
		margin: 0;
	}
}

/*============================
フッター
============================*/
footer {
	background-color: #223852;
	padding: 0.90rem 0 0.50rem;
}
@media screen and (max-width: 640px) {
	footer {
		padding: 0 0 1.00rem;
	}
}

footer .in {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	color: #FFF;
}
@media screen and (max-width: 640px) {
	footer .in {
		flex-direction: column-reverse;
	}
}

footer .in .left {
	width: 100%;
	max-width: 2.80rem;
}
@media screen and (max-width: 640px) {
	footer .in .left {
		max-width: 100%;
		padding-top: 0.40rem;
	}
}

footer .in .left .logo {
	width: 1.90rem;
}
@media screen and (max-width: 640px) {
	footer .in .left .logo {
		width: 1.60rem;
		margin: auto;
	}
}

footer .in .left .contact {
	padding: 0.30rem 0;
	line-height: 1.91;
	position: relative;
}
@media screen and (max-width: 640px) {
	footer .in .left .contact {
		text-align: center;
		padding: 0.20rem 0 0;
	}
}

footer .in .left .contact::after {
	content: "";
	width: 100%;
	height: 1px;
	background-color: #FFF;
	opacity: 0.4;
	position: absolute;
	left: 0;
	bottom: 0;
}
@media screen and (max-width: 640px) {
	footer .in .left .contact::after {
		content: none;
	}
}

footer .in .left .contact .txt {
	font-size: 0.13rem;
	font-weight: 600;
}

footer .in .left .contact .tel_num {
	font-size: 0.16rem;
	font-weight: 600;
}

footer .in .left .contact .tel_num a {
	color: #FFF;
}

footer .in .left .address {
	font-size: 0.12rem;
	font-weight: 500;
	padding: 0.30rem 0;
	line-height: 1.91;
}
@media screen and (max-width: 640px) {
	footer .in .left .address {
		font-size: 0.11rem;
		padding: 0.20rem 0;
		text-align: center;
	}
}

footer .in .left .copyright {
	font-size: 0.10rem;
	line-height: 1.91;
}
@media screen and (max-width: 640px) {
	footer .in .left .copyright {
		text-align: center;
	}
}

footer .in .footer_nav_wrap {
	width: 100%;
	max-width: 8.00rem;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
@media screen and (max-width: 640px) {
	footer .in .footer_nav_wrap {
		width: 100vw;
		margin: 0 -0.20rem;
	}
}

footer .in .footer_nav_wrap .col_wrap {
	width: 25%;
}
@media screen and (max-width: 640px) {
	footer .in .footer_nav_wrap .col_wrap {
		width: 100%;
	}
}

footer .in .footer_nav_wrap .col_wrap:first-child {
	width: 40%;
}
@media screen and (max-width: 640px) {
	footer .in .footer_nav_wrap .col_wrap:first-child {
		width: 100%;
	}
}

footer .in .footer_nav_wrap .col_wrap a {
	color: #FFF;
}

footer .in .footer_nav_wrap .col_wrap .col_box {
	padding-bottom: 0.30rem;
}
@media screen and (max-width: 640px) {
	footer .in .footer_nav_wrap .col_wrap .col_box {
		/* margin-bottom: 0.15rem; */
		padding: 0.20rem;
		border-bottom: 1px solid rgba(255,255,255,0.3);
	}
	footer .in .footer_nav_wrap .col_wrap .col_box.-single {
		padding: 0.20rem 0;
	}
	footer .in .footer_nav_wrap .col_wrap .col_box.-single .col_ttl {
		padding: 0 0.20rem;
	}
}

footer .in .footer_nav_wrap .col_wrap .col_box .col_ttl {
	font-size: 0.15rem;
	font-weight: 500;
}
@media screen and (max-width: 640px) {
	footer .in .footer_nav_wrap .col_wrap .col_box .col_ttl {
		font-size: 0.14rem;
		position: relative;
	}
	footer .in .footer_nav_wrap .col_wrap .col_box.-acc .col_ttl a {
		pointer-events: none;
	}
	footer .in .footer_nav_wrap .col_wrap .col_box.-acc .col_ttl::before {
		content: "";
		width: 0.12rem;
		height: 1px;
		background-color: #FFF;
		position: absolute;
		top: 50%;
		right: 1px;
		transform: translateY(-50%);
	}
	footer .in .footer_nav_wrap .col_wrap .col_box.-acc .col_ttl::after {
		content: "";
		width: 1px;
		height: 0.12rem;
		background-color: #FFF;
		position: absolute;
		top: 50%;
		right: 0.06rem;
		transform: translateY(-50%);
		transition: all 0.3s;
	}
	footer .in .footer_nav_wrap .col_wrap .col_box.-acc {
		transition: all 0.3s;
	}
	footer .in .footer_nav_wrap .col_wrap .col_box.-acc.active {
		background-color: rgba(255,255,255,0.05);
	}
	footer .in .footer_nav_wrap .col_wrap .col_box.-acc.active .col_ttl::after {
		transform: translateY(-50%) rotate(90deg);
		opacity: 0;
	}
}

footer .in .footer_nav_wrap .col_wrap .col_box .col_ttl span {
	position: relative;
}

footer .in .footer_nav_wrap .col_wrap .col_box .col_ttl span::after {
  position: absolute;
  bottom: -0.03rem;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #FFF;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.3s;
}

footer .in .footer_nav_wrap .col_wrap .col_box .col_ttl a:hover span::after {
  transform-origin: left top;
  transform: scale(1, 1);
}

footer .in .footer_nav_wrap .col_wrap .col_box .col_ttl + .col_ttl {
	margin-top: 0.20rem;
}
@media screen and (max-width: 640px) {
	footer .in .footer_nav_wrap .col_wrap .col_box .col_ttl + .col_ttl {
		margin-top: 0.20rem;
		padding-top: 0.20rem;
		border-top: 1px solid rgba(255,255,255,0.3);
	}
}

footer .in .footer_nav_wrap .col_wrap .col_box .list {
	padding: 0.10rem 0;
}
@media screen and (max-width: 640px) {
	footer .in .footer_nav_wrap .col_wrap .col_box .list {
		padding: 0.10rem 0 0;
		display: none;
	}
}

footer .in .footer_nav_wrap .col_wrap .col_box .list .link {
	position: relative;
	font-size: 0.13rem;
	font-weight: 500;
	line-height: 2;
}

footer .in .footer_nav_wrap .col_wrap .col_box .list .link a {
	position: relative;
	display: inline-flex;
	align-items: center;
}

footer .in .footer_nav_wrap .col_wrap .col_box .list .link a::before {
	content: "";
	width: 0.08rem;
	height: 1px;
	background-color: #FFF;
	display: inline-block;
	margin-right: 0.08rem;
	opacity: 0.4;
	transition: all 0.3s;
}

footer .in .footer_nav_wrap .col_wrap .col_box .list .link a:hover::before {
	width: 0.12rem;
}

footer .in .footer_nav_wrap .col_wrap .col_box a.blank::after {
	content: "";
	display: inline-block;
	width: 0.18rem;
	height: 0.10rem;
	background-image: url(../common/img/icon_newwin_white.svg);
	background-position: right center;
	background-repeat: no-repeat;
	background-size: contain;
}

/* 四角ボタン */
#page_top.square {
	background-image: url(../img/common/icon_top.svg);
}
@media screen and (max-width: 640px) {
	#page_top.square {
		right: -100vw;
	}
}


/*============================
Tripla予約ウィジェット
============================*/
/* トリプラ */
#tripla-searching-app {
	width: 100%;
}

#tripla-searching-app .search-widget-search-container-bf1818 {
	background-color: rgba(255,255,255,0.9);
	backdrop-filter: blur(10px);
}

#tripla-searching-app .input-container-title-db81ec {
	display: none;
}

.search-widget-two-picker-wrapper-4ca735:first-child::before {
	content: "ご予約・空室検索";
	font-size: 0.17rem;
	font-weight: 700;
	display: inline-block;
	position: relative;
	top: -0.24rem;
	padding-right: 0.10rem;
}

#tripla-chat-circle-icon {
	width: 0.50rem !important;
	height: 0.50rem !important;
	bottom: 0.30rem !important;
	right: 0.20rem !important;
}

#room_search_wrap_outside {
	width: 100%;
	max-width: 9.00rem;
	min-width: 8.60rem;
	position: fixed;
	left: 50%;
	bottom: 0.40rem;
	transform: translateX(-50%);
	z-index: 300000;
	/* background-color: #FFF;
	border-radius: 10px;
	box-sizing: border-box;
	box-shadow: 0 2px 6px rgba(0,0,0,0.5); */
	padding: 0.05rem 0.20rem 0.20rem;
	font-family: 'Noto Sans JP', sans-serif;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: center;
}

@media screen and (max-width: 992px) {
	#room_search_wrap_outside {
		display: none !important;
	}
}

#room_search_wrap_outside .room_search_header {
	font-size: 0.17rem;
	font-weight: 700;
	color: #B4272D;
	opacity: 0;
}

#room_search_wrap_outside .search-widget-search-container-bf1818 {
	box-shadow: 0 0 0.10rem rgba(0,0,0,0.3);
	/* padding: 0; */
	margin: 0;
}

/* テキスト */
#room_search_wrap_outside .search-widget-search-container-bf1818 .input-container-input-container-eaf5bf .input-container-title-db81ec {
	display: none;
}

/* 日付未定のトグルボタン */
#room_search_wrap_outside .search-widget-search-container-bf1818 .search-widget-day-use-wrapper-fc1ff9 {
	/* display: none; */
}

/* 予約ボタン */
#room_search_wrap_outside .search-widget-search-container-bf1818 .button-btn-f51c1a {
	/* background-color: #B4272D !important; */
	color: #FFF !important;
}

/* 下段リンク */
#room_search_wrap_outside .room_search_links {
	width: 50%;
	position: absolute;
	bottom: 0.35rem;
	right: 0.3rem;
	/* border-top: 1px solid #CCC; */
	/* padding-top: 15px; */
	/* margin-top: 5px; */
}

#room_search_wrap_outside .room_search_links .list {
	display: flex;
	justify-content: flex-end;
	padding-right: 20px;
}

#room_search_wrap_outside .room_search_links .list .link {
	padding-left: 15px;
}

#room_search_wrap_outside .room_search_links .list .link a {
	font-size: 14px;
	color: #000;
}

#room_search_wrap_outside .room_search_links .list .link a::before {
	content: "";
	display: inline-block;
	width: 14px;
	height: 10px;
	background-image: url(../img/common/link_arrow_red.svg);
	background-position: left center;
	background-repeat: no-repeat;
	background-size: contain;
	position: relative;
	left: 0;
	transition: all 0.3s;
}

#room_search_wrap_outside .room_search_links .list .link a:hover::before {
	background-position: 3px center;
}

.menu_active #tripla-icon-message,
.menu_active .triplabot-icon-container {
	display: none !important;
}

/*============================
スマホ用予約リンク
2021.2.12
============================*/
#sp_room_search {
	position: fixed;
	bottom:0;
	left:0;
	width:100%;
	z-index: 2;
	box-shadow: 0 0 6px rgba(0,0,0,0.6);
	display: none;
}

@media screen and (max-width: 992px) {
	#sp_room_search {
		display: block;
	}
}

#sp_room_search .list {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	background-color: #111;
}

#sp_room_search .list .link {
	width: 25%;
	position: relative;
}

#sp_room_search .list .link a {
	display: block;
	text-align: center;
	padding: 45px 0 13px;
	font-size: 12px;
	color: #FFF;
	font-weight: 600;
	text-decoration: none;
	font-family: "Noto Sans JP", sans-serif;
}

#sp_room_search .list .link a::before {
	content: "";
	position: absolute;
	top: 15px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 1;
	width: 20px;
	height: 20px;
	opacity: 0.5;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
}

/* 空室検索 */
#sp_room_search .list .link.search {
	background-color: #023ebe;
}

#sp_room_search .list .link.search a::before {
	background-image: url(../img/common/reserve_icon_search.svg);
}

/* 予約確認 */
#sp_room_search .list .link.confirm {
}

#sp_room_search .list .link.confirm a::before {
	background-image: url(../img/common/reserve_icon_confirm.svg);
}

/* ログイン */
#sp_room_search .list .link.login {
}

#sp_room_search .list .link.login a::before {
	background-image: url(../img/common/reserve_icon_login.svg);
}

/* 会員登録 */
#sp_room_search .list .link.register {
}

#sp_room_search .list .link.register a::before {
	background-image: url(../img/common/reserve_icon_register.svg);
}

/* プラン一覧 */
#sp_room_search .list .link.plan {
}

#sp_room_search .list .link.plan a::before {
	background-image: url(../img/common/reserve_icon_plan.svg);
}

/* おすすめプラン */
#sp_room_search .list .link.pickup {
}

#sp_room_search .list .link.pickup a::before {
	background-image: url(../img/common/reserve_icon_pickup.svg);
	top: 12px;
	width: 34px;
	height: 24px;
}

/* 非表示パーツ */

/* チャット吹き出し */
/* #tripla-icon-message {
	display: none !important;
} */

/* チャット */
/* .triplabot-icon-container {
	display: none !important;
} */


.menu_active #tripla-icon-message,
.menu_active .triplabot-icon-container {
	display: none !important;
}

#tripla-chat-circle-icon {
	width: 50px !important;
	height: 50px !important;
	bottom: 90px !important;
	right: 10px !important;
}