@charset "UTF-8";

/* Reset
------------------------------------------------------------------*/
* {
  box-sizing: border-box;
}
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
figure,
figcaption,
article,
section,
nav,
header,
footer {
  margin: 0;
  padding: 0;
  font-weight: normal;
  font-style: normal;
}
html * {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  width: 100%;
  font-family: "Noto Sans JP", "メイリオ", Meiryo, "Meiryo UI", "ヒラギノ角ゴシック", "Hiragino Sans", "Hiragino Kaku Gothic ProN",
    "ヒラギノ角ゴ ProN W3", "ヒラギノ角ゴ StdN", "Hiragino Kaku Gothic StdN", sans-serif;
  font-weight: 400;
  background-color: #fff;
  background-size: 20% auto;
  background-position: bottom 7vw left 5vw;
  -webkit-text-size-adjust: 100%;
}
html {
  overflow-y: scroll;
  color: #000;
  font-size: 100%; /* 100% = 1em = 1rem = 16px */
  scroll-behavior: smooth;
}

/* Basic elements
------------------------------------------------------------------*/
img {
  border: none;
  width: 100%;
  height: auto;
}
ul,
ol {
  list-style: none;
  list-style-position: inside;
}
dl {
  margin: 0;
}
dl dt {
  margin: 0;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
  empty-cells: show;
}
blockquote,
pre,
dl,
ol,
ul,
th,
td {
}
p {
  margin: 0;
}
ul,
ol,
dl {
  list-style-position: outside;
}
select {
  text-transform: none;
  appearance: none;
}

/* Base Link
------------------------------------------------------------------*/
a {
  color: #000;
  text-decoration: none;
}
a:hover {
  color: #666;
  text-decoration: none;
}
a:active,
a:focus {
  outline: none;
}

/* Font
------------------------------------------------------------------*/
/* type */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
}
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  font-weight: 400;
}
table th,
table td {
  vertical-align: top;
  text-align: left;
}

/* リンクの付いたイメージは全て半透明になる */
a:hover img.hover,
span:hover img.hover {
  opacity: 0.7;
  filter: alpha(opacity=70);
}

/* TEL
-------------------------------*/
@media (min-width: 751px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
/* root
---------------------*/
:root {
  --icon-font: "Font Awesome 6 Free";
  --f-10: 0.625rem;
  --f-11: 0.6875rem;
  --f-12: 0.75rem;
  --f-13: 0.8125rem;
  --f-14: 0.875rem;
  --f-15: 0.9375rem;
  --f-16: 1rem;
  --f-18: 1.125rem;
  --f-20: 1.25rem;
  --f-24: 1.5rem;
  --f-26: 1.625rem;
  --f-30: 1.875rem;
  --f-36: 2.25rem;
  --f-40: 2.5rem;
  --f-46: 2.875rem;
  --f-clamp-18: clamp(1rem, 0.912rem + 0.29vw, 1.125rem); /* 最大1160px = 18px 最小480px = 16px */
  --f-clamp-20: clamp(0.875rem, 0.61rem + 0.88vw, 1.25rem); /* 最大1160px = 20px 最小480px = 14px */
  --f-clamp-24: clamp(1.125rem, 0.86rem + 0.88vw, 1.5rem); /* 最大1160px = 24px 最小480px = 18px */
  --f-clamp-26: clamp(1.25rem, 0.985rem + 0.88vw, 1.625rem); /* 最大1160px = 26px 最小480px = 20px */
  --f-clamp-36: clamp(1.25rem, 0.544rem + 2.35vw, 2.25rem); /* 最大1160px = 36px 最小480px = 20px */
  --f-clamp-46: clamp(1.375rem, 0.316rem + 3.53vw, 2.875rem); /* 最大1160px = 26px 最小480px = 22px */
  --breakpoint-xs: 320px;
  --breakpoint-sm: 480px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 820px;
  --breakpoint-xl: 1200px;
  --gray01: #fafafa;
  --gray02: #eee;
  --beige: #fae5e3;
  --pink: #fae5e3;
  --gold: #d8b798;
  --brown: #ae9079;
  --orange: #f60;
  --green01: #243c30;
  --green02: #005731;
  --khaki01: #5c5b59;
  --khaki02: #c2b8af;
  --khaki-bg: #e5e7e4;
  --bg-color-01: rgba(254, 224, 254, 0.7);
  --bg-color-02: rgba(255, 255, 255, 0.5);
  --bg-color-03: rgba(255, 255, 255, 0.7);
  --font-shipporMincho: "Shippori Mincho", sans-serif;
  --font-notoSans: "Noto Sans JP", sans-serif;
  --font-notoSerif: "Noto Serif JP", serif;
}

/* 共通ヘッダー
---------------------------------------- */
header ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: fixed;
  top: 20px;
  right: 15px;
  gap: 2em;
  z-index: 9800;
  padding-left: 2em;
  background-color: rgba(255, 255, 255, 0.5);
}
header li {
  font-family: var(--font-notoSans);
  font-size: var(--f-14);
  font-family: var(--font-shipporMincho);
}
@media only screen and (max-width: 1370px) {
  header ul {
    padding-left: 0;
    background-color: transparent;
    right: 80px;
  }
  header ul :not(li) {
    display: none;
  }

}
header .yoyaku {
  display: block;
}
header .yoyaku a {
  font-size: var(--f-18);
  display: inline-block;
  color: var(--green01);
  text-align: center;
  padding: 0.5em 2em;
  font-family: var(--font-shipporMincho);
  background-color: #fff;
  white-space: nowrap
}
header .logo {
  position: absolute;
  top: 10px;
  left: 10px;
}

/* ハンバーガーメニュー
---------------------------------------- */
.hamburgerBox {
  display: none;
}
@media only screen and (max-width: 1370px) {
  .hamburgerBox {
    display: block;
    width: 40px;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9000;
  }
}
.hamburgerBox .hamburger {
  width: 40px;
  height: 25px;
  position: absolute;
  transition: 0.5s; /* 追記 */
  z-index: 9500;
  top: 0;
  left: 0;
}
.hamburgerBox .hamburger p {
  position: absolute;
  bottom: -1.5em;
  left: 0;
  font-size: var(--f-12);
  line-height: 1em;
  font-family: var(--font-shipporMincho);
}
.hamburgerBox .hamburger span {
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #000;
  transition: 0.5s;
}
.hamburgerBox .hamburger.active p {
  color: #fff;
}
.hamburgerBox .hamburger span:first-of-type {
  /* ハンバーガーメニューの1番目の線 */
  top: 0;
}
.hamburgerBox .hamburger span:nth-of-type(2) {
  /* ハンバーガーメニューの2番目の線 */
  top: 50%;
}
.hamburgerBox .hamburger span:last-of-type {
  /* ハンバーガーメニューの3番目の線 */
  top: 100%;
}

.slide-menu {
  background-color: rgba(0, 0, 0, 0.8);
  position: fixed;
  z-index: 8000;
  top: 0;
  width: 100%;
  left: 0;
  transform: translateX(100%);
  transition: 0.5s; /* 追記 */
  padding: 10vw 5vw;
  height: 100vh;
  color: #333;
  font-weight: var(--font-shipporMincho);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3vw;
}
.slide-menu .menuLogo {
  max-width: 405px;
}
.slide-menu .menuLogo h2 {
  max-width: 200px;
  width: auto;
  margin-bottom: 1em;
  margin-left: auto;
  margin-right: auto;
}
.slide-menu .menuLogo address {
  font-size: var(--f-15);
  line-height: 1.5em;
  color: #fff;
  margin-bottom: 2vw;
}
.slide-menu .menuLogo .botanBox {
  margin-bottom: 2em;
  text-align: center;
}
/* 線が伸びるボタン ___________________ */
.menuLogo .btnlinestretches {
  /*線の基点とするためrelativeを指定*/
  position: relative;
  /*ボタンの形状*/
  color: #fff;
  border: 1px solid #fff;
  padding: 10px 50px;
  display: inline-block;
  text-decoration: none;
  outline: none;
  /*アニメーションの指定*/
  transition: all 0.3s ease-in-out;
  font-size: var(--f-18);
  font-family: var(--font-shipporMincho);
  font-weight: 600;
}
/*hoverした際の背景の形状*/
.menuLogo .btnlinestretches:hover {
  background: #fff;
  border-color: transparent;
  color: var(--green01);
}
/*線の設定*/
.menuLogo .btnlinestretches::before,
.menuLogo .btnlinestretches::after {
  content: "";
  /*絶対配置で線の位置を決める*/
  position: absolute;
  border: solid #fff;
  width: 10px;
  height: 10px;
  /*アニメーションの指定*/
  transition: all 0.3s ease-in-out;
}
/*線の位置と形状*/
.menuLogo .btnlinestretches::before {
  top: -6px;
  left: -6px;
  border-width: 1px 0 0 1px;
}
/*線の位置と形状*/
.menuLogo .btnlinestretches::after {
  bottom: -6px;
  right: -6px;
  border-width: 0 1px 1px 0;
}
/*hoverした際の線の形状*/
.menuLogo .btnlinestretches:hover::before,
.menuLogo .btnlinestretches:hover::after {
  width: calc(100% + 11px);
  height: calc(100% + 11px);
  border-color: #fff;
}

.slide-menu ul {
  width: 240px;
}
.slide-menu li {
  margin-bottom: 2vw;
  border-bottom: 1px solid #fff;
  padding-bottom: 0.7em;
  font-size: var(--f-24);
  font-family: var(--font-shipporMincho);
  font-weight: 400;
  letter-spacing: 0.075em;
}
.slide-menu li a {
  text-decoration: none;
  color: #fff;
}
.slide-menu li a:hover {
  text-decoration: none;
  color: #fff;
  opacity: 0.5;
}
.slide-menu li span {
  display: block;
  font-size: var(--f-14);
  letter-spacing: 0;
  margin-top: 0.3em;
}

.hamburger.active {
  transform: rotateY(360deg);
}
.hamburger.active span:first-of-type {
  top: 50%;
  transform: rotate(45deg);
  background-color: #fff;
}
.hamburger.active span:nth-of-type(2) {
  opacity: 0;
}
.hamburger.active span:last-of-type {
  top: 50%;
  transform: rotate(-45deg);
  background-color: #fff;
}
.slide-menu.active {
  transform: translateX(0);
  overflow: scroll;
}
.slide-menu.active p {
  color: #fff;
}
/* /ハンバーガー ___________________ */

/* 予約モジュールタブ ___________________ */
.tab-wrap {
  display: flex;
  flex-wrap: wrap;
  max-width: 1150px;
  margin: 5vw auto;
  border: solid 1px #000;
}

/* .page-id-16 .tab-wrap {
  display: none;
}
.page-id-16 header {
  margin-bottom: 20px;
} */

.tab-label {
  color: #666;
  background: var(--gray02);
  padding: 0.5em;
  order: -1;
  width: 50%;
  text-align: center;
  border-bottom: 1px solid #000;
  font-size: var(--f-24);
}
.tab-content {
  width: 100%;
  display: none;
}
/* アクティブなタブ */
.tab-switch:checked + .tab-label {
  background: #fff;
  border-right: 1px solid #000;
  border-bottom: 1px solid #fff;
  color: var(--green02);
}
.tab-switch:checked + .tab-label + .tab-content {
  display: block;
}
.tab-switch:checked + .tab-label.tabA {
  border-right: 1px solid #000;
  border-bottom: 1px solid #fff;
}
.tab-label.tabA::before {
  font-family: var(--icon-font);
  content: "\f236";
  font-weight: 900;
  margin-right: 0.5em;
}
.tab-switch:checked + .tab-label.tabB {
  border-left: 1px solid #000;
  border-bottom: 1px solid #fff;
  border-right: none;
}
.tab-label.tabB::before {
  font-family: var(--icon-font);
  content: "\e22d";
  font-weight: 900;
  margin-right: 0.5em;
}
/* ラジオボタン非表示 */
.tab-switch {
  display: none;
}
.tab-wrap .member {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1em;
  width: 100%;
  margin-top: 1vw;
  margin-bottom: 3vw;
  flex-wrap: wrap;
}
.tab-wrap .member li {
  font-size: var(--f-14);
  line-height: 1em;
  white-space: nowrap;
}
.tab-wrap .member li::before {
  font-family: var(--icon-font);
  content: "\f054";
  font-weight: 900;
  margin-right: 0.5em;
}
/* /予約モジュールタブ ___________________ */

/* [宿泊検索モジュール]
-----------------------------------------------*/
.wide-booking-form {
  position: relative;
  margin: 0;
  padding: 3vw;
  color: #fff;
}
.wide-booking-form form {
  max-width: 1145px;
  width: auto;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1vw;
}
.wide-booking-form .booking-form-input-1,
.wide-booking-form .booking-form-input-2,
.wide-booking-form .booking-form-input-3,
.wide-booking-form .booking-form-input-4 {
  border: #e8e8e8 1px solid;
  display: block;
}
.wide-booking-form .booking-form-input-5 {
  border: none;
  display: block;
}
.content-wrapper form label {
  display: none;
  font-size: var(--f-16);
  margin: 0 0 10px;
}
.booking-form .input-wrapper,
.booking-form .select-wrapper,
#page-header .input-wrapper,
.booking-side-wrapper .input-wrapper,
.booking-side-wrapper .select-wrapper,
.home-booking-form .input-wrapper,
.home-booking-form .select-wrapper,
.accommodation-single-booking-form .input-wrapper,
.accommodation-single-booking-form .select-wrapper {
  position: relative;
}
.booking-form .input-wrapper i,
.booking-form .select-wrapper i,
#page-header .input-wrapper i,
.booking-side-wrapper .input-wrapper i,
.booking-side-wrapper .select-wrapper i,
.home-booking-form .input-wrapper i,
.home-booking-form .select-wrapper i,
.accommodation-single-booking-form .input-wrapper i,
.accommodation-single-booking-form .select-wrapper i {
  position: absolute;
  right: 10px;
  top: 12px;
  font-size: var(--f-18);
  color: #666;
  z-index: 0;
  pointer-events: none;
}
.booking-form button i {
  font-size: var(--f-18);
  margin: 0 0 0 6px;
}
.content-wrapper .booking-form input[type="text"] {
  width: calc(100% - 22px);
  padding: 10px;
  margin: 0;
  font-size: var(--f-16);
  font-weight: 500;
  color: #666;
  z-index: 999;
  background: #fff;
  box-sizing: content-box;
  border: none;
  appearance: none;
}
.booking-form button {
  width: 100%;
  margin: 0;
  padding: 11px 20px;
  border: solid 1px #000;
  color: #666;
  background-color: #fff;
  font-size: var(--f-16);
  cursor: pointer;
}
.booking-form select {
  padding: 10px;
  margin: 0;
  font-size: var(--f-12);
  font-weight: 500;
  color: #666;
  background: #fff;
}
form .select-wrapper select {
  border: none;
  padding: 10px;
  font-size: var(--f-16);
  padding: 10px 2em 10px 10px;
}
.datepicker__month-button {
  padding: 2px 0 0 2px;
  width: 18px;
  height: 18px;
  border-radius: 99%;
  background: #fff;
  color: #1c1c1c;
}
.datepicker {
  position: absolute;
  left: 0 !important;
  width: 650px;
  max-width: calc(100% - 60px);
  line-height: 14px;
  border-radius: 0;
  background-color: #fff;
  box-shadow: 0 0 10px 1px rgba(255, 255, 255, 0.2);
  box-sizing: border-box;
  color: #484c55;
  font-size: var(--f-14);
  overflow: hidden;
  z-index: 5001 !important;
}
.datepicker__months:before {
  background: #424242;
  bottom: 0;
  content: "";
  display: block;
  left: 50%;
  position: absolute;
  top: 0;
  width: 1px;
}
.datepicker__month {
  width: calc(50% - 20px);
  border-collapse: collapse;
  text-transform: none;
  font-family: var(--font-notoSans);
}
.datepicker__month--month2 {
  display: table;
  float: right;
}
.datepicker__month-name {
  font-size: 15px;
}
.datepicker__inner,
.datepicker__tooltip {
  background: #1c1c1c;
}
.datepicker__info.datepicker__info--feedback.datepicker__info--help,
#close-check_in_hidden {
  display: none;
}
.datepicker__info,
.datepicker__topbar,
#tooltip-check_in_hidden {
  display: none;
}
.datepicker__topbar {
  margin-bottom: 20px;
  position: relative;
}
.datepicker__month-caption th {
  position: relative;
  margin: 0;
  padding: 10px;
  background-color: #292929;
  border: solid #292929;
  text-transform: none;
  font-weight: 400;
}
.datepicker__week-name {
  width: 37px;
  height: 14px;
  padding: 12px 0;
  background-color: #292929;
  border-left: 1px solid #292929;
  border-top: 1px solid #292929;
  border-right: 1px solid #292929;
  vertical-align: top;
  text-transform: none;
  font-size: var(--f-14);
  font-weight: 400;
}
.datepicker__month-day {
  padding: 11px 7px;
  background: #424242;
  border-right: #1c1c1c 1px solid;
  border-bottom: #1c1c1c 1px solid;
  font-size: var(--f-12);
  transition-duration: 0.2s;
  transition-property: color, background-color, border-color;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.datepicker__month-name,
.datepicker__week-days,
.datepicker__month-day,
.datepicker__month-day--hovering,
.datepicker__close-button,
.datepicker__close-button:hover {
  color: #fff;
}
.datepicker__month-day--valid {
  cursor: pointer;
}
.datepicker__month-day--invalid {
  background: #292929;
}
.datepicker__month-day--invalid {
  color: #7b7b7b;
}
.datepicker__month-day--first-day-selected,
.datepicker__month-day--last-day-selected,
.datepicker__month-day--hovering {
  background-color: #b19f6a;
  color: #fff;
}
.datepicker__month-day--selected {
  background: #b19f6a;
  color: #fff;
}
.datepicker__month-day--selected,
.datepicker__month-day--valid:hover,
.datepicker__month-day--first-day-selected,
.datepicker__month-day--last-day-selected {
  background: #b19f6a;
}
.datepicker__month-day--last-day-selected {
  background: #b19f6a !important;
}
td.datepicker__month-day--tm {
  border-left: 1px solid #8e8e90;
  border-top: 1px solid #8e8e90;
}
@media only screen and (max-width: 700px) {
  .datepicker__month--month1 {
    margin: 0 0 30px;
  }
  .datepicker__month {
    width: 100%;
  }
  .datepicker__months:before {
    display: none;
  }
  .datepicker {
    left: 30px !important;
  }
}

/* 線が伸びるボタン ___________________ */
.btnlinestretches {
  /*線の基点とするためrelativeを指定*/
  position: relative;
  /*ボタンの形状*/
  color: var(--green01);
  border: 1px solid var(--green01);
  padding: 10px 50px;
  display: inline-block;
  text-decoration: none;
  outline: none;
  /*アニメーションの指定*/
  transition: all 0.3s ease-in-out;
  font-size: var(--f-clamp-18);
  font-family: var(--font-shipporMincho);
  font-weight: 600;
}
.bottom30 {
  margin-bottom: 30px;
}
/*hoverした際の背景の形状*/
.btnlinestretches:hover {
  background: var(--green01);
  border-color: transparent;
  color: #fff;
}
/*線の設定*/
.btnlinestretches::before,
.btnlinestretches::after {
  content: "";
  /*絶対配置で線の位置を決める*/
  position: absolute;
  border: solid var(--green01);
  width: 10px;
  height: 10px;
  /*アニメーションの指定*/
  transition: all 0.3s ease-in-out;
}
/*線の位置と形状*/
.btnlinestretches::before {
  top: -6px;
  left: -6px;
  border-width: 1px 0 0 1px;
}
/*線の位置と形状*/
.btnlinestretches::after {
  bottom: -6px;
  right: -6px;
  border-width: 0 1px 1px 0;
}
/*hoverした際の線の形状*/
.btnlinestretches:hover::before,
.btnlinestretches:hover::after {
  width: calc(100% + 11px);
  height: calc(100% + 11px);
  border-color: #666;
}

.welcome .btnlinestretches {
  /*線の基点とするためrelativeを指定*/
  position: relative;
  /*ボタンの形状*/
  color: var(--green01);
  border: 1px solid var(--green01);
  padding: 10px 50px;
  display: inline-block;
  text-decoration: none;
  outline: none;
  /*アニメーションの指定*/
  transition: all 0.3s ease-in-out;
  font-size: var(--f-18);
  font-family: var(--font-shipporMincho);
  font-weight: 600;
  background-color: #fff;
}
/*hoverした際の背景の形状*/
.welcome .btnlinestretches:hover {
  background: var(--green01);
  color: #fff;
  border-color: transparent;
}

/*
RECOMMEND -おすすめプラン-
---------------------------------------*/
.__center {
  text-align: center;
}
.inner {
  max-width: 1240px;
  margin: auto;
  padding: 0 20px;
}
.recommend .h2-ttl {
  margin-bottom: 50px;
  line-height: 36px;
  color: var(--green01);
  font-family: var(--font-shipporMincho);
  font-size: 36px;
  font-weight: 600;
  letter-spacing: 0.075em;
}

.recommend .h2-ttl.en-ttl {
  line-height: 1;
  font-size: clamp(1.25rem, 0.8214rem + 1.9048vw, 2.25rem);
}
.recommend .h2-ttl.en-ttl > .sub-ttl {
  font-size: clamp(1rem, 0.8929rem + 0.4762vw, 1.25rem);
}

.recommend .head-wrap.bg-border .sub-ttl {
  position: relative;
  display: inline-block;
  padding: 0 55px;
}

.recommend .head-wrap.bg-border h2 > .sub-ttl::before,
.recommend .head-wrap.bg-border h2 > .sub-ttl::after {
  content: "";
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 50px;
  height: 1px;
  background: #000;
}

.recommend .head-wrap.bg-border h2 > .sub-ttl::before {
  left: 0;
}

.recommend .head-wrap.bg-border h2 > .sub-ttl::after {
  right: 0;
}
.recommend .head-wrap.bg-border h2 span {
  padding: 0 10px;
}

section.recommend.crown-plan,
section.recommend.annex-plan {
  margin: 0 auto;
  padding: 50px 30px 0;
}
.recommend.crown-plan {
  background: linear-gradient(180deg, #fff 0%, #fff 50%, var(--pink) 50%, var(--pink) 100%);
}
.recommend__list {
  display: flex;
  gap: 3%;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.recommend__list__item {
  width: calc((100% / 3) - 2%);
}
.recommend__list__item figure img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.recommend .h4-ttl {
  line-height: 2;
  min-height: 3.5em;
  margin: 10px 0;
  padding-bottom: 7px;
  border-bottom: 1px solid #000;
  font-family: var(--font-shipporMincho);
  font-size: 15px;
  font-weight: 700;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.plan-btn {
  display: block;
  margin: 0 auto 20px 0;
  color: #000;
  font-family: var(--font-shipporMincho);
  font-size: clamp(0.9375rem, 0.8571rem + 0.3571vw, 1.125rem);
  font-weight: 700;
}
.plan-btn:hover {
  color: #666;
}
.recommend__list .plan-btn::after {
  padding-left: 1em;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}
.recommend__list .plan-btn::after a {
  text-decoration: none;
}
.btnlinestretches-wrap {
  display: block;
  width: 100%;
  padding: 60px 0;
  text-align: center;
}
/*
annex plan
------------------------------------------*/
.recommend.annex-plan {
  background: linear-gradient(180deg, #fff 0%, #fff 50%, var(--khaki-bg) 50%, var(--khaki-bg) 100%);
  margin-bottom: 0;
}

@media screen and (max-width: 767px) {
  .recommend__list__item {
    width: 100%;
    margin-bottom: 50px;
  }
}

/* 2022/06/23 ツアービルダーのウィジェット設置
-----------------------------------------------*/
/**トッププラン検索モジュール
*******************************/
.tab-contentBox .ttl-search {
  color: #000;
  margin: 20px 0;
  width: 100%;
  text-align: center;
  font-size: var(--f-18);
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.search-inner {
  display: flex;
  justify-content: center;
  padding: 0 3vw 1vw;
  flex-wrap: wrap;
}
.tab-contentBox .search-inner .ttl-search span {
  font-size: var(--f-20);
  font-weight: normal;
}
.tab-contentBox .search-inner .search-mod {
  display: flex;
  justify-content: center;
  font-size: var(--f-12);
  color: #000;
  gap: 1vw;
}
.tab-contentBox .sr-checkin {
  font-size: var(--f-20);
  margin-right: 10px;
  text-align: left;
}
.tab-contentBox .sr-mitei,
.tab-contentBox .sr-nights,
.tab-contentBox .sr-guest,
.tab-contentBox .sr-departure,
.tab-contentBox .sr-aircheckin,
.tab-contentBox .sr-airnights,
.tab-contentBox .sr-airpeople {
  margin-right: 5px;
}
.tab-contentBox .sr-smoking {
  display: none;
  margin-left: 5px;
}
.tab-contentBox .sr-smoking select {
  font-size: var(--f-13) !important;
}
.tab-contentBox .sr-checkin label {
  display: inline-flex;
}
.tab-contentBox .sr-checkin label:nth-of-type(4) {
  display: none;
}
.search-inner .search-mod p {
  font-size: var(--f-14);
  line-height: 1.2;
}
.search-mod select,
input {
  font-size: var(--f-16);
  color: #666;
  padding: 5px 15px 5px;
  width: 100%;
  border: 1px solid #e8e8e8;
  background-color: #fff;
}
.search-mod select.daysW,
.search-mod select.peopleW {
  width: 4em;
}
.tab-contentBox .sr-nights,
.tab-contentBox .sr-guest,
.tab-contentBox .sr-room {
  width: 32%;
  flex: 1;
}
.tab-contentBox .sr-nights,
.tab-contentBox .sr-guest,
.tab-contentBox .sr-room {
  width: 32%;
  flex: 1;
}
.tab-contentBox .sr-checkin label,
.tab-contentBox .sr-mitei label,
.tab-contentBox .sr-nights label,
.tab-contentBox .sr-guest label,
.tab-contentBox .sr-room label,
.tab-contentBox .sr-smoking label {
  position: relative;
  height: 45px;
}
.tab-contentBox .sr-checkin p,
.tab-contentBox .sr-nights p,
.tab-contentBox .sr-guest p,
.tab-contentBox .sr-room p,
.tab-contentBox .sr-smoking p,
.tab-contentBox .sr-departure p,
.tab-contentBox .sr-aircheckin p,
.tab-contentBox .sr-airnights p,
.tab-contentBox .sr-airpeople p {
  margin-bottom: 5px;
}
.sr-aircheckin {
  width: 35%;
}
.tab-contentBox .sr-checkin label:after,
.tab-contentBox .sr-nights label:after,
.tab-contentBox .sr-guest label:after,
.tab-contentBox .sr-room label:after,
.tab-contentBox .sr-smoking label:after {
  display: block;
  content: " ";
  position: absolute;
  top: 50%;
  right: 5px;
  width: 8px;
  height: 8px;
  background: url(./img/common/arrow-d.png) 0 0 no-repeat;
  background-size: 8px;
  pointer-events: none;
  transform: translate(0, -50%);
}
.tab-contentBox .sr-checkin label:nth-of-type(1) {
  width: 100px;
}
.tab-contentBox .sr-checkin label:nth-of-type(2) {
  width: 60px;
}
.tab-contentBox .sr-checkin label:nth-of-type(3) {
  width: 60px;
}
.tab-contentBox .sr-checkin label:nth-of-type(4):after {
  background: none;
}
.button-wrap {
  display: flex;
  justify-content: inherit;
  margin-left: 10px;
}
.btn01.search {
  margin: 0 1vw 0 0;
}
.btn01.search input {
  font-size: var(--f-18);
  background: #f0a537;
  color: #fff;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  border: none;
  border: 1px #f0a537 solid;
}
.btn01.search input.modbtn-normal.show {
  display: block;
}
.btn01.search input.modbtn-normal {
  display: none;
}
.btn01.search input.modbtn-modal {
  display: none;
}
.btn01.search-other a {
  background: #f0a537;
  color: #fff;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  font-size: var(--f-18) !important;
  padding: 5px 15px 5px;
  border: 1px #f0a537 solid;
}
.btn01.search input:hover,
.btn01.search-other a:hover {
  background: #fff;
  color: #f0a537;
  border: 1px #f0a537 solid;
}
.utility {
  max-width: 890px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #666;
  padding: 0 0 2vw;
}
.utility a {
  color: #666;
  font-size: var(--f-14);
  white-space: nowrap;
  text-decoration: underline;
}
.utility a:hover {
  text-decoration: none;
}
.utility ul {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 5px;
  flex-wrap: wrap;
}
.utility ul li {
  margin-right: 20px;
  padding-left: 12px;
  list-style: none;
}
.utility ul li::before {
  font-family: var(--icon-font);
  font-weight: 900;
  content: "\f105";
  margin-right: 0.5em;
}
.utility ul li a:hover {
  text-decoration: underline;
}
.utility .util-phone p {
  font-size: var(--f-30);
  line-height: 0.8;
  white-space: nowrap;
}
.utility .util-phone p span {
  font-size: var(--f-14);
  margin-right: 6px;
}

/* TOPへ戻る
---------------------------------------- */
#topbutton {
  position: fixed;
  bottom: 12vh;
  right: 5vw;
  z-index: 10000;
  transition: all 0.3s ease-in-out;
  opacity: 0;
}
#topbutton a {
  display: block;
  width: 55px;
  height: 55px;
  transition: all 0.3s ease-in-out;
}
#topbutton a::after {
  font-family: var(--icon-font);
  content: "\f35b";
  font-weight: 900;
  margin-right: 0.5em;
  font-size: var(--f-46);
  color: #000;
  opacity: 0.8;
}

/* Blogナビゲーション
---------------------------------------- */
.pagenation {
  margin-top: 2vw;
  margin-bottom: 3vw;
  font-size: var(--f-16);
  border-top: 1px solid var(--green01);
  padding-top: 1vw;
}
.pagenation ul {
  display: flex;
  justify-content: center;
}
.pagenation li {
  margin-right: 0.5em;
  width: 2em;
  display: block;
  text-align: center;
}
.pagenation li:last-child {
  margin-right: 0px;
}
.pagenation li.prev,
.pagenation li.next {
  min-width: 3em;
}
.postNavi {
  margin-top: 2vw;
  margin-bottom: 3vw;
  font-size: var(--f-16);
  border-top: 1px solid var(--green01);
  padding-top: 1vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pagenation li.prev::before,
.postNavi .prev::before {
  font-family: var(--icon-font);
  content: "\f359";
  font-weight: 900;
  margin-right: 0.5em;
}
.pagenation li.next::after,
.postNavi .next::after {
  font-family: var(--icon-font);
  content: "\f35a";
  font-weight: 900;
  margin-left: 0.5em;
}

/* 404
---------------------------------------- */
.error404 header {
  width: 100%;
  height: 52vh;
  background: url("../images/crown/blog/blog-main.webp") no-repeat top left transparent;
  background-size: cover;
  position: relative;
}
.error404 h1 {
  position: absolute;
  top: 20vw;
  right: 14vw;
  line-height: 2em;
  writing-mode: horizontal-tb;
  color: #fff;
  font-family: var(--font-shipporMincho);
  font-weight: 700;
  font-size: var(--f-46);
}

/* 404 main
---------------------------------------- */
.error404 main {
  max-width: 1150px;
  width: auto;
  margin: 0 auto;
  padding: 3vw 10vw;
}
.error404 main p {
  text-align: center;
  font-size: var(--f-18);
  line-height: 2em;
}
@media only screen and (max-width: 1160px) {
  .tab-wrap {
    margin-left: 1vw;
    margin-right: 1vw;
  }
}

@media only screen and (max-width: 1050px) {
  .tab-label {
    font-size: var(--f-20);
  }
  .content-wrapper .booking-form input[type="text"],
  form .select-wrapper select,
  .booking-form button {
    font-size: var(--f-14);
  }
  .search-inner {
    justify-content: center;
  }
  .search-inner .search-mod {
    width: 100%;
  }
  .tab-contentBox .sr-checkin {
    width: 300px;
  }
  .button-wrap {
    flex: initial;
    width: 100%;
    margin: 20px auto 0;
  }
  .utility {
    max-width: 607px;
    display: block;
    width: 100%;
    text-align: center;
  }
  .utility .util-phone p {
    justify-content: center;
  }
  .util-phone {
    margin: 20px 0 0;
  }
  .wide-booking-form form {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media only screen and (max-width: 980px) {
  .search-cont {
    display: block;
  }
  form .booking-form-input-3 {
    float: none;
    clear: both;
  }
  .tab-wrap .member {
    margin-top: 3vw;
    margin-bottom: 4vw;
  }
  .utility .util-phone p {
    line-height: 1.5;
  }
  .utility .util-phone p span {
    display: block;
  }
}
@media only screen and (max-width: 820px) {
  header h1 {
    right: auto;
    top: auto;
    left: 10px;
    bottom: 10px;
    line-height: 1.8em;
    writing-mode: horizontal-tb;
  }
  header .yoyaku a {
    font-size: var(--f-14);
  }
  .menuLogo .btnlinestretches {
    font-size: var(--f-14);
  }
}
@media only screen and (max-width: 800px) {
  .slide-menu {
    flex-wrap: wrap;
  }
  .menuLogo {
    order: 3;
    text-align: center;
  }
  .slide-menu .menuLogo h2 {
    margin-left: auto;
    margin-right: auto;
  }
}
@media only screen and (max-width: 560px) {
  .tab-label {
    font-size: var(--f-16);
  }
  header h1 {
    right: 0;
    line-height: 1.6em;
  }
  header h1 span {
    padding: 0.3em 0.4em;
  }
  .menuLogo {
    margin-top: 5vh;
  }
  .tab-wrap {
    margin: 10vw 2vw;
  }
  .slide-menu ul {
    width: 80vw;
  }
  .slide-menu li {
    font-size: var(--f-18);
  }
  .slide-menu {
    padding-top: 20vw;
    align-items: flex-start;
    gap: 0;
  }
  .slide-menu li span {
    display: inline;
    font-size: var(--f-12);
    margin-left: 1em;
  }
  .slide-menu li a {
    text-decoration: none;
  }
  .wide-booking-form .booking-form-input-1,
  .wide-booking-form .booking-form-input-2,
  .wide-booking-form .booking-form-input-3,
  .wide-booking-form .booking-form-input-4 {
    width: 49%;
  }
  .wide-booking-form .booking-form-input-5 {
    margin-top: 10px;
  }
  .slide-menu .menuLogo address {
    font-size: var(--f-14);
    margin-bottom: 7vw;
  }
}
@media only screen and (max-width: 480px) {
  header .logo {
    width: 25vw;
  }
  header h1 {
    line-height: 1.3em;
    top: auto;
    bottom: 0.2em;
  }
  .hamburgerBox {
    top: 10px;
    right: 10px;
  }
  header ul {
    top: 10px;
    right: 65px;
  }
  .error404 header {
    height: 33vh;
    background: url("../images/crown/blog/blog-main.webp") no-repeat top left transparent;
  }
  .slide-menu ul:nth-child(3) li:nth-child(2) span {
    display: block;
    margin-left: 0;
  }
}

/* フッターSNSアイコン */
footer .snsicon {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: var(--f-26);
  line-height: 2em;
  margin-bottom: 1em;
  gap: 1em;
  color: #fff;
}

footer .snsicon a {
  color: #fff;
}

/* トビラページーブログ_カテゴリー */
.post-categories{
  font-size: 11px;
  display: flex;
  justify-content: flex-start;
}
.post-categories li{
  padding: 0 1%;
}
.post-categories li a:hover{
  text-decoration: underline;
}

@media(min-width: 768px){
  a[href^="tel:"]{
    color: #fff;
  }
}