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, 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, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video, input, button, textarea, select {
  font: inherit;
  font-size: 1em;
  margin: 0;
  padding: 0;
  vertical-align: bottom;
  border: 0;
  line-height: inherit;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, main {
  display: block;
}
ul, ol {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
  content: none;
}
table {
  border-spacing: 0;
  border-collapse: collapse;
}
label {
  display: inline-block;
}
label, button, input[type="button"], input[type="submit"], select {
  cursor: pointer;
}
button, input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
}
select::-ms-expand {
  display: none;
}
textarea {
  resize: vertical;
}
/* 共通設定 & ユーティリティー
---------------------------------------- */
html {
  -webkit-text-size-adjust: 100%;
  font-size: 62.5%;
}
body {
  font-family: "Wittgenstein", serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1;
  background: #fff;
  width: 100%;
  word-break: normal;
  color: #333;
}
.noscript {
  background: #fff;
  padding: 16px 0;
}
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
img {
  max-width: 100%;
  width: 100%;
  height: auto;
}
.screen-reader-text {
  position: absolute;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  width: 1px;
  height: 1px;
}
.screen-reader-text:focus {
  top: 16px;
  left: 16px;
  position: fixed;
  max-width: 80%;
  white-space: nowrap;
  background: #fff;
  height: auto;
  width: auto;
  overflow: auto;
  border: 2px solid #33658a;
  clip: initial;
  text-decoration: none;
  padding: 0.5em;
  color: #333;
  font-size: 1rem;
  outline: none;
}
a:focus-visible, button:focus-visible, input:focus-visible {
  outline: 2px solid #33658a;
}
.mobile-none {
  display: none;
}
.pc-only {
  display: none;
}
.right-txt {
  text-align: right;
}
.li_indent {
  padding-left: 1em;
  text-indent: -1em;
}
/*headerロゴ*/
.logo-area_link {
  display: inline-block;
  -webkit-transition: background 0.2s ease-in-out, color 0.2s ease-in-out, opacity 0.2s ease-in-out, border 0.2s ease-in-out, -webkit-box-shadow 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  transition: background 0.2s ease-in-out, color 0.2s ease-in-out, opacity 0.2s ease-in-out, border 0.2s ease-in-out, -webkit-box-shadow 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  -o-transition: background 0.2s ease-in-out, color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, opacity 0.2s ease-in-out, transform 0.2s ease-in-out, border 0.2s ease-in-out;
  transition: background 0.2s ease-in-out, color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, opacity 0.2s ease-in-out, transform 0.2s ease-in-out, border 0.2s ease-in-out;
  transition: background 0.2s ease-in-out, color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, opacity 0.2s ease-in-out, transform 0.2s ease-in-out, border 0.2s ease-in-out, -webkit-box-shadow 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
}
.logo-area_link:hover, .logo-area_link:focus {
  opacity: 0.7;
}
.logo-area_link:focus {
  outline: 2px solid #33658a;
}
.logo-area_logo {
  display: block;
}
/*header*/
.header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 89px;
  background-color: #FFF;
  z-index: 9999;
}
.header_area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: solid 1px #EDECEC;
}
.header_inner {
  position: relative;
  padding: 10px 12px;
}
.header_logo {
  width: 160px;
}
/* pc版言語切り替えボタン */
.lang {
  display: flex;
  margin-left: 20px;
  font-family: "Ubuntu", sans-serif;
  font-weight: 500;
  font-size: 1.8rem;
}
.lang li {
  color: #000;
}
.lang li a {
  text-decoration: none;
  color: #803044;
}
.lang li span {
  padding-right: 8px;
  padding-left: 8px;
}
.lang li:hover, .lang li:focus {
  opacity: 0.7;
}
/*header　ナビ*/
.nav {
  position: fixed;
  right: -70%; /* 右から出てくる */
  top: 0;
  width: 70%; /* スマホに収まるサイズ */
  height: 100vh;
  padding-top: 68px;
  background-color: #fff;
  transition: all .6s;
  z-index: 200;
  overflow-y: auto; /* メニューが多くなったらスクロールできるように */
}
.nav_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.nav_item {
  text-align: center;
  padding: 0 20px;
}
.nav_item a {
  font-size: 1.5rem;
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid #eee;
  text-decoration: none;
  -webkit-transition: background 0.2s ease-in-out, color 0.2s ease-in-out, opacity 0.2s ease-in-out, border 0.2s ease-in-out, -webkit-box-shadow 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  transition: background 0.2s ease-in-out, color 0.2s ease-in-out, opacity 0.2s ease-in-out, border 0.2s ease-in-out, -webkit-box-shadow 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  -o-transition: background 0.2s ease-in-out, color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, opacity 0.2s ease-in-out, transform 0.2s ease-in-out, border 0.2s ease-in-out;
  transition: background 0.2s ease-in-out, color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, opacity 0.2s ease-in-out, transform 0.2s ease-in-out, border 0.2s ease-in-out;
  transition: background 0.2s ease-in-out, color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, opacity 0.2s ease-in-out, transform 0.2s ease-in-out, border 0.2s ease-in-out, -webkit-box-shadow 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  color: inherit;
}
.nav_item a:hover, .nav_item a:focus {
  opacity: 0.7;
}
/*ボタン*/
.plan_btn {
  width: 100%;
  background-color: #0A412F;
  text-align: center;
}
a.plan_btn, a.dayplan_btn {
  color: #FFFFFF;
}
.dayplan_btn {
  width: 100%;
  background-color: #064663;
  text-align: center;
}
.btn-center {
  text-align: center;
  border-radius: 3px;
}
.btn-left {
  text-align: left;
  border-radius: 3px;
}
/*空室・日帰りエリア*/
.vacant_btn {
  font-size: 1.5rem;
  width: 100%;
  margin-bottom: 20px;
  background-color: #232A53;
  -webkit-transition: background 0.2s ease-in-out, color 0.2s ease-in-out, opacity 0.2s ease-in-out, border 0.2s ease-in-out, -webkit-box-shadow 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  transition: background 0.2s ease-in-out, color 0.2s ease-in-out, opacity 0.2s ease-in-out, border 0.2s ease-in-out, -webkit-box-shadow 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  -o-transition: background 0.2s ease-in-out, color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, opacity 0.2s ease-in-out, transform 0.2s ease-in-out, border 0.2s ease-in-out;
  transition: background 0.2s ease-in-out, color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, opacity 0.2s ease-in-out, transform 0.2s ease-in-out, border 0.2s ease-in-out;
  transition: background 0.2s ease-in-out, color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, opacity 0.2s ease-in-out, transform 0.2s ease-in-out, border 0.2s ease-in-out, -webkit-box-shadow 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  color: inherit;
}
.vacant_btn a {
  position: relative;
  padding: 20px;
  display: block;
  color: #FFFFFF;
  text-decoration: none;
}
.day_btn {
  font-size: 1.5rem;
  width: 100%;
  background-color: #0A412F;
  -webkit-transition: background 0.2s ease-in-out, color 0.2s ease-in-out, opacity 0.2s ease-in-out, border 0.2s ease-in-out, -webkit-box-shadow 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  transition: background 0.2s ease-in-out, color 0.2s ease-in-out, opacity 0.2s ease-in-out, border 0.2s ease-in-out, -webkit-box-shadow 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  -o-transition: background 0.2s ease-in-out, color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, opacity 0.2s ease-in-out, transform 0.2s ease-in-out, border 0.2s ease-in-out;
  transition: background 0.2s ease-in-out, color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, opacity 0.2s ease-in-out, transform 0.2s ease-in-out, border 0.2s ease-in-out;
  transition: background 0.2s ease-in-out, color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, opacity 0.2s ease-in-out, transform 0.2s ease-in-out, border 0.2s ease-in-out, -webkit-box-shadow 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  color: inherit;
}
.day_btn a {
  position: relative;
  padding: 20px;
  display: block;
  text-decoration: none;
  color: #FFFFFF;
}
.vacant_btn:hover, .vacant_btn:focus, .day_btn:hover, .day_btn:focus {
  opacity: 0.9;
}
/*ハンバーガーボタン*/
.hamburger {
  position: absolute;
  right: 15px;
  top: 8px;
  width: 40px; /* クリックしやすい幅 */
  height: 40px; /* クリックしやすい高さ */
  cursor: pointer;
  z-index: 300;
}
.hamburger_border {
  position: absolute;
  left: 11px;
  width: 18px;
  height: 2px;
  background-color: #333;
  transition: all .6s;
}
.hamburger_border_top {
  top: 14px;
}
.hamburger_border_center {
  top: 20px;
}
.hamburger_border_bottom {
  top: 26px;
}
/* ナビOPEN*/
.black_bg {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 100;
  background-color: #333;
  opacity: 0;
  visibility: hidden;
  transition: all .6s;
  cursor: pointer;
}
.nav-open .nav {
  right: 0;
}
.nav-open .black_bg {
  opacity: .8;
  visibility: visible;
}
.nav-open .hamburger_border_top {
  transform: rotate(45deg);
  top: 20px;
}
.nav-open .hamburger_border_center {
  width: 0;
  left: 50%;
}
.nav-open .hamburger_border_bottom {
  transform: rotate(-45deg);
  top: 20px;
}
/* レイアウト関連
---------------------------------------- */
.layout {
  max-width: 1104px;
  width: 95%;
  margin-left: auto;
  margin-right: auto;
}
.short_layout {
  max-width: 900px;
  width: 95%;
  margin-left: auto;
  margin-right: auto;
}
.container {
  width: 94%;
  margin: 0 auto;
}
.content:not(:first-child) {
  margin-top: 40px;
}
/*カラム*/
.column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.column-item {
  width: 100%;
  margin-top: 30px;
}
.column-item .caption {
  margin-top: 10px;
}
.inn_img {
  border-radius: 3px;
}
/* header固定余白*/
.contents {
  background-color: #FFF;
  border-top: solid 1px #EDECEC;
  padding-top: 40px;
}
.top {
  padding-top: 90px;
}
/* パンくずリスト
---------------------------------------- */
.breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  font-size: 1.3rem;
  font-family: "Wittgenstein", serif;
  list-style: none;
  margin-top: 100px;
  margin-bottom: 10px;
}
.breadcrumb__item:not(:last-child):after {
  content: "/";
  margin: 0 0.25em;
}
.breadcrumb__item:last-child {
  cursor: text;
}
.breadcrumb__item:last-child .breadcrumb__link {
  pointer-events: none;
}
.breadcrumb__link {
  color: #111;
  text-decoration: none;
  -webkit-transition: background 0.2s ease-in-out, color 0.2s ease-in-out, opacity 0.2s ease-in-out, border 0.2s ease-in-out, -webkit-box-shadow 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  transition: background 0.2s ease-in-out, color 0.2s ease-in-out, opacity 0.2s ease-in-out, border 0.2s ease-in-out, -webkit-box-shadow 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  -o-transition: background 0.2s ease-in-out, color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, opacity 0.2s ease-in-out, transform 0.2s ease-in-out, border 0.2s ease-in-out;
  transition: background 0.2s ease-in-out, color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, opacity 0.2s ease-in-out, transform 0.2s ease-in-out, border 0.2s ease-in-out;
  transition: background 0.2s ease-in-out, color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, opacity 0.2s ease-in-out, transform 0.2s ease-in-out, border 0.2s ease-in-out, -webkit-box-shadow 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
}
.breadcrumb__link:hover, .breadcrumb__link:focus {
  opacity: 0.7;
}
/*footerエリア*/
.footer {
  background-color: #1D2226;
  color: #FFF;
  padding-top: 40px;
}
.footer a {
  text-decoration: none;
  color: #FFF;
}
.footer_subnav {
  width: 100%;
}
.footer_subnav_list {
  width: 100%;
}
.footer_subnav_item {
  margin-bottom: 20px;
  text-align: center;
  font-size: 1.4rem;
  -webkit-transition: background 0.2s ease-in-out, color 0.2s ease-in-out, opacity 0.2s ease-in-out, border 0.2s ease-in-out, -webkit-box-shadow 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  transition: background 0.2s ease-in-out, color 0.2s ease-in-out, opacity 0.2s ease-in-out, border 0.2s ease-in-out, -webkit-box-shadow 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  -o-transition: background 0.2s ease-in-out, color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, opacity 0.2s ease-in-out, transform 0.2s ease-in-out, border 0.2s ease-in-out;
  transition: background 0.2s ease-in-out, color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, opacity 0.2s ease-in-out, transform 0.2s ease-in-out, border 0.2s ease-in-out;
  transition: background 0.2s ease-in-out, color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, opacity 0.2s ease-in-out, transform 0.2s ease-in-out, border 0.2s ease-in-out, -webkit-box-shadow 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
}
.footer_subnav_item:hover, .footer_subnav_item:focus, .footer_logo:hover, .footer_logo:focus, .sns_list_item:hover, .sns_list_item:focus, .pamph:hover, .pamph:focus {
  opacity: 0.7;
}
.footer_logo {
  width: 213px;
  margin-bottom: 15px;
  -webkit-transition: background 0.2s ease-in-out, color 0.2s ease-in-out, opacity 0.2s ease-in-out, border 0.2s ease-in-out, -webkit-box-shadow 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  transition: background 0.2s ease-in-out, color 0.2s ease-in-out, opacity 0.2s ease-in-out, border 0.2s ease-in-out, -webkit-box-shadow 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  -o-transition: background 0.2s ease-in-out, color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, opacity 0.2s ease-in-out, transform 0.2s ease-in-out, border 0.2s ease-in-out;
  transition: background 0.2s ease-in-out, color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, opacity 0.2s ease-in-out, transform 0.2s ease-in-out, border 0.2s ease-in-out;
  transition: background 0.2s ease-in-out, color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, opacity 0.2s ease-in-out, transform 0.2s ease-in-out, border 0.2s ease-in-out, -webkit-box-shadow 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
}
.footer_sub_list {
  margin: 0 auto;
}
.f-phone {
  padding-top: 10px;
  font-size: 2rem;
}
.f-phone span {
  font-size: 1.6rem;
}
.pamph {
  display: block;
  padding: 10px 0;
  background-color: #802D2E;
  color: #FFF;
  text-align: center;
  width: 160px;
  margin: 0 0 30px;
  -webkit-transition: background 0.2s ease-in-out, color 0.2s ease-in-out, opacity 0.2s ease-in-out, border 0.2s ease-in-out, -webkit-box-shadow 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  transition: background 0.2s ease-in-out, color 0.2s ease-in-out, opacity 0.2s ease-in-out, border 0.2s ease-in-out, -webkit-box-shadow 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  -o-transition: background 0.2s ease-in-out, color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, opacity 0.2s ease-in-out, transform 0.2s ease-in-out, border 0.2s ease-in-out;
  transition: background 0.2s ease-in-out, color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, opacity 0.2s ease-in-out, transform 0.2s ease-in-out, border 0.2s ease-in-out;
  transition: background 0.2s ease-in-out, color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, opacity 0.2s ease-in-out, transform 0.2s ease-in-out, border 0.2s ease-in-out, -webkit-box-shadow 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
}
.sns_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 30px;
}
.sns_list_item {
  width: 30px;
  margin-right: 20px;
  -webkit-transition: background 0.2s ease-in-out, color 0.2s ease-in-out, opacity 0.2s ease-in-out, border 0.2s ease-in-out, -webkit-box-shadow 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  transition: background 0.2s ease-in-out, color 0.2s ease-in-out, opacity 0.2s ease-in-out, border 0.2s ease-in-out, -webkit-box-shadow 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  -o-transition: background 0.2s ease-in-out, color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, opacity 0.2s ease-in-out, transform 0.2s ease-in-out, border 0.2s ease-in-out;
  transition: background 0.2s ease-in-out, color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, opacity 0.2s ease-in-out, transform 0.2s ease-in-out, border 0.2s ease-in-out;
  transition: background 0.2s ease-in-out, color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, opacity 0.2s ease-in-out, transform 0.2s ease-in-out, border 0.2s ease-in-out, -webkit-box-shadow 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
}
.sns_list_item:last-child {
  margin-right: 0;
}
.footer_info {
  text-align: center;
  margin: 0 auto;
}
.footer_address {
  font-size: 1.4rem;
  margin-bottom: 30px;
}
.copyright {
  font-size: 1.2rem;
  margin-bottom: 60px;
}
.footer_sp_nav {
  border-top: 1px solid #2F2F2F;
  background-color: #161616;
  width: 100%;
  bottom: 0;
  left: 0;
  position: fixed;
  z-index: 9999;
}
.sp_nav_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}
.sp_nav_item {
  font-size: 1.4rem;
  width: 33.333%;
  border-right: 1px solid #2F2F2F;
  text-align: center;
}
.sp_nav_item:last-child {
  border-right: none;
}
.sp_nav_item a {
  padding: 16px 0;
  display: block;
  -webkit-transition: background 0.2s ease-in-out, color 0.2s ease-in-out, opacity 0.2s ease-in-out, border 0.2s ease-in-out, -webkit-box-shadow 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  transition: background 0.2s ease-in-out, color 0.2s ease-in-out, opacity 0.2s ease-in-out, border 0.2s ease-in-out, -webkit-box-shadow 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  -o-transition: background 0.2s ease-in-out, color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, opacity 0.2s ease-in-out, transform 0.2s ease-in-out, border 0.2s ease-in-out;
  transition: background 0.2s ease-in-out, color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, opacity 0.2s ease-in-out, transform 0.2s ease-in-out, border 0.2s ease-in-out;
  transition: background 0.2s ease-in-out, color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, opacity 0.2s ease-in-out, transform 0.2s ease-in-out, border 0.2s ease-in-out, -webkit-box-shadow 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
}
.sp_nav_item a:hover, .sp_nav_itema a:focus {
  opacity: 0.7;
}
.sp_nav_item .material-icons {
  right: inherit;
  font-size: 1.4rem;
  position: absolute;
  top: 36%;
  padding-left: 2px;
}
.sp-only {
  display: inline-block;
}
/*othersエリア*/
.others_area {
  background-color: #E8E8E8;
  padding: 30px 0;
}
.others_item {
  width: 100%;
  border-top: solid 1px #ccc;
  padding: 20px 20px 0;
}
.others_item:last-child {
  border-bottom: solid 1px #ccc;
}
.others_btn {
  position: relative;
  text-decoration: none;
  display: inline-block;
  padding: 20px;
  background-color: #5F5F5F;
  width: 100%;
  text-align: center;
  color: #F5EDC9;
  border-radius: 3px;
  margin-bottom: 20px;
  margin-top: 15px;
}
.others_btn:hover, .others_btn:focus {
  opacity: 0.7;
}
.material-icons {
  font-size: 1.5rem;
  position: absolute;
  font-family: 'Material Icons';
  letter-spacing: normal;
  text-transform: none;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -moz-font-feature-settings: 'liga';
  -moz-osx-font-smoothing: grayscale;
  display: inline-flex;
  top: 36%;
  right: 10px;
}
/*タイトル*/
.page_tit {
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.8;
  background-repeat: no-repeat;
  background-position: center top;
  margin-bottom: 30px;
  letter-spacing: 0.1rem;
}
.page_tit span {
  display: block;
  font-size: 1.6rem;
  margin-top: 10px;
}
.page_tit_txt {
  line-height: 1.8;
  letter-spacing: 0.1rem;
}
.main_tit {
  font-size: 2.4rem;
  line-height: 1.6;
  margin-bottom: 20px;
  text-align: center;
}
.mini_tit {
  font-weight: 600;
  font-size: 1.8rem;
  margin-bottom: 20px;
}
.brown_bg {
  background-color: #250909;
  background-image: url(../img/common/dark-brown.jpg);
}
/*top*/
/*heroエリア*/
.hero_area {
  margin-left: 3vw;
  margin-right: 3vw;
}
@-webkit-keyframes zoomUp {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
}
@keyframes zoomUp { /* 1.15倍させる指定 */
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
}
.hero .swiper-slide {
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.hero .swiper-slide-active .slide-img, .hero .swiper-slide-duplicate-active .slide-img, .hero .swiper-slide-prev .slide-img { /* 12秒かけて拡大させる */
  -webkit-animation: zoomUp 25s linear 0s;
  animation: zoomUp 25s linear 0s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
/*intro*/
.top_intro .main_tit {
  font-size: 2rem;
}
.top_intro .page_tit_txt, .dish .page_tit_txt {
  font-size: 1.6rem;
  line-height: 2;
  margin-bottom: 25px;
}
.top_intro .column {
  justify-content: center;
  margin-bottom: 40px;
}
.top_intro_item {
  width: 49.6%;
  margin-right: 0.4%
}
.top_intro_item:last-child {
  margin-right: 0;
}
/* モーダルCSS */
.modal_list {
  text-align: center;
  margin-bottom: 40px;
}
.modal_list:last-child {
  margin-bottom: 0;
}
.modal_img {
  width: 80%;
}
.modal_item {
  margin-top: 15px;
  font-size: 1.5rem;
}
.btn-wrap {
  text-align: center;
}
.modalbtn {
  display: inline-block;
  width: 80%;
  min-width: 260px;
  position: relative;
  text-decoration: none;
  padding: 16px 10px;
  text-align: center;
  font-size: 1.5rem;
  color: inherit;
  background: #ccc;
  vertical-align: middle;
  transition: background .3s;
}
.modalbtn:hover {
  background: #ddd;
}
.modal {
  position: fixed;
  display: flex;
  align-items: center;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  border: none;
  opacity: 0;
  z-index: -1;
}
.modal-cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
.modal-inner {
  width: 75vw;
  max-width: 800px;
  max-height: 80vh;
  margin: auto;
  padding: 30px 15px 0;
  background: #fff;
  overflow-y: auto;
  z-index: 1;
}
.modal.is-open {
  animation: modal_open 0.5s ease forwards;
}
.modal.is-open .modal-inner {
  animation: modal_inner_open 0.5s ease forwards;
}
.modal.is-close {
  animation: modal_close 0.5s ease forwards;
}
.modal.is-close .modal-inner {
  animation: modal_inner_close 0.5s ease forwards;
}
@keyframes modal_open {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    z-index: 10000;
  }
}
@keyframes modal_inner_open {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes modal_close {
  0% {
    z-index: 10000;
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes modal_inner_close {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    transform: translateY(-20px);
    opacity: 0;
  }
}
/*topコンテンツエリア*/
.top_contents_item {
  width: 100%;
  margin-bottom: 1px;
}
.top_contents_item a {
  text-decoration: none;
}
.top_tit {
  font-size: 1.8rem;
  color: #FFF;
  padding: 15px 30px;
  border: 1px solid #fff;
}
.top_list_room {
  display: flex;
  justify-content: center;
  align-items: center;
  /* オーバーレイの高さを指定 */
  height: 50vh;
  background: linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, .6)), url(../img/top/top_room_02.jpg);
  /* 画像の位置やサイズの調整 */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.top_list_room:hover, .top_list_room:focus {
  background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/top/top_room_02.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.top_list_dish {
  display: flex;
  justify-content: center;
  align-items: center;
  /* オーバーレイの高さを指定 */
  height: 50vh;
  background: linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, .6)), url("../img/top/top_dish.jpg");
  /* 画像の位置やサイズの調整 */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.top_list_dish:hover, .top_list_dish:focus {
  background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url("../img/top/top_dish.jpg");
  /* 画像の位置やサイズの調整 */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.top_list_spa {
  display: flex;
  justify-content: center;
  align-items: center;
  /* オーバーレイの高さを指定 */
  height: 50vh;
  background: linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, .6)), url("../img/top/top_spa.jpg");
  /* 画像の位置やサイズの調整 */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.top_list_spa:hover, .top_list_spa:focus {
  background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url("../img/top/top_spa.jpg");
  /* 画像の位置やサイズの調整 */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
/*ニュースエリア*/
.news_area {
  width: 100%;
  margin-bottom: 20px;
}
.news_area a {
  color: inherit;
  text-decoration: none;
}
.news-list_date {
  font-size: 1.4rem;
  margin-bottom: 10px;
}
.news-list_content {
  font-size: 1.5rem;
  line-height: 1.8;
  position: relative;
}
.news-list_content .material-icons {
  position: absolute;
  right: inherit;
  top: 18%;
  padding-left: 4px;
}
.newstit {
  margin-bottom: 10px;
  font-size: 1.8rem;
  color: #870C0D;
}
.news-list_item {
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px dashed #CCC;
}
.news-list_item .insta {
  width: 50px;
  margin-top: 15px;
}
.figcap {
  font-size: 1.5rem;
  text-align: right;
  padding-top: 10px;
}
.inf {
  padding: 12px;
  border: 1px solid #CCC;
}
.inf .mini_tit {
  font-size: 1.6rem;
  margin-bottom: 12px;
  font-weight: 700;
}
.inf p {
  font-size: 1.5rem;
  line-height: 1.5;
}
.fb_area {
  width: 98%;
  max-width: 500px;
}
.fb_iframe_widget_fluid {
  display: inline-block !important;
}
.space10 {
  margin-bottom: 10px;
}
.space15 {
  margin-bottom: 15px;
}
.space20 {
  margin-bottom: 20px;
}
.space40 {
  margin-bottom: 40px;
}
/*ルームプラン*/
.room_plan_item {
  width: 49%;
  margin: 0 2% 20px 0;
  -webkit-transition: background 0.2s ease-in-out, color 0.2s ease-in-out, opacity 0.2s ease-in-out, border 0.2s ease-in-out, -webkit-box-shadow 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  transition: background 0.2s ease-in-out, color 0.2s ease-in-out, opacity 0.2s ease-in-out, border 0.2s ease-in-out, -webkit-box-shadow 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  -o-transition: background 0.2s ease-in-out, color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, opacity 0.2s ease-in-out, transform 0.2s ease-in-out, border 0.2s ease-in-out;
  transition: background 0.2s ease-in-out, color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, opacity 0.2s ease-in-out, transform 0.2s ease-in-out, border 0.2s ease-in-out;
  transition: background 0.2s ease-in-out, color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, opacity 0.2s ease-in-out, transform 0.2s ease-in-out, border 0.2s ease-in-out, -webkit-box-shadow 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
}
.room_plan_item:hover, .room_plan_item:focus {
  opacity: 0.7;
}
.room_plan_item:nth-child(even) {
  margin-right: 0;
}
.room_plan_item:last-child {
  margin-bottom: 0;
}
.room_plan_item a {
  text-decoration: none;
  display: block;
}
.room_plan_item .caption {
  margin-top: 10px;
  color: #333333;
  font-size: 1.4rem;
  position: relative;
  right: inherit;
}
.room_plan_item .caption .material-icons {
  font-size: 1.5rem;
  position: absolute;
  font-family: 'Material Icons';
  letter-spacing: normal;
  text-transform: none;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -moz-font-feature-settings: 'liga';
  -moz-osx-font-smoothing: grayscale;
  display: inline-flex;
  top: 2%;
  right: inherit;
  padding-left: 4px;
}
.group {
  border-bottom: solid 1px #CCC;
  padding-top: 30px;
  padding-bottom: 20px;
}
.banner_list {
  width: 100%;
}
.banner_item {
  width: 48%;
  margin-right: 3%;
  margin-bottom: 15px;
  -webkit-transition: background 0.2s ease-in-out, color 0.2s ease-in-out, opacity 0.2s ease-in-out, border 0.2s ease-in-out, -webkit-box-shadow 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  transition: background 0.2s ease-in-out, color 0.2s ease-in-out, opacity 0.2s ease-in-out, border 0.2s ease-in-out, -webkit-box-shadow 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  -o-transition: background 0.2s ease-in-out, color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, opacity 0.2s ease-in-out, transform 0.2s ease-in-out, border 0.2s ease-in-out;
  transition: background 0.2s ease-in-out, color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, opacity 0.2s ease-in-out, transform 0.2s ease-in-out, border 0.2s ease-in-out;
  transition: background 0.2s ease-in-out, color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, opacity 0.2s ease-in-out, transform 0.2s ease-in-out, border 0.2s ease-in-out, -webkit-box-shadow 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
}
.banner_item:hover, .banner_item:focus {
  opacity: 0.7;
}
.banner_item:nth-child(even) {
  margin-right: 0;
}
.outlink {
  padding: 20px 0 8px;
}
/*客室*/
.room_anchor {
  background-color: #F1EEE6;
  padding: 0;
}
.room_anchor_item {
  padding: 10px 5px;
  width: 50%;
  -webkit-transition: background 0.2s ease-in-out, color 0.2s ease-in-out, opacity 0.2s ease-in-out, border 0.2s ease-in-out, -webkit-box-shadow 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  transition: background 0.2s ease-in-out, color 0.2s ease-in-out, opacity 0.2s ease-in-out, border 0.2s ease-in-out, -webkit-box-shadow 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  -o-transition: background 0.2s ease-in-out, color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, opacity 0.2s ease-in-out, transform 0.2s ease-in-out, border 0.2s ease-in-out;
  transition: background 0.2s ease-in-out, color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, opacity 0.2s ease-in-out, transform 0.2s ease-in-out, border 0.2s ease-in-out;
  transition: background 0.2s ease-in-out, color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, opacity 0.2s ease-in-out, transform 0.2s ease-in-out, border 0.2s ease-in-out, -webkit-box-shadow 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
}
.room_anchor_item a {
  text-decoration: none;
  display: block;
}
.room_anchor_item:hover, .room_anchor_item:focus {
  opacity: 0.7;
}
.room_anchor_item .caption {
  position: relative;
  font-size: 1.4rem;
  margin-top: 10px;
  color: #222;
}
.room_anchor_item .caption .material-icons {
  font-size: 1.5rem;
  position: absolute;
  font-family: 'Material Icons';
  letter-spacing: normal;
  text-transform: none;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -moz-font-feature-settings: 'liga';
  -moz-osx-font-smoothing: grayscale;
  display: inline-flex;
  top: 10%;
  right: inherit;
  padding-left: 4px;
}
.rooms .main_tit {
  text-align: left;
  position: relative;
  margin-top: 30px;
}
.rooms .main_tit::before {
  position: absolute;
  top: -20px;
  width: 20px;
  height: 2px;
  content: "";
  background-color: #2C4197;
}
.rooms .mini_tit {
  font-size: 1.6rem;
  line-height: 1.8;
}
.rooms .room_number {
  font-size: 1.5rem;
  margin-top: 20px;
  margin-bottom: 20px;
}
.room_col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.rooms .room_detail {
  width: 100%;
  order: 2;
}
.rooms .detail_list {
  margin-bottom: 20px;
}
.rooms .detail_item {
  font-size: 1.4rem;
  margin-bottom: 20px;
}
.rooms .detail_item:last-child {
  margin-bottom: 0;
}
.rooms .others_btn {
  background-color: #183D3D;
}
.room_slider {
  width: 100%;
  order: 1;
}
.swiper-button-next, .swiper-button-prev {
  color: #000;
}
/*食事*/
/*食事*/
.restaurant_area {
  padding: 15px 0 0;
}
.restaurant_area .main_tit span {
  display: block;
  font-size: 1.4rem;
}
.menu-layout {
  width: 86%;
}
.dish-list {
  display: flex;
  flex-wrap: wrap;
}
.dish-list_item {
  width: 48%;
  margin-right: 4%;
  margin-bottom: 20px;
}
.dish-list_item:nth-child(2n) {
  margin-right: 0;
}
.dish-list_item_cap {
  padding-top: 12px;
  line-height: 1.6;
}
.menu-container {
  width: 100%;
  margin: 0 auto;
}
.dish-p {
  width: 100%;
}
.dish-menu {
  padding: 40px 0;
  background-color: #111D1B;
  color: #FFFFFF;
  width: 100%;
}
.dish-menu h3 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 2rem;
  line-height: 1.6;
}
.dish-menu h3 span {
  display: block;
  font-size: 1.5rem;
}
.breakfast {
  width: 100%;
  margin: 0 auto;
}
.breakfast-p {
  width: 100%;
}
.breakfast-menu {
  padding: 40px 0;
  background-color: #111D1B;
  color: #FFFFFF;
  width: 100%;
}
.breakfast-menu h3 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 2rem;
  line-height: 1.6;
}
.breakfast-menu h3 span {
  display: block;
  font-size: 1.5rem;
}
.dish-menu_item {
  line-height: 1.6;
  margin-bottom: 15px;
  text-align: center;
}
.dish-menu_item span {
  display: block;
  font-size: 1.4rem;
}
.dish-list_item:last-of-type(-n+2) {
  margin-bottom: 0;
}
.restaurant {
  margin-top: 40px;
}
.restaurant-list:first-child {
  width: 100%;
}
.restaurant-list {
  width: 50%;
}
.r-txt {
  padding-top: 15px;
  text-align: right;
}
/*温泉*/
.spa .caption {
  margin-left: 15px;
}
.p-bath {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.p-bath_txt {
  padding: 16px 12px;
  width: 100%;
  line-height: 1.8;
  border: 1px solid #CCC;
}
.p-bath_txt:last-child {
  border-top: none;
}
.v_area {
  max-width: 700px;
  margin: 0 auto;
}
/*video*/
.v_area-txt {
  width: 100%;
  line-height: 1.8;
  margin-bottom: 30px;
}
video {
  width: 100%;
  max-width: 700px;
}
/*よくある質問*/
.accordion-container {
  width: 100%;
  margin: 0 auto 40px;
  font-size: 1.5rem;
}
.accordion-container .accordion-title {
  position: relative;
  margin-top: 8px;
  padding: 12px 50px 12px 30px;
  background-color: #AAA492;
  cursor: pointer;
  color: #FFF;
  line-height: 1.8;
}
.accordion-container .accordion-title:hover, .accordion-container .accordion-title:active, .accordion-title.open {
  background-color: #CCC6B0;
}
.accordion-container .accordion-title::before {
  content: "";
  position: absolute;
  top: 48%;
  right: 25px;
  width: 15px;
  height: 2px;
  /*縦線に*/
  transform: rotate(90deg);
  background: #fff;
  transition: all .3s ease-in-out;
}
.accordion-container .accordion-title::after {
  content: "";
  position: absolute;
  top: 48%;
  right: 25px;
  /*横線*/
  width: 15px;
  height: 2px;
  background: #fff;
  transition: all .2s ease-in-out;
}
.accordion-container .accordion-title.open::before {
  transform: rotate(180deg);
}
.accordion-container .accordion-title.open::after {
  opacity: 0;
}
.accordion-content {
  padding: 14px 10px 12px 20px;
  margin-bottom: 5px;
  background-color: #FFFFFF;
  line-height: 1.8;
}
.accordion-title, .accordion-content p {
  padding-left: 1em;
  text-indent: -1em;
}
/*お問い合わせ*/
.frame {
  background-color: #ECECEC;
  padding: 0 15px;
  margin-top: 20px;
}
.frame-left {
  width: 100%;
  margin: 8px 0;
}
.frame-right {
  margin: 8px 0 15px;
  width: 100%;
}
.frame-right .text_box {
  width: 100%;
  padding: 6px;
  background-color: #FFFFFF;
}
.inq_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  margin-top: 30px;
}
.inq_box .submit_btn {
  width: 48%;
  background-color: #455286;
  color: #FFF;
  padding: 16px 0;
  -webkit-transition: background 0.2s ease-in-out, color 0.2s ease-in-out, opacity 0.2s ease-in-out, border 0.2s ease-in-out, -webkit-box-shadow 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  transition: background 0.2s ease-in-out, color 0.2s ease-in-out, opacity 0.2s ease-in-out, border 0.2s ease-in-out, -webkit-box-shadow 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  -o-transition: background 0.2s ease-in-out, color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, opacity 0.2s ease-in-out, transform 0.2s ease-in-out, border 0.2s ease-in-out;
  transition: background 0.2s ease-in-out, color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, opacity 0.2s ease-in-out, transform 0.2s ease-in-out, border 0.2s ease-in-out;
  transition: background 0.2s ease-in-out, color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, opacity 0.2s ease-in-out, transform 0.2s ease-in-out, border 0.2s ease-in-out, -webkit-box-shadow 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
}
.inq_box .submit_btn:hover, .inq_box .submit_btn:focus, .inq_box .reset_btn:hover, .inq_box .reset_btn:focus {
  opacity: 0.7;
}
.inq_box .reset_btn {
  width: 48%;
  background-color: #CCCCCC;
  padding: 10px 0;
  -webkit-transition: background 0.2s ease-in-out, color 0.2s ease-in-out, opacity 0.2s ease-in-out, border 0.2s ease-in-out, -webkit-box-shadow 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  transition: background 0.2s ease-in-out, color 0.2s ease-in-out, opacity 0.2s ease-in-out, border 0.2s ease-in-out, -webkit-box-shadow 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  -o-transition: background 0.2s ease-in-out, color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, opacity 0.2s ease-in-out, transform 0.2s ease-in-out, border 0.2s ease-in-out;
  transition: background 0.2s ease-in-out, color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, opacity 0.2s ease-in-out, transform 0.2s ease-in-out, border 0.2s ease-in-out;
  transition: background 0.2s ease-in-out, color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, opacity 0.2s ease-in-out, transform 0.2s ease-in-out, border 0.2s ease-in-out, -webkit-box-shadow 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
}
::placeholder {
  color: #97A7C0;
  font-size: 1.4rem;
}
/*お問い合わせPHPのCSS*/
table.formTable {
  width: 100%;
  margin: 30px 0 15px;
  border-collapse: collapse;
}
table.formTable td, table.formTable th {
  border: 1px solid #CCC;
  padding: 8px;
  vertical-align: top;
}
#formWrap {
  width: 100%;
  margin: 0 auto;
}
table.formTable th, table.formTable td {
  width: auto;
  display: block;
}
table.formTable th {
  background-color: #ECECEC;
  text-align: left;
}
table.formTable td {
  text-align: left;
}
table.formTable th {
  margin-top: 10px;
  border-bottom: 0;
}
p.error_messe {
  margin: 5px 0;
  color: red;
}
input[type="text"], textarea {
  width: 80%;
  padding: 5px;
  font-size: 100%;
  display: block;
}
.form_flex {
  margin-bottom: 60px;
}
input[type="submit"], input[type="reset"], input[type="button"] {
  width: 48%;
  font-size: 1.5rem;
  color: #FFFFFF;
  outline: 0;
  -webkit-appearance: none;
}
input[type="submit"] {
  padding: 16px 0;
  background-color: #455286;
  color: #FFFFFF;
  border: none;
  cursor: pointer;
}
input[type="reset"], input[type="button"] {
  padding: 16px 0;
  background-color: #FFFFFF;
  color: #333333;
  border: solid 1px #CCCCCC;
  cursor: pointer;
}
.info .frame {
  margin-bottom: 30px;
  font-size: 1.5rem
}
.info .frame-left {
  margin-top: 15px;
  margin-bottom: 0;
}
.info .frame-right {
  padding-bottom: 13px;
  border-bottom: solid 1px #CCCCCC;
  margin-bottom: 0;
  line-height: 1.8;
}
.info .frame-right:last-child {
  border-bottom: none;
}
/*交通のご案内*/
#map_canvas {
  width: 100%;
  height: 400px;
  margin-bottom: 20px;
}
.mapbtn {
  padding: 14px 6px;
  margin-left: auto;
  background-color: #333;
  width: 200px;
  display: block;
  text-align: center;
  color: #FFF;
  text-decoration: none;
  font-size: 1.5rem;
}
.mapbtn:hover, .mapbtn:focus {
  opacity: 0.7;
}
.accessmap {
  width: 735px;
  margin-bottom: 30px;
}
.access_list {
  margin-bottom: 40px;
  font-size: 1.5rem;
}
.access_mb {
  margin-bottom: 40px;
	line-height: 1.6;
}
.access_item {
  margin-bottom: 15px;
  line-height: 1.6;
  padding-left: 1em;
  text-indent: -1em;
}
.access_item:last-child {
  margin-bottom: 0;
}
.facility {
  margin-bottom: -40px;
}
/*個人情報*/
.policy {
  line-height: 1.8;
}
.policy p {
  margin-bottom: 30px;
}
.dash-box {
  margin-bottom: 30px;
}
.dash-box:last-child {
  margin-bottom: 0;
}
/*パンフレット*/
.pamphdl a {
  display: block;
  padding: 16px 0;
  background-color: #802D2E;
  color: #FFF;
  text-align: center;
  width: 100%;
  margin: 0 0 30px;
  text-decoration: none;
  -webkit-transition: background 0.2s ease-in-out, color 0.2s ease-in-out, opacity 0.2s ease-in-out, border 0.2s ease-in-out, -webkit-box-shadow 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  transition: background 0.2s ease-in-out, color 0.2s ease-in-out, opacity 0.2s ease-in-out, border 0.2s ease-in-out, -webkit-box-shadow 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  -o-transition: background 0.2s ease-in-out, color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, opacity 0.2s ease-in-out, transform 0.2s ease-in-out, border 0.2s ease-in-out;
  transition: background 0.2s ease-in-out, color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, opacity 0.2s ease-in-out, transform 0.2s ease-in-out, border 0.2s ease-in-out;
  transition: background 0.2s ease-in-out, color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, opacity 0.2s ease-in-out, transform 0.2s ease-in-out, border 0.2s ease-in-out, -webkit-box-shadow 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
}
.pamphdl a:hover, .pamphdl a:focus {
  opacity: 0.9;
}
.adobe {
  margin-top: 20px;
  width: 158px;
}
.pamphdata {
  line-height: 1.8;
}
.pamph_img {
  margin: 0 auto 30px;
  text-align: center;
}
.pamph_img:last-child {
  margin-bottom: 0;
}
.bold-label {
  font-weight: 700;
}
/*お知らせnewstopic*/
.newstopic .main_tit {
  text-align: left;
}
.newstopic .column-item {
  margin-top: 0;
  margin-bottom: 30px;
}
.newstopic .column-item:last-child {
  margin-bottom: 0;
}
.newstopic p {
  line-height: 1.8;
}
.newstopic ol {
  counter-reset: number; /*数字をリセット*/
  margin-bottom: 10px;
}
.newstopic ol li {
  position: relative;
  line-height: 1.8;
  padding: 0.8em 0.5em 0.8em 32px;
}
.newstopic ol li:before {
  /* 以下数字をつける */
  position: absolute;
  counter-increment: number;
  content: counter(number);
  /*以下数字のデザイン変える*/
  display: inline-block;
  background: #014A99;
  color: #FFFFFF;
  font-family: 'Avenir', 'Arial', sans-serif;
  border-radius: 50%;
  left: 0;
  width: 25px;
  height: 25px;
  line-height: 1.8;
  text-align: center;
}
/*404*/
.not_found .page_tit_txt {
  text-align: left;
  margin-bottom: 30px;
}
.err404 li {
  margin-bottom: 25px;
}
.err404 li a {
  text-decoration: none;
  color: inherit;
}
.err404 li a:hover, .err404 li a:focus {
  opacity: 0.7;
}
/*予約エリアtripla*/
.reserve_area {
  background-color: #395B64;
  padding: 50px 0;
}
.reserve_area .page_tit {
  color: #FFF;
  line-height: 1;
  text-align: center;
}
.reserve-area {
  padding: 0;
  width: 85%;
  margin: 0 auto 30px;
}
.reserve-area p {
  color: #FFF;
  line-height: 1.7;
}
.button-btn-f51c1a {
  padding: 14px 60px 11px !important;
  background-color: #0F3D3E !important;
}
.search-widget-search-container-bf1818 {
  background-color: #FFF !important;
  border-radius: 0 !important;
  padding: 30px 25px 25px !important;
  width: 85% !important;
}
.input-container-input-container-da40af {
  margin: 0 12px 20px 0 !important;
}
.input-container-input-container-da40af .input-container-title-db81ec {
  font-size: 1.5rem !important;
  font-family: "Noto Serif JP", sans-serif;
}
/* ページトップに戻るボタン
---------------------------------------- */
.to-top {
  position: fixed;
  bottom: 10%;
  right: 2.5%;
  z-index: 99;
}
.to-top__link {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #475594;
  display: block;
  -webkit-transition: background 0.2s ease-in-out, color 0.2s ease-in-out, opacity 0.2s ease-in-out, border 0.2s ease-in-out, -webkit-box-shadow 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  transition: background 0.2s ease-in-out, color 0.2s ease-in-out, opacity 0.2s ease-in-out, border 0.2s ease-in-out, -webkit-box-shadow 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  -o-transition: background 0.2s ease-in-out, color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, opacity 0.2s ease-in-out, transform 0.2s ease-in-out, border 0.2s ease-in-out;
  transition: background 0.2s ease-in-out, color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, opacity 0.2s ease-in-out, transform 0.2s ease-in-out, border 0.2s ease-in-out;
  transition: background 0.2s ease-in-out, color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, opacity 0.2s ease-in-out, transform 0.2s ease-in-out, border 0.2s ease-in-out, -webkit-box-shadow 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
}
.to-top__link:before {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -30%) rotate(-45deg);
  -ms-transform: translate(-50%, -30%) rotate(-45deg);
  transform: translate(-50%, -30%) rotate(-45deg);
}
.to-top__link:hover, .to-top__link:focus {
  opacity: 0.7;
}
@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
    cursor: text;
  }
  .mobile-none {
    display: inline-block;
  }
  .tablet-none {
    display: none;
  }
  /*top*/
  /*intoro*/
  .top_intro_item {
    width: 25%;
  }
  /* モーダルCSS */
  .modal_list {
    width: 45%;
  }
  /*topコンテンツエリア*/
  .top_contents_item {
    width: 33.333%;
    max-width: 700px;
  }
  .top_tit {
    padding: 12px 15px;
    font-size: 1.6rem;
  }
  .top_list_room, .top_list_dish, .top_list_spa {
    height: 40vh;
  }
  /*newsエリア*/
  .news_area {
    width: 57%;
    margin-right: 3.3%;
  }
  .fb_area {
    width: 39.7%;
  }
  /*top*/
  /*topコンテンツエリア*/
  .top_tit {
    font-size: 2rem;
    padding: 15px 30px;
  }
  /*topルームプラン*/
  .room_plan_item {
    width: 24.4%;
    margin-right: 5px;
  }
  .room_plan_item:nth-child(even) {
    margin-right: 5px;
  }
  .room_plan_item:nth-of-type(4n) {
    margin-right: 0;
  }
  .room_plan_item:nth-child(n+4) {
    margin-bottom: 0
  }
  /*バナー*/
  .banner_item {
    width: 16%;
    margin-right: 1%;
  }
  .banner_item:nth-child(even) {
    margin-right: 1%;
  }
  .outlink .banner_list {
    justify-content: flex-end;
  }
  /*客室*/
  .room_anchor_item {
    width: 25%;
  }
  .restaurant-list:first-child {
    width: 50%;
  }
  .restaurant-list {
    width: 25%;
  }
  /*パンフレット*/
  .pamphdl a {
    width: 50%;
  }
  .pamph_img {
    max-width: 880px;
  }
  /*リニューアル*/
  .renewal-list_item {
    width: 49%;
    margin-right: 2%;
    margin-top: 50px !important;
  }
  .renewal-list_item:nth-of-type(even) {
    margin-right: 0;
  }
  .renewal_btn {
    max-width: 350px;
  }
  .sm_img {
    max-width: 1000px;
  }
  .center-img {
    text-align: center;
  }
}
@media screen and (min-width: 1024px) {
  .pc-only {
    display: inline-block;
  }
  .hamburger {
    display: none;
  }
  .header_inner {
    max-width: 1920px;
    width: 100%;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
  }
  .nav {
    position: initial;
    right: initial;
    top: initial;
    width: initial;
    height: initial;
    padding-top: initial;
    background-color: initial;
    transition: initial;
    z-index: 0;
    overflow-y: initial;
  }
  .main_nav {
    width: 80%;
    margin-left: auto;
  }
  .nav_list {
    /* メニューを横に */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    flex-direction: row;
    width: 100%;
  }
  .nav_item {
    text-align: left;
    padding: 0;
    margin-left: 34px;
  }
  .nav_item:not(:first-child) {
    margin: 0 0 0 34px;
  }
  .nav_item a {
    border-bottom: none;
  }
  /*footerエリア*/
  .footer_content {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    align-items: flex-start;
  }
  .footer_subnav {
    width: 66%;
  }
  .footer_subnav_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 20px;
  }
  .footer_subnav_item {
    margin-bottom: 0;
    text-align: inherit;
    margin-right: 30px;
  }
  .footer_subnav_item:last-child {
    margin-right: 0;
  }
  .footer_sub_list {
    margin: 0;
  }
  .pamph {
    margin-bottom: 20px;
  }
  .sns_list {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin-bottom: 0;
  }
  .sns_list_item {
    width: 25px;
    margin-right: 20px;
  }
  .sns_list_item:last-child {
    margin-right: 0;
  }
  .footer_info {
    text-align: left;
    margin: 0 0 0 auto;
  }
  .footer_address {
    font-size: 1.4rem;
    margin-bottom: 40px;
  }
  .copyright {
    font-size: 1.2rem;
    text-align: right;
    margin-bottom: 20px;
  }
  .footer_sp_nav {
    display: none;
  }
  .frame-left {
    width: 20%;
    margin: 15px 0;
  }
  .frame-right {
    width: 80%;
    margin: 10px 0;
  }
  .info .frame-left {
    border-bottom: solid 1px #CCCCCC;
  }
  .info .frame-left:last-of-type {
    border-bottom: none;
  }
  /*otherエリア*/
  .others_item {
    width: 33.333%;
    border-top: none;
    border-left: solid 1px #ccc;
  }
  .others_item:last-child {
    border-right: solid 1px #ccc;
    border-bottom: none;
  }
  .plan_btn, .dayplan_btn {
    border-radius: 3px;
  }
  a.plan_btn, a.dayplan_btn {
    padding-left: 20px;
    padding-right: 20px;
  }
  /*空室・日帰りエリア*/
  .reserve_btn {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .vacant_btn, .day_btn {
    width: 48%;
  }
  .vacant_btn {
    margin-right: 4%;
    margin-bottom: 0;
  }
  .container {
    max-width: 1920px;
  }
  .contents {
    padding-top: 68px;
  }
  .top {
    padding-top: 100px
  }
  .content:not(:first-child) {
    margin-top: 66px;
  }
  /*タイトル*/
  .page_tit_txt {}
  .restaurant_area .page_tit_txt, .dish_area .page_tit_txt {
    text-align: left;
  }
  .page_tit_txt span {
    display: block;
  }
  .column-two .column-item {
    width: 48%;
  }
  .column-two .column-item:not(:last-child) {
    margin-right: 4%;
  }
  .column-three .column-item {
    width: 30.7%;
  }
  .column-three .column-item:not(:last-child) {
    margin-right: 3.95%;
  }
  .column-four .column-item {
    width: 30.7%;
  }
  .column-four .column-item:not(:last-child) {
    margin-right: 3.95%;
  }
  /*top*/
  .top_page .header_area {
    border-bottom: none;
  }
  /*heroエリア*/
  .hero_area {
    margin-left: 5.85652vw;
    margin-right: 5.85652vw;
  }
  /*intoro*/
  .top_intro_item {
    width: 25%;
  }
  /*客室*/
  .room_anchor_item {
    width: 16.666%;
  }
  .room_col {
    max-width: 1104px
  }
  .rooms .main_tit {
    margin-top: 100px;
  }
  .rooms .room_detail {
    width: 35%;
    order: 1;
    margin-right: 3%;
  }
  .rooms .room_slider {
    width: 62%;
    order: 2;
  }
  .rooms .room_number {
    margin-top: 0;
  }
  /*食事*/
  .restaurant_area {
    padding: 66px 0 0;
  }
  .menu-layout {
    width: 100%;
  }
  /*料理メニュー*/
  .menu-container {
    max-width: 1200px;
    display: flex;
    align-items: flex-start;
    position: relative;
  }
  .dish-p {
    max-width: 920px;
  }
  .dish-menu {
    padding: 40px 0 30px;
    background-color: #111D1B;
    color: #FFFFFF;
    max-width: 350px;
    position: absolute;
    right: 0;
    transform: translateY(10%);
  }
  .dish-menu h3 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2.4rem;
    line-height: 1.6;
  }
  .dish-menu h3 span {
    display: block;
    font-size: 1.5rem;
  }
  .breakfast {
    max-width: 900px;
    display: flex;
    align-items: flex-start;
    position: relative;
  }
  .breakfast-p {
    max-width: 700px;
  }
  .breakfast-menu {
    padding: 30px 0 25px;
    max-width: 300px;
    background-color: #111D1B;
    color: #FFFFFF;
    position: absolute;
    right: 0;
    transform: translateY(13%);
  }
  .breakfast-menu h3 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2.4rem;
    line-height: 1.6;
  }
  .breakfast-menu h3 span {
    display: block;
    font-size: 1.5rem;
  }
  .dish-list_item {
    width: 32%;
    margin-right: 2%;
  }
  .dish-list_item:nth-child(2n) {
    margin-right: 2%;
  }
  .dish-list_item:nth-child(3n) {
    margin-right: 0;
  }
  .dish-list_item:last-of-type(-n+3) {
    margin-bottom: 0;
  }
  /*温泉*/
  .spa .column-two .column-item {
    width: 50%;
    margin-top: 0;
  }
  .spa .column-two .column-item:not(:last-child) {
    margin-right: 0;
  }
  .spa .caption {
    margin-left: 0;
    text-align: center;
  }
  .p-bath_txt {
    width: 50%;
  }
  .p-bath_txt:last-child {
    border-top: 1px solid #CCC;
    border-left: none;
  }
  /*交通のご案内*/
  #map_canvas {
    height: 680px;
    margin-bottom: 30px;
  }
  .access_list {
    margin-bottom: 80px;
  }
  .access_list:last-child {
    margin-bottom: 0;
  }
  /*2024トリプラ予約検索バー*/
  .input-container-input-container-da40af {
    margin: 0 12px 12px 0 !important;
  }
}
.ico_right a:after {
  content: '\e5cc';
  font-family: 'Material Icons';
  display: inline-flex;
  vertical-align: -2px;
  padding-left: 3px;
}
.ico_open a:after {
  content: '\e89e';
  font-family: 'Material Icons';
  display: inline-flex;
  vertical-align: -2px;
  padding-left: 3px;
}