/*
Theme Name: コンソルトホテル
Description: コンソルトホテルのテーマです。
Version: 1.0
*/

@media screen and (max-width: 768px) {
  html #wpadminbar {
    display: none;
  }
}

/*全体の設定
---------------------------------------------------------------------------*/
body {
  color: #3c3c3b;
  background: #ffffff;
  margin: 0px;
  padding: 0px;
  /*	font-family: 游明朝,"Yu Mincho",YuMincho,"Hiragino Mincho ProN",HGS明朝E,メイリオ,Meiryo,serif;*/
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", Meiryo, メイリオ, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", Osaka, "MS PGothic", arial, helvetica, sans-serif;
}
h1,
h2,
h3,
h4,
h5,
p,
ul,
ol,
li,
dl,
dt,
dd,
form,
figure {
  margin: 0px;
  padding: 0px;
}
ul {
  list-style-type: none;
  font-size: 16px;
}
img {
  max-width: 100%;
  border: none;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}
@media screen and (max-width: 640px) {
  img {
    max-width: 100%;
    height: auto;
    width/***/: auto;
  }
}
input,
textarea,
select {
  font-size: 1em;
}
form {
  margin: 0px;
}
table {
  border-collapse: collapse;
  font-size: 100%;
  border-spacing: 0;
}

.view-sp,
.fig-sp {
  display: none;
}
.disp-none {
  display: none !important;
}
@media screen and (max-width: 768px) {
  .view-pc {
    display: none;
  }
  .view-sp {
    display: block;
  }
  .fig-sp {
    display: block;
    margin-bottom: 20px;
  }
}

/* フォント設定
---------------------------------------------------------------------------*/
.en,
.font-en {
  font-family: "Lato", sans-serif;
  letter-spacing: 0.05em;
}
.gothic {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
}
.mincho,
.flex-control-paging li a {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}
strong {
  font-weight: 700;
}
.al-cnt {
  text-align: center;
}
.al-lft {
  text-align: left;
}
.al-rit {
  text-align: right;
}

/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
  color: #3c3c3b;
  transition-property: all;
  transition: 0.3s linear;
  text-decoration: none;
}
input[type="submit"],
button {
  transition-property: all;
  transition: 0.3s linear;
}
a:hover,
input[type="submit"]:hover,
button:hover {
  cursor: pointer;
  opacity: 0.6; /* IE8 over, Opera, Safari, CSS3 over */
  transition-property: all;
  transition: 0.3s linear;
}
a.noalpha:hover {
  opacity: 1;
}
a.bdr {
  text-decoration: underline;
}
a.bdr:hover {
  opacity: 1;
  text-decoration: underline;
}

/* 共通設定
---------------------------------------------------------------------------*/
.wrapper {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}
.inner {
  position: relative;
  width: 100%;
  margin: 0 auto;
}
.inner-base {
  max-width: 1020px;
  padding-left: 10px;
  padding-right: 10px;
}
.inner-wide {
  max-width: 1240px;
  margin: 0 auto;
}
.inner-all {
  width: 100%;
}
.inner-mini {
  max-width: 490px;
}

.inner.def {
  padding-top: 100px;
  padding-bottom: 100px;
}
.inner-panel {
  max-width: 790px;
  padding-left: 10px;
  padding-right: 10px;
}
@media screen and (max-width: 768px) {
  .inner-base,
  .inner-mini {
    padding-left: 3.5vw;
    padding-right: 3.5vw;
  }
  .inner.def {
    padding-top: 10vw;
    padding-bottom: 10vw;
  }
}

/* clearfix */
.cf {
  zoom: 1;
}
.cf:before,
.cf:after {
  display: table;
  content: "";
}
.cf:after {
  clear: both;
}
.clear {
  clear: both;
}

/* flexbox */
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.f-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.f-middle {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.f-bottom {
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.f-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.f-wrap {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.f-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.f-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  .sp-f-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .sp-f-column > *,
  .sp-f-column-reverse > * {
    width: 100% !important;
  }
  .sp-f-column-reverse {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .sp-f-wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .sp-f-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

/* 背景 */
.bg-deep {
  background-color: #254b84;
}
.bg-deepest {
  background-color: #473b2f;
}
.bg-brown {
  background-color: #504539;
}
.bg-clr {
  background-color: #eeeaea;
}
.bg-floormap {
  background-color: #faf9f9;
}
.bg-pad {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .bg-pad {
    padding-top: 10vw;
    padding-bottom: 10vw;
  }
}

/* 見出し */
.hdl {
  margin-bottom: 10px;
  font-size: 36px;
  line-height: 150%;
}
.hdl-cnts {
  margin-bottom: 20px;
  /* font-size: 26px; */
  font-size: 24px;
  line-height: 150%;
}
.hdl-mini {
  font-size: 24px;
  line-height: 140%;
}
@media screen and (max-width: 768px) {
  .hdl {
    font-size: 6.5vw;
    line-height: 150%;
  }
  .hdl-cnts {
    font-size: 5.5vw;
    line-height: 150%;
  }
  .hdl-mini {
    font-size: 4.8vw;
  }
}

/* キャッチ */
.catch {
  margin-top: -10px;
  margin-bottom: 30px;
  font-size: 14px;
  line-height: 140%;
}

/* リード */
.lead {
  font-size: 16px;
  line-height: 200%;
}
.lead-def {
  font-size: 16px;
  line-height: 150%;
}
.lead-big {
  font-size: 18px;
  line-height: 200%;
}
.lead-bigger {
  font-size: 24px;
  line-height: 180%;
}
.lead-large {
  font-size: 20px;
  line-height: 180%;
}
.lead-mini {
  font-size: 14px;
  line-height: 150%;
}
.lead-small {
  font-size: 12px;
  line-height: 150%;
}
.lead-mini.sec-ttl {
  margin-top: -10px;
}
.str {
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .lead {
    font-size: 3.8vw;
    line-height: 150%;
  }
  .lead-big {
    font-size: 4.5vw;
  }
  .lead-large,
  .lead-bigger {
    font-size: 5vw;
  }
  .lead-mini,
  .lead-small {
    font-size: 3vw;
    line-height: 150%;
  }
  .lead-def {
    font-size: 3.8vw;
  }
}

/* 文字色 */
.clr-thinest {
  color: #ffffff;
}
.clr-deep {
  color: #ae8d08;
}
.clr-deepest {
  color: #473b2f;
}
.clr-dark {
  color: #3c3c3b;
}
.clr-blue {
  color: #254b84;
}

/* ボタン
---------------------------------------------------------------------------*/
/* 斜めの */
.btn {
  display: inline-block;
  padding: 15px 30px;
  font-size: 16px;
  line-height: 120%;
  transform: skewX(-15deg);
}
.btn span {
  display: block;
  transform: skewX(15deg);
}
.btn-deep {
  border: 1px solid #ae8d08;
  color: #ae8d08;
}
.btn-bg-deep {
  border: 1px solid #ae8d08;
  color: #ffffff;
  background-color: #ae8d08;
}
.btn-bg-thin {
  border: 1px solid #ae8d08;
  color: #ae8d08;
  background-color: #ffffff;
}
@media screen and (max-width: 768px) {
  .btn {
    width: 85vw;
    padding: 5vw;
    font-size: 4vw;
  }
}

/* やじるしつき */
.btn-arrow a {
  display: inline-block;
  position: relative;
  font-size: 14px;
  line-height: 110%;
}
.btn-arrow.mini a::after {
  position: absolute;
  content: "";
  width: 5px;
  height: 11px;
  top: calc(50% - 5.5px);
  right: -15px;
  background-image: url(img/icon-arrow-right-mini.png);
}

/* レイアウト - ずれたやつ
---------------------------------------------------------------------------*/
.lay-shifted {
  position: relative;
  padding-top: 45px;
}
.lay-shifted .txt {
  width: min(600px, 59vw);
  padding: 70px 130px 40px 35px;
  border: 1px solid #ae8d08;
}
.lay-shifted .fig {
  position: absolute;
  right: 0;
  top: 0;
}
@media screen and (max-width: 768px) {
  .lay-shifted {
    width: 100vw;
    margin-left: -3.5vw;
    margin-right: -3.5vw;
  }
  .lay-shifted .txt {
    width: 93vw;
    margin-left: 3.5vw;
    padding: 80vw 3.5vw 5vw;
  }
}

/* レイアウト - サムネイルつきスライダー
---------------------------------------------------------------------------*/
/* スライダー */
.block-thumbs {
  position: relative;
  margin-bottom: 160px;
}
.block-thumbs .figs > li {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  opacity: 0;
  transition: all ease 0.6s;
}
.block-thumbs .figs > li.active {
  position: relative;
  z-index: 99;
  opacity: 1;
  transition: all ease 0.6s;
}

.block-thumbs .figs img {
  display: block;
  width: 100vw;
  height: auto;
}
.block-thumbs .thumbs {
  position: absolute;
  bottom: -60px;
  left: 40px;
  z-index: 500;
}
.block-thumbs .thumbs > li {
  width: 220px;
  margin-right: 6px;
  border: 2px solid transparent;
  transition: all ease 0.3s;
}
.block-thumbs .thumbs > li.bdr {
  position: relative;
  border: 2px solid #ae8d08;
  transition: all ease 0.3s;
}
.block-thumbs .thumbs > li.bdr::after {
  content: " ";
  height: 0;
  position: absolute;
  width: 0;
  border: 5px solid transparent;
  border-bottom-width: 12px;
  border-bottom-color: #ae8d08;
  top: -17px;
  left: calc(50% - 7.5px);
}
.block-thumbs .thumbs > li img {
  display: block;
}

.block-thumbs .cover {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 400;
}
@media screen and (max-width: 768px) {
  .block-thumbs {
    margin-bottom: 15vw;
  }
  .block-thumbs .figs img {
    height: 90vw;
    object-fit: cover;
    object-position: center center;
  }

  .block-thumbs .thumbs {
    width: 90vw;
    left: 5vw;
    bottom: -5vw;
  }
  .block-thumbs .thumbs > li:last-of-type {
    margin-right: 0;
  }
}
/* テキスト */
.block-hdls.lay-thumb {
  position: absolute;
  top: 60px;
  left: 40px;
  z-index: 600;
}
.block-hdls.lay-thumb .hdl.en {
  font-size: 60px;
  font-weight: 600;
  line-height: 120%;
}
.block-hdls.lay-thumb .hdl.ja {
  margin-left: 25px;
  font-size: 25px;
  font-weight: 500;
  line-height: 190%;
}
.block-hdls.lay-thumb .lead {
  width: 100%;
  margin-top: -5px;
  font-size: 18px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .block-hdls.lay-thumb {
    top: 7vw;
    left: 5vw;
  }
  .block-hdls.lay-thumb .hdl.en {
    font-size: 7vw;
    line-height: 100%;
  }
  .block-hdls.lay-thumb .hdl.ja {
    margin-left: 3vw;
    margin-bottom: 2vw;
    font-size: 3vw;
  }
  .block-hdls.lay-thumb .lead {
    width: 90%;
    font-size: 3vw;
  }
}
/* ボタン */
.block-btn.lay-thumb {
  position: absolute;
  right: 40px;
  bottom: 50px;
  z-index: 610;
}
.block-btn.lay-thumb .btn {
  margin-right: 15px;
}
@media screen and (max-width: 768px) {
  .block-btn.lay-thumb .btn {
    width: auto;
    padding: 3.5vw 3vw;
  }
  .block-breakfast .block-btn.lay-thumb .btn,
  .block-facility .block-btn.lay-thumb .btn {
    padding-left: 8vw;
    padding-right: 8vw;
  }
  .block-btn.lay-thumb {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    left: 7vw;
    width: 90vw;
    text-align: right;
  }
}

/* 表組み
---------------------------------------------------------------------------*/
.tbl-def {
  width: 100%;
}
.tbl-def th {
  padding: 10px 15px;
  border-bottom: 1px solid #ae8d08;
}
.tbl-def td {
  padding: 10px 30px;
  border-bottom: 1px solid #bfbfbf;
}
.tbl-def tr:first-of-type th {
  border-top: 1px solid #ae8d08;
}
.tbl-def tr:first-of-type td {
  border-top: 1px solid #bfbfbf;
}
.tbl-def th p {
  font-size: 16px;
  line-height: 150%;
}
@media screen and (max-width: 768px) {
  .tbl-def th,
  .tbl-def td {
    padding: 2vw;
  }
  .tbl-def th p {
    font-size: 3.8vw;
  }
}

/* ヘッダー
---------------------------------------------------------------------------*/
.block-head {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9200;
}
.block-head .bg {
  position: relative;
  height: 120px;
  background-image: url(img/bg-hd.png);
}
.block-head .inner-base {
  position: relative;
  z-index: 9300;
}
.block-head .inner-base .logo {
  position: absolute;
  top: 12px;
  left: calc(50% - 73px);
  z-index: 9350;
}
.block-head .inner-base .logo img {
  width: 146px;
}
@media screen and (max-width: 768px) {
  .block-head .inner-base .logo {
    width: 26vw;
    left: calc(50% - 13vw);
  }
}
/* 予約ボタン */
.block-head .reserve {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 9400;
}
.block-head .reserve .bg-deep {
  width: 150px;
  height: 120px;
}
.block-head .reserve .bg-deep img {
  width: 32px;
}
@media screen and (max-width: 768px) {
  .block-head .reserve .bg-deep {
    width: 22vw;
    height: 19vw;
  }
  .block-head .reserve .bg-deep img {
    width: 23px;
  }
  .block-head .reserve .bg-deep .lead {
    font-size: 3vw;
  }
}
/* 言語メニュー */
.block-head .lang-menu {
  position: absolute;
  top: 8px;
  right: 0;
  /* 20240531 修正対応 */
  display: none;
}
.block-head .label {
  width: 134px;
  height: 40px;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 20px;
}
.block-head .lang-menu p {
  margin-right: 7px;
}
.lst-lang-sub {
  display: none;
  width: 100%;
  padding: 10px 10px;
  margin-top: 5px;
  background-color: rgba(0, 0, 0, 0.8);
  border-radius: 20px;
}
.lst-lang-sub li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
.lst-lang-sub li:last-of-type {
  border-bottom: none;
}

/* @media screen and (max-width: 1400px){
	.block-head .lang-menu {
		right: initial;
		left: 66vw;
	}
} */
@media screen and (max-width: 768px) {
  .block-head .label {
    width: 30vw;
    height: 8vw;
  }
  .block-head .lang-menu {
    top: 3.5vw;
    right: initial;
    left: 3.5vw;
  }
  .block-head .lang-menu p,
  .lst-lang-sub li {
    font-size: 3.5vw;
  }
}

/* フッター
---------------------------------------------------------------------------*/
/* 上部 */
.block-foot {
  margin-top: 70px;
}
.sec .block-foot {
  margin-top: 50px;
}
.block-foot .bg {
  padding: 30px 0;
}
.block-foot .logo img {
  width: 146px;
}
.block-foot .reserve {
  margin-right: 40px;
}
.telnum {
  font-size: 35px;
}
.block-foot .addr {
  width: 285px;
}
/* 下部 */
.block-foot .ft {
  padding: 25px 0;
}
.top .block-foot .ft {
  padding: 25px 0 170px;
}
.block-foot .block-sns li {
  margin-right: 20px;
}

/* PDFリンク 20190418 */
.foot-pdflink {
  padding: 40px 0;
  background: #756a5e;
}
.foot-pdflink .pdf-wrap {
  display: flex;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
  justify-content: flex-end;
  display: none;
}
.foot-pdflink p {
  color: #fff;
  font-size: 16px;
  line-height: 1;
  padding-right: 20px;
  background: url(img/pdf-arrow.png) no-repeat;
  background-position: right center;
  background-size: 10px 14px;
}
.foot-pdflink ul {
  display: flex;
}
.foot-pdflink ul li:first-child {
  margin-left: 36px;
}
.foot-pdflink ul li:last-child {
  margin-left: 7px;
}
.foot-pdflink .btn-bg-pdf {
  border: 1px solid #fff;
  color: #555;
  background-color: #fff;
  padding-left: 65px;
  padding-right: 20px;
}
.foot-pdflink .btn-bg-pdf::before {
  position: absolute;
  background: url(img/icon-pdf.png) no-repeat;
  background-size: contain;
  content: "";
  display: block;
  width: 35px;
  height: 35px;
  transform: skewX(15deg);
  top: 9px;
  left: 22px;
}
.block-foot .ft .btn-arrow + .btn-arrow {
  margin-left: 5em;
}
.btn-arrow-wrap {
  display: flex;
}
@media screen and (max-width: 768px) {
  .sec .block-foot {
    margin-top: 40px;
  }
  .block-foot .inner {
    text-align: center;
    align-items: flex-start;
  }
  .block-foot .rit {
    margin-top: 5vw;
    padding: 5vw;
    border: 1px solid #ffffff;
  }
  .block-foot .logo {
    margin-bottom: 4.1vw;
  }
  .block-foot .logo img {
    width: 25vw;
  }
  .block-foot .reserve {
    margin-right: 0;
  }
  .block-foot .reserve .lead {
    margin-bottom: 3.5vw;
  }
  .block-foot .btn {
    padding: 3.5vw 10vw;
  }

  .block-foot .ft {
    margin-bottom: 16vw;
    padding-bottom: 8vw;
  }
  .top .block-foot .ft {
    padding-bottom: 30vw;
  }
  .block-foot .ft .block-sns {
    width: 50%;
  }
  .block-foot .ft .btn-arrow {
    margin-right: 6vw;
  }
  .block-foot .ft .btn-arrow + .btn-arrow {
    margin-top: 3em;
    margin-left: 0;
  }
  .btn-arrow-wrap {
    display: block;
  }
  .telnum {
    color: #ffffff;
    font-weight: 500;
    font-size: 8vw;
  }
  .telnum a {
    color: #ffffff;
  }
  .foot-pdflink {
    padding: 30px 0;
  }
  .foot-pdflink p {
    font-size: 3.8vw;
    padding-right: 0;
    margin-bottom: 30px;
    background: none;
  }
  .foot-pdflink .pdf-wrap {
    flex-direction: column;
  }
  .foot-pdflink ul {
    display: flex;
    flex-direction: column;
  }
  .foot-pdflink ul li:first-child {
    margin: 0;
    margin-bottom: 15px;
  }
  .foot-pdflink ul li:last-child {
    margin: 0;
  }
  .foot-pdflink .btn-bg-pdf::before {
    width: 10vw;
    height: 10vw;
    top: 1.25vw;
    left: 15vw;
  }
  .foot-pdflink .btn-bg-pdf {
    font-size: 3.5vw;
    padding: 3.5vw 0 3.5vw 28vw;
  }

  .block-foot .addr .lead-def,
  .block-foot .addr .lead-def a {
    color: #ffffff !important;
  }
}

/* フッターホテルリンク 20241204 */
.foot-pdflink .foot-hoters {
  width: min(1020px, 90%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.foot-pdflink .foot-hoters__ttl {
  font-size: 24px;
  color: #fff;
  margin-right: min(70px, 5vw);
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-weight: 300;
}
.foot-pdflink .foot-hoters__image {
  display: block;
}
.foot-pdflink .foot-hoters__link {
  width: min(200px, 18vw);
  display: block;
}
.foot-pdflink .foot-hoters__name {
  color: #fff;
  font-size: 14px;
  text-align: center;
  background-image: none;
  padding: 0;
  margin-top: 0.5em;
}
@media screen and (max-width: 768px) {
  .foot-pdflink .foot-hoters {
    flex-direction: column;
    justify-content: flex-start;
  }
  .foot-pdflink .foot-hoters__ttl {
    font-size: 6.5vw;
    margin-right: 0;
  }
  .foot-pdflink .foot-hoters__list {
    margin-top: 30px;
  }
  .foot-pdflink .foot-hoters__link {
    width: min(300px, 90vw);
    display: block;
  }
  .foot-pdflink .foot-hoters__name {
    font-size: 4vw;
  }
}
/* グロナビ
---------------------------------------------------------------------------*/
#menu-glnv,
#menu-glnven,
#menu-glnvzhcn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: absolute;
  width: 100%;
  top: 67px;
  left: 0;
}
#menu-glnv li:nth-of-type(4),
#menu-glnven li:nth-of-type(4),
#menu-glnvzhcn li:nth-of-type(4) {
  margin-right: 100px;
}
#menu-glnv li:nth-of-type(5),
#menu-glnven li:nth-of-type(5),
#menu-glnvzhcn li:nth-of-type(5) {
  margin-left: 100px;
}
#menu-glnv li a {
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  line-height: 150%;
}
#menu-glnven li a {
  color: #ffffff;
  font-size: 17px;
  font-weight: 600;
  line-height: 150%;
}
#menu-glnvzhcn li a {
  color: #ffffff;
  font-size: 17px;
  font-weight: 600;
  line-height: 150%;
}

@media screen and (max-width: 768px) {
  #menu-glnv,
  #menu-glnven,
  #menu-glnvzhcn {
    display: none;
  }
}

/* ベストレートメッセージ
---------------------------------------------------------------------------*/
.block-bestrate .bg {
  border-bottom: 1px solid #ffffff;
}
.block-bestrate .inner {
  padding-top: 15px;
  padding-bottom: 15px;
}
.block-bestrate p {
  font-size: 18px;
  line-height: 150%;
  color: #ffffff;
}
.block-bestrate p span {
  color: #ae8d08;
}
@media screen and (max-width: 768px) {
  .block-bestrate p {
    font-size: 4vw;
  }
  .block-bestrate p span {
    display: block;
  }
  .block-bestrate .bg {
    border-bottom: none;
  }
}

/* リニューアル
---------------------------------------------------------------------------*/
.block-renewal .line {
  margin-bottom: 40px;
}
.block-renewal .block-btn {
  margin-top: 30px;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .block-renewal .hdl {
    font-size: 5.5vw;
    line-height: 150%;
  }
  .block-renewal .line {
    margin-bottom: 5vw;
  }
  .block-renewal .line img {
    width: 31vw;
  }
  .block-renewal .block-btn {
    text-align: center;
  }
}

/* ホテルからのお知らせ
---------------------------------------------------------------------------*/
.block-news .bg {
  border-bottom: 1px solid #eaeaea;
}
.lst-news {
  margin-top: 40px;
}
.lst-news > li {
  width: 460px;
  margin-bottom: 25px;
}
.lst-news .fig {
  width: 130px;
}
.lst-news .fig img {
  height: 100px;
  object-fit: cover;
  object-position: center center;
  font-family: "object-fit: cover; object-position: center center;";
}
.lst-news .txt {
  display: block;
  width: 320px;
}
.lst-news .date {
  margin-bottom: 8px;
  font-size: 16px;
  line-height: 120%;
}
.lst-news .ttl {
  margin-bottom: 8px;
  font-size: 18px;
  line-height: 120%;
}
.lst-news .desc {
  font-size: 12px;
  line-height: 160%;
}
.block-news .block-btn {
  margin-top: 25px;
  text-align: center;
}

.block-news .none {
  height: 100px;
  background-color: #cccccc;
}
@media screen and (max-width: 768px) {
  .lst-news .fig {
    width: 24%;
  }
  .lst-news > li {
    margin-bottom: 3.87vw;
  }
  .lst-news .txt {
    width: 73%;
  }
  .lst-news .date {
    margin-bottom: 1vw;
    font-size: 3.8vw;
  }
  .lst-news .ttl {
    margin-bottom: 1.5vw;
    font-size: 4.3vw;
  }
  .lst-news .desc {
    font-size: 3vw;
    line-height: 130%;
  }
}

/* プラン
---------------------------------------------------------------------------*/
.block-plan .block-btn {
  margin-top: 50px;
  text-align: center;
}
.block-plan .fig-bestrate img {
  width: 260px;
}
.lst-plan {
  margin-top: 45px;
}
.lst-plan > li {
  width: 33.333333%;
  border: 1px solid #ececec;
  border-left: none;
}
.lst-plan > li:first-of-type {
  border-left: 1px solid #ececec;
}
.lst-plan > li a {
  display: block;
  width: 100%;
  padding: 40px;
}
.lst-plan .fig {
  position: relative;
  margin-bottom: 30px;
}
.lst-plan .fig img {
  display: block;
  width: 100%;
  height: auto;
}
.lst-plan .fig::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(60, 60, 59, 0.3);
  transition-property: all;
  transition: 0.3s linear;
}
.lst-plan .hdl-mini {
  margin-bottom: 25px;
  padding-bottom: 30px;
  border-bottom: 1px solid #dfdfdf;
}
.lst-plan .price strong {
  font-size: 26px;
  padding-left: 0.5em;
}
.lst-plan li a:hover {
  opacity: 1;
  box-shadow: 0px 5px 19.74px 1.26px rgba(0, 0, 0, 0.11);
}
.lst-plan li a:hover .fig::before {
  opacity: 0;
  transition-property: all;
  transition: 0.3s linear;
}
@media screen and (max-width: 768px) {
  .block-plan .hdl {
    font-size: 6.5vw;
  }
  .block-plan .fig-bestrate {
    margin-top: -5vw;
  }
  .block-plan .fig-bestrate img {
    width: 48.5vw;
  }
  .lst-plan {
    margin-top: 8vw;
  }
  .lst-plan > li a {
    padding: 8.4vw 5vw 5vw;
  }
  .lst-plan .fig {
    margin-bottom: 6.5vw;
  }
  .lst-plan .hdl-mini {
    padding-bottom: 6.6vw;
    font-weight: 500;
  }
  .lst-plan .price strong {
    font-size: 6.4vw;
    font-weight: 500;
  }
  .block-plan .block-btn {
    margin-top: 7vw;
  }
  .lst-plan .fig::before {
    display: none;
  }
}

/* 検索パネル
---------------------------------------------------------------------------*/
.block-panel .bg {
  padding-top: 15px;
  padding-bottom: 20px;
  background-color: #faf9f8;
}

/* フッターメニュー（SP）
---------------------------------------------------------------------------*/
.block-footmenu {
  position: fixed;
  bottom: -16vw;
  left: 0;
  width: 100%;
  height: 16vw;
  border-top: 1px solid #cccccc;
  z-index: 99999;
  transition-property: all;
  transition: 0.3s linear;
}
.block-footmenu.active {
  bottom: 0;
  transition-property: all;
  transition: 0.3s linear;
}
.block-footmenu li {
  width: 33.33333vw;
}
.block-footmenu li a {
  width: 100%;
  height: 16vw;
}
.block-footmenu li:nth-of-type(1) a {
  background-color: #ffffff;
}
.block-footmenu li:nth-of-type(2) a {
  background-color: #254b84;
  color: #ffffff;
}
.block-footmenu li:nth-of-type(3) a {
  background-color: #ae8d08;
  color: #ffffff;
}
.block-footmenu li .icon {
  height: 6vw;
}
.block-footmenu li .icon img {
  max-width: 7.5vw;
  width: auto;
  height: 100%;
}
.block-footmenu li p {
  margin-top: 2vw;
  font-size: 3.5vw;
}

/* フッターメニュー（SP）
---------------------------------------------------------------------------*/
.pagetop {
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index: 999999;
  opacity: 0;
  transition-property: all;
  transition: 0.3s linear;
}
.pagetop.active {
  opacity: 1;
  transition-property: all;
  transition: 0.3s linear;
}
@media screen and (max-width: 768px) {
  .pagetop {
    right: 2vw;
    bottom: 18vw;
    width: 10vw;
    height: 10vw;
  }
  .pagetop.active {
    opacity: 0.6;
  }
}

/* AIコンシェルジュ（SP）
---------------------------------------------------------------------------*/
#trip_ai_container {
  position: relative;
  bottom: 10px !important;
  right: 85px !important;
  opacity: 0;
}
#trip_ai_container.active {
  opacity: 1;
  transition-property: all;
  transition: 0.3s linear;
}
@media screen and (max-width: 768px) {
  #trip_ai_container {
    position: relative;
    bottom: 18vw !important;
    right: 14vw !important;
    width: 37.3vw !important;
    height: 13vw !important;
  }
}

/* レイアウト - 下層
---------------------------------------------------------------------------*/
#sec .page-body,
#thr .page-body {
  padding-bottom: 100px;
}
@media screen and (max-width: 768px) {
  #sec .page-body,
  #thr .page-body {
    padding-bottom: 5vw;
  }
}

/* タイトル画像 - 下層
---------------------------------------------------------------------------*/
.block-mainimg .block-bd {
  position: relative;
}
.block-mainimg .mainimg img {
  width: 100%;
  height: 390px;
  object-fit: cover;
  object-position: center center;
  font-family: "object-fit: cover; object-position: center center;";
}
.block-mainimg .cov {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
}
.block-mainimg .txt {
  position: absolute;
  bottom: 100px;
  left: 0;
  width: 100%;
  color: #ffffff;
}
.block-mainimg .en {
  font-size: 47px;
  line-height: 120%;
}
.block-mainimg .ja {
  font-size: 18px;
  line-height: 120%;
}
@media screen and (max-width: 768px) {
  .block-mainimg .mainimg img {
    height: 245px;
  }
  .block-mainimg .txt {
    bottom: 16vw;
  }
  .block-mainimg .en {
    font-size: 9.5vw;
  }
  .block-mainimg .ja {
    font-size: 4.3vw;
  }
}

/* 導入 - 下層
---------------------------------------------------------------------------*/
.block-intro .inner {
  padding-top: 100px;
  padding-bottom: 70px;
}
@media screen and (max-width: 768px) {
  .block-intro .inner {
    padding-top: 15vw;
    padding-bottom: 15vw;
  }
  .lead-intro {
    line-height: 180%;
  }
}

/* アンカーリンク - 下層
---------------------------------------------------------------------------*/
.block-anchors .inner {
  padding-bottom: 100px;
}
.lst-anchors {
  margin-top: 35px;
}
.lst-anchors > li {
  margin: 0 2.5px;
}
.lst-anchors > li a {
  width: 330px;
  height: 100px;
}
.lst-anchors > li a .lead-big {
  padding-top: 5px;
  line-height: 120%;
}
@media screen and (max-width: 768px) {
  .block-anchors .inner {
    padding-bottom: 15vw;
  }
  .lst-anchors > li {
    margin-bottom: 3.8vw;
  }
  .lst-anchors > li:last-of-type {
    margin-bottom: 0;
  }
  .lst-anchors > li a {
    width: 87vw;
  }
}
/* リンク先 */
.ancpos {
  display: block;
  padding-top: 120px;
  margin-top: -120px;
  position: relative;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .ancpos {
  }
}

/* メンバーページリンク - 下層
---------------------------------------------------------------------------*/
.block-link-memeber .inner {
  padding-top: 50px;
}
@media screen and (max-width: 768px) {
  .block-link-memeber .inner {
    padding-top: 40px;
  }
}

/* ぱんくずリスト - 下層
---------------------------------------------------------------------------*/
.block-bread {
  margin-top: 100px;
  margin-bottom: 50px;
}
.block-bread li {
  position: relative;
  margin-right: 20px;
}
.block-bread li::after {
  content: "›";
  position: absolute;
  right: -10px;
  top: 0;
}
.block-bread li:last-of-type::after {
  display: none;
}
@media screen and (max-width: 768px) {
  .block-bread {
    margin-top: 5vw;
    margin-bottom: 10vw;
  }
  .block-bread ul {
    display: block !important;
  }
  .block-bread li {
    display: inline;
    /*margin-right: 0;*/
    /*padding-bottom: 1vw;
		margin-bottom: 1.5vw;*/
    margin-right: 3vw;
    font-size: 3.8vw;
    line-height: 150%;
  }
  /*.block-bread li::after {
		transform: rotate(90deg);
		right: initial;
		left: 3vw;
		bottom: -2vw;
	}*/
  .block-bread li:nth-of-type(2) {
    white-space: nowrap;
  }
  .block-bread li::after {
    top: -1.2vw;
  }
}

/* 2カラム - 下層
---------------------------------------------------------------------------*/
.lay .box-main {
  width: 700px;
}
.lay .box-side {
  width: 270px;
}

/* 見出し - 下層
---------------------------------------------------------------------------*/
/* ボーダー（テキスト下色付き） */
.hdl-bdr {
  position: relative;
  min-height: 45px;
  margin-bottom: 15px;
  border-bottom: 1px dotted #bfbfbf;
}
.hdl-bdr span {
  display: inline-block;
  position: absolute;
  bottom: -1px;
  left: 0;
  padding-bottom: 12px;
  padding-right: 15px;
  border-bottom: 1px solid #ae8d08;
  font-size: 24px;
  line-height: 150%;
}
@media screen and (max-width: 768px) {
  .hdl-bdr {
    min-height: 7vw;
    margin-bottom: 5vw;
  }
  .hdl-bdr span {
    padding-bottom: 2.5vw;
    font-size: 5vw;
  }
}

/* SPクリックで出てくるメニュー
---------------------------------------------------------------------------*/
.block-spmenu {
  display: none;
}
@media screen and (max-width: 768px) {
  .block-spmenu {
    position: fixed;
    top: 0;
    left: 0;
    background-color: #eeeaea;
    z-index: 9999999;
  }
  .block-spmenu > div {
    width: 100vw;
    height: 100vh;
  }
  .block-spmenu .logo {
    padding-top: 1vw;
  }
  .block-spmenu .logo img {
    width: 24vw;
  }
  .block-spmenu .btn-close {
    position: absolute;
    right: 0;
    top: 0;
    width: 15.5vw;
  }
  .box-inner {
    padding-left: 3vw;
    padding-right: 3vw;
  }
  .block-spmenu .box-spnav {
    margin-top: 4vw;
  }
  .block-spmenu .box-spnav li {
    width: 48.5%;
    margin-bottom: 2.5vw;
  }
  .block-spmenu .box-spnav li:nth-of-type(2n-1) {
    margin-right: 3%;
  }
  .block-spmenu .box-spnav.btm li:last-of-type {
    width: 100%;
    margin-right: 0;
  }
  .block-spmenu .box-spnav li a {
    width: 100%;
    padding: 5vw 0;
    background-image: url(img/arrow-b-spemnu.png);
    background-repeat: no-repeat;
    background-position: right 3vw center;
    background-size: 3.5vw auto;
    background-color: #ffffff;
    font-size: 3.2vw;
    color: #282828;
  }

  .block-spmenu .box-spnav.btm li a {
    background-image: url(img/arrow-w-spmenu.png);
    color: #ffffff;
  }
  .block-spmenu .box-spnav.btm li:nth-of-type(1) a {
    background-color: #50453a;
  }
  .block-spmenu .box-spnav.btm li:nth-of-type(2) a {
    background-color: #3c3c3b;
  }
  .block-spmenu .box-spnav.btm li:nth-of-type(3) a {
    background-color: #ae8d08;
  }

  .block-spmenu .box-pri {
    margin-top: 3vw;
    margin-bottom: 3vw;
    font-size: 3.2vw;
  }
  .block-spmenu .box-pri a {
    padding-left: 2.8vw;
    color: #282828;
    background-image: url(img/icon-arrow-b-spmenu.png);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 1vw auto;
  }
  .block-spmenu .box-pri.flex a {
    display: block;
    width: 48.5%;
  }

  .block-spmenu .box-btm {
    background-color: #254b84;
  }
  .block-spmenu .box-btm a {
    padding: 8vw;
    color: #ffffff;
    font-size: 3.2vw;
  }
  .block-spmenu .box-btm .icon {
    width: 5.3vw;
    margin-right: 2vw;
  }
  .block-spmenu .box-pri.en > a {
    margin-bottom: 2vw;
  }
}

/* 20240522 改修 */
/* li#menu-item-19 a:active {
  pointer-events: none;
}
.block-spmenu .box-spnav li a.c-soon {
  text-align: center;
  line-height: 1.5;
  padding: 1.8vw 0;
  background-image: none;
}
.block-spmenu .box-spnav li a.c-soon:active {
  pointer-events: none;
} */

.bnr--wrap {
  display: none;
  position: fixed;
  right: 85px;
  bottom: 1%;
  z-index: 1000;
}
/* .bnr--wrap.bnr-float {
  bottom: 9%;
} */
.bnr--wrap a {
  display: block;
  width: min(300px, 25vw);
}
@media screen and (max-width: 768px) {
  .bnr--wrap {
    right: 14vw;
    bottom: 18vw;
  }
  /* .bnr--wrap.bnr-float {
    bottom: 18vw;
  } */
  .bnr--wrap a {
    width: 45vw;
  }
}
/* 会員特典ページボタン表示対応 */
.block-link-memeber .mmb-only {
  display: none;
}
.member .block-link-memeber a {
  display: none;
}
.member .block-link-memeber .mmb-only {
  display: inline-block;
}
