@charset "UTF-8";
/*Reset
---------------------------------------------------------------------*/
/*html, body, div, span, object, iframe,*/
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  font-style: normal;
  background: transparent;
}

article, nav, section, header, footer, aside, main, address {
  display: block;
}

* {
  box-sizing: border-box;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

*:after, *:before {
  box-sizing: border-box;
}

nav ul,
nav li {
  list-style: none;
  margin: 0;
  padding: 0;
}

img {
  line-height: 0;
  border: none;
  max-width: 100%;
  height: auto;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/*共通
---------------------------------------------------------------------*/
html {
  font-size: 14px;
}
@media screen and (min-width: 992px) {
  html {
    font-size: 18px;
  }
}

.inner {
  width: 96%;
  margin: 0px auto;
  padding: 5% 2%;
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .inner {
    padding: 8% 5%;
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .inner {
    max-width: 720px;
  }
}
@media screen and (min-width: 992px) {
  .inner {
    max-width: 1200px;
  }
}
@media (min-width: 1600px) {
  .inner {
    max-width: 1400px;
  }
}

/*body
---------------------------------------------------------------------*/
body {
  margin: 0px;
  padding: 0px;
  background-color: #FFF;
  color: rgb(51, 51, 51);
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  font-family: "Montserrat", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  overflow-wrap: break-word;
}

/*wrapper
---------------------------------------------------------------------*/
#WRAPPER {
  margin: 0px;
  padding: 0px;
  height: 100%;
  overflow-x: hidden;
  position: relative;
}

#overlay {
  content: "";
  display: block;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
  background-color: rgba(0, 0, 0, 0.6);
}
#overlay.open {
  opacity: 1;
  visibility: visible;
}

/*header
---------------------------------------------------------------------*/
#header {
  position: fixed;
  top: 0;
  width: 100%;
  top: 0;
  left: 0;
  margin: 0 0 0 0;
  padding: 0;
  background-color: rgba(0, 0, 0, 0.6);
  font-family: "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  z-index: 100;
}
#header > .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.3s ease;
  padding: 0px 0 0 2%;
  max-width: 100%;
  width: 100%;
}
#header #headerlogo {
  width: 180px;
}
@media screen and (min-width: 992px) {
  #header #headerlogo {
    width: 240px;
  }
}

#main_pcnavi {
  display: none;
}
@media screen and (min-width: 1281px) {
  #main_pcnavi {
    display: block;
    flex-grow: 2;
  }
  #main_pcnavi .mainmenu {
    display: flex;
    position: relative;
    text-align: center;
    justify-content: end;
    gap: 1em;
  }
  #main_pcnavi .mainmenu > li {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 0;
    font-size: clamp(0.9rem, -0.5rem + 1.5vw, 1.1rem);
    position: relative;
  }
  #main_pcnavi .mainmenu > li a {
    padding: 10px 10px;
    display: flex;
    height: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    color: #FFF;
  }
  #main_pcnavi .mainmenu li:after {
    display: block;
    position: absolute;
    bottom: 0px;
    left: 0;
    content: "";
    height: 2px;
    width: 100%;
    transform: scale(0);
    background: rgb(181, 141, 34);
    border-radius: 2px;
    transition: all 0.4s;
  }
  #main_pcnavi .mainmenu li ul {
    background-color: rgba(0, 0, 0, 0.8);
    transform: scaleY(0) translateX(-50%);
    transform-origin: center top;
    min-width: 200px;
    padding: 5% 10%;
    position: absolute;
    top: 100%;
    left: 50%;
    transition: all 0.4s;
    z-index: 2;
    font-size: 1rem;
  }
  #main_pcnavi .mainmenu li ul li {
    font-size: 90%;
    height: auto;
  }
  #main_pcnavi .mainmenu li ul li a {
    height: auto;
    padding: 15px 5px;
    border-bottom: 1px rgba(181, 181, 181, 0.2) solid;
    white-space: nowrap;
  }
  #main_pcnavi .mainmenu li ul li:last-child a {
    border-bottom: 0px rgba(181, 181, 181, 0.2) solid;
  }
  #main_pcnavi .mainmenu li ul li a:hover {
    color: rgb(181, 141, 34);
  }
  #main_pcnavi .mainmenu li ul li:before,
  #main_pcnavi .mainmenu li ul li:after {
    display: none;
  }
  #main_pcnavi .mainmenu li:hover ul {
    display: block;
    transform: scaleY(1) translateX(-50%);
  }
}

#body_stay #main_pcnavi .mainmenu li.nav_stay:after,
#body_banquet #main_pcnavi .mainmenu li.nav_banquet:after,
#body_lunch #main_pcnavi .mainmenu li.nav_lunch:after,
#body_facility #main_pcnavi .mainmenu li.nav_facility:after,
#body_member #main_pcnavi .mainmenu li.nav_member:after,
#main_pcnavi .mainmenu li:hover:after {
  transform: scale(1);
}

ul.submenu {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 0 0 0 20px;
}
ul.submenu li {
  min-width: 90px;
}
@media screen and (max-width: 767px) {
  ul.submenu li {
    min-width: 65px;
  }
}
ul.submenu .nav_btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  height: 90px;
  width: 120px;
  padding: 5px;
  color: #FFF;
  gap: 5px;
}
ul.submenu .nav_btn img {
  width: 40%;
}
@media screen and (max-width: 767px) {
  ul.submenu .nav_btn {
    height: 65px;
    width: 65px;
  }
  ul.submenu .nav_btn img {
    width: 60%;
  }
}
ul.submenu .nav_contact .nav_btn {
  background-color: rgb(164, 34, 20);
}
ul.submenu .nav_yoyaku .nav_btn {
  background-color: rgb(181, 141, 34);
}
ul.submenu .nav_tel a.nav_btn {
  background-color: rgb(164, 34, 20);
}
ul.submenu .nav_tel > span {
  color: #FFF;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px 0 0;
}
ul.submenu .nav_tel > span img {
  width: 62px;
}
ul.submenu .nav_tel > span span {
  display: flex;
  flex-direction: column;
  font-size: 1.5rem;
}
ul.submenu .nav_tel > span small {
  color: #FFF;
  background-color: rgb(181, 141, 34);
  font-size: 0.8rem;
  padding: 0 0.5em;
  text-align: center;
}

#menu_btn,
#close_btn {
  position: relative;
  cursor: pointer;
  padding: 0 10px;
  /*width: 55px;*/
  height: 55px;
  z-index: 25;
  overflow: hidden;
  flex-shurink: 0;
  text-align: center;
  font-size: 15px;
  color: #FFF;
}
#menu_btn span:not(:nth-of-type(3)),
#close_btn span:not(:nth-of-type(3)) {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 25%;
  height: 2px;
  border-radius: 5px;
  background: rgb(255, 255, 255);
  width: 50%;
}
#menu_btn span:nth-of-type(1),
#close_btn span:nth-of-type(1) {
  top: 10px;
}
#menu_btn span:nth-of-type(2),
#close_btn span:nth-of-type(2) {
  top: 26px;
}
#menu_btn span:nth-of-type(3),
#close_btn span:nth-of-type(3) {
  display: inline-block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}
#menu_btn.active,
#close_btn.active {
  color: rgb(164, 34, 20);
}
#menu_btn.active span:nth-of-type(1),
#close_btn.active span:nth-of-type(1) {
  top: 12px;
  transform: translateY(6px) rotate(-155deg);
  background: rgb(164, 34, 20);
}
#menu_btn.active span:nth-of-type(2),
#close_btn.active span:nth-of-type(2) {
  top: 24px;
  transform: translateY(-6px) rotate(155deg);
  background: rgb(164, 34, 20);
}

#close_btn {
  position: absolute;
  top: 15px;
  right: 10px;
  min-width: 90px;
}
@media screen and (max-width: 767px) {
  #close_btn {
    height: 65px;
    width: 65px;
    min-width: 65px;
  }
}

#yoyakunavi {
  background: url(../img/footer_back.jpg) top left;
  z-index: 30;
  height: 100vh;
  width: 100%;
  padding: 30px 0 30px 0;
  overflow: auto;
  position: fixed;
  top: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
}
#yoyakunavi.active {
  opacity: 1;
  visibility: visible;
}
#yoyakunavi .yoyaku_panel_close {
  display: inline-block;
}

#mainnavi {
  background: url(../img/footer_back.jpg) top left;
  z-index: 20;
  height: 100vh;
  width: 100%;
  padding: 100px 0 30px 0;
  overflow: auto;
  position: fixed;
  top: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
}
#mainnavi.active {
  opacity: 1;
  visibility: visible;
}
#mainnavi > ul {
  list-style: none;
  margin: 10px 3% 0;
  padding: 0 0 10px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 2%;
}
@media screen and (min-width: 992px) {
  #mainnavi > ul {
    margin: 10px 5% 0;
  }
  #mainnavi > ul > li {
    width: 23%;
  }
}
#mainnavi > ul li {
  margin: 0.5em 0;
  padding: 0 0;
  font-size: 1.2rem;
}
@media screen and (max-width: 767px) {
  #mainnavi > ul li {
    width: 100%;
  }
}
#mainnavi > ul li a {
  display: block;
  padding: 0.5em 1em;
  text-decoration: none;
  color: rgb(51, 51, 51);
}
#mainnavi > ul ul {
  display: block;
}
#mainnavi > ul ul li {
  font-size: 0.9rem;
}
#mainnavi .navi_icon {
  justify-content: space-between;
}
#mainnavi .navi_icon li {
  background: rgb(51, 51, 51);
}
#mainnavi .navi_icon li a,
#mainnavi .navi_icon li.nav_yoyaku span {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 90px;
  padding: 5px;
  color: #FFF;
  gap: 5px;
}
#mainnavi .navi_icon img {
  width: 60px;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  #mainnavi .navi_icon li {
    width: 30%;
  }
  #mainnavi .navi_icon li.nav_tel {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  #mainnavi .navi_icon {
    padding: 0;
    justify-content: space-between;
    gap: 10px;
  }
  #mainnavi .navi_icon li.nav_tel {
    margin: 0;
  }
  #mainnavi .navi_icon li:not(.nav_tel) {
    margin: 0;
    width: 30%;
    font-size: 0.9rem;
  }
  #mainnavi .navi_icon li:not(.nav_tel) a, #mainnavi .navi_icon li:not(.nav_tel) span {
    flex-direction: column;
  }
  #mainnavi .navi_icon li:not(.nav_tel) img {
    width: 50%;
  }
}

.nav_yoyaku:hover {
  cursor: pointer;
}

.nav_yoyaku.nav_yoyaku_txt {
  text-decoration: none;
  color: rgb(25, 88, 137);
}
.nav_yoyaku.nav_yoyaku_txt:hover {
  color: rgb(164, 34, 20);
}

/*main
---------------------------------------------------------------------*/
#main {
  background-color: rgb(247, 244, 242);
}

#topicpath.inner {
  padding: 1em 0;
}

/*footer
---------------------------------------------------------------------*/
#footer {
  position: relative;
  margin: 0px auto 0;
  padding: 0px 0px 0px;
  background: url(../img/footer_back.jpg);
  background-size: contain;
}
#footer #footer_content {
  margin: 0px 0;
  padding: 0px 0 30px;
  width: 100%;
  background-image: url(../img/footer_back_L.png), url(../img/footer_back_R.png);
  background-repeat: no-repeat, no-repeat;
  background-size: 40%, 40%;
  background-position: bottom left, bottom right;
}
@media screen and (max-width: 767px) {
  #footer #footer_content {
    background-size: 50%, 50%;
  }
}
@media screen and (min-width: 992px) {
  #footer .inner {
    display: flex;
    justify-content: space-around;
    align-items: center;
  }
  #footer #footer_address {
    width: 40%;
    flex-shrink: 0;
  }
}
#footer #footernavi {
  width: 50%;
}
#footer #footernavi ul {
  display: flex;
  flex-wrap: wrap;
  font-size: 0.9rem;
}
#footer #footernavi ul li {
  margin: 0.5em;
}
#footer #footernavi ul a {
  padding: 0.5em;
  color: rgb(51, 51, 51);
}
#footer #footernavi ul ul {
  display: none;
}
#footer #copyright {
  margin: 0px auto 0px;
  padding: 20px 0px 20px;
  font-size: 12px;
  text-align: center;
}

/*common
---------------------------------------------------------------------*/
#maincol article:not(:first-of-type) .inner {
  position: relative;
}
#maincol article:not(:first-of-type) .inner:before {
  position: absolute;
  top: 0;
  left: 0;
  height: 1;
  width: 100%;
  content: "";
  display: block;
  border-top: 1px solid rgb(164, 34, 20);
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

#topimage {
  background: url(../img/h1_common.jpg) center center no-repeat;
  background-size: cover;
  padding: 90px 0 0;
  position: relative;
}
#topimage::after {
  content: "";
  background: rgba(0, 0, 0, 0.15);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
#topimage h1 {
  position: relative;
  margin: 0 0;
  padding: 10vh;
  font-size: clamp(1.75rem, 0.5338266385rem + 2.5369978858vw, 2.5rem);
  font-family: "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  text-align: center;
  color: #FFF;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
  z-index: 5;
}
#topimage h1 small {
  font-size: clamp(1rem, 0.189217759rem + 1.6913319239vw, 1.5rem);
  font-weight: normal;
  display: block;
}

#body_stay #topimage {
  background: url(../img/h1_stay.jpg) center center no-repeat;
  background-size: cover;
}

#body_banquet #topimage {
  background: url(../img/h1_banquet.jpg) center center no-repeat;
  background-size: cover;
}

#body_lunch #topimage {
  background: url(../img/h1_lunch.jpg) center center no-repeat;
  background-size: cover;
}

#body_facility #topimage {
  background: url(../img/h1_facility.jpg) center center no-repeat;
  background-size: cover;
}

#body_member #topimage {
  background: url(../img/h1_member.jpg) center center no-repeat;
  background-size: cover;
}

#maincol h2 {
  margin: 0 0 1.6em;
  padding: 0;
  font-size: clamp(1.5rem, 0.2838266385rem + 2.5369978858vw, 2.25rem);
  font-family: "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  line-height: 1.2;
  color: rgb(164, 34, 20);
  text-align: center;
  font-weight: normal;
  letter-spacing: 2px;
}
#maincol h2 small {
  font-size: 1rem;
  display: block;
  color: #666;
  margin-top: 0.5em;
}
#maincol h2::after {
  display: block;
  content: "";
  height: 1.5em;
  width: 1.5em;
  background: url(../img/h2.svg) no-repeat center center;
  background-size: contain;
  margin: 0.5em auto 0;
}

#maincol h3 {
  margin: 2em 0 1.5em;
  padding: 0;
  font-size: clamp(1.125rem, 0.5169133192rem + 1.2684989429vw, 1.5rem);
  font-family: "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  line-height: 1.2;
  text-align: center;
}
#maincol h3:after {
  content: "";
  width: 1.5em;
  border-top: 5px dotted rgb(164, 34, 20);
  height: 4px;
  padding: 0px 0;
  margin: 0.75em auto 0.75em;
  display: block;
}

#maincol p {
  margin: 0 0 1em;
}

hr.inner {
  padding: 0;
  border: 0;
  border-top: 1px solid rgb(164, 34, 20);
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.center {
  text-align: center !important;
}

.txtleft {
  text-align: left !important;
}

.txtright {
  text-align: right !important;
}

.clear {
  clear: both;
}

.small {
  font-size: 80%;
}

.large {
  font-size: 120%;
}

em, .red {
  color: rgb(230, 0, 18);
}

.blue {
  color: rgb(25, 88, 137);
}

.gray {
  color: gray;
}

.u_line {
  background: linear-gradient(transparent 40%, rgba(255, 255, 0, 0.5) 40%);
  padding-bottom: 0.2em;
}

a {
  text-decoration: none;
  color: rgb(25, 88, 137);
}
a:hover {
  color: rgb(164, 34, 20);
}

.linkbtn a {
  /*display:inline-flex;
  align-items:center;
  justify-content:center;*/
  display: inline-block;
  position: relative;
  padding: 0.5em 3em 0.5em 1em;
  margin: 0 1em 0.5em 0;
  transition: ease 0.2s;
  background-color: rgb(164, 34, 20);
  color: #FFF;
}
.linkbtn a:before {
  transition: ease 0.2s;
  content: "";
  margin: 0 0;
  padding: 0;
  top: 50%;
  bottom: 50%;
  right: 0.5em;
  position: absolute;
  height: 1em;
  width: 1em;
  background: url(../img/arrow.svg) no-repeat center center;
  background-size: 1em;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 992px) {
  .linkbtn a:hover {
    padding-right: 4em;
    margin-right: 0px;
    background-color: rgb(181, 141, 34);
  }
}

.tel-phone {
  font-weight: bold;
  font-size: 1.5rem;
  color: rgb(164, 34, 20);
  font-family: Trebuchet MS, Century Gothic;
}
@media screen and (min-width: 992px) {
  .tel-phone:before {
    content: "";
    width: 1.25em;
    height: 1.25em;
    display: inline-block;
    background: url(../img/tel_phone.svg) no-repeat center center;
    background-size: 1.25em;
    margin: 0 0 0;
    vertical-align: middle;
  }
}
@media screen and (max-width: 767px) {
  .tel-phone a {
    display: inline-block;
    position: relative;
    padding: 0.5em 1em 0.5em 2.5em;
    margin: 0 1em 0.5em 0;
    background-color: rgb(164, 34, 20);
    color: #FFF;
  }
  .tel-phone a:before {
    content: "";
    margin: 0 0;
    padding: 0;
    top: 50%;
    bottom: 50%;
    left: 0.5em;
    position: absolute;
    height: 1.5em;
    width: 1.5em;
    background: url(../img/tel_phone.svg) no-repeat center center;
    background-size: 1.5em;
    transform: translate(0%, -50%);
  }
}

a.pdf::after,
a.doc::after,
a.xls::after {
  display: inline-block;
  content: "";
  border-radius: 20px;
  font-size: 70%;
  padding: 3px 8px;
  line-height: 1;
  margin-left: 0.2em;
  background-color: #FFF;
  border: solid 1px #000;
}

a.pdf {
  position: relative;
}
a.pdf::after {
  content: "PDF";
  border-color: red;
  color: red;
}

a.doc {
  position: relative;
}
a.doc::after {
  content: "Word";
  border-color: blue;
  color: blue;
}

a.xls {
  position: relative;
}
a.xls::after {
  content: "Excel";
  border-color: green;
  color: green;
}

a.blank {
  position: relative;
  padding-right: 1.2em;
}
a.blank::after {
  content: "　";
  display: inline-block;
  margin: 0 0 0 3px;
  width: 14px;
  background-image: url("../img/blank.svg");
  background-repeat: no-repeat;
  background-size: 14px;
  background-position: center;
}

.chui {
  text-indent: -1em;
  padding-left: 1em;
}

.chui:before {
  content: "※";
  font-family: sans-serif;
}

.chui_ol {
  list-style: none;
  margin: 0 0 1em;
  padding: 0;
  counter-reset: number;
}
.chui_ol li {
  margin: 0 0 0.25em;
  padding: 0 0 0 2em;
  text-indent: -1em;
}
.chui_ol li:before {
  counter-increment: number;
  content: "※" counter(number);
  display: inline-block;
  margin-right: 0.5em;
}

.chui_ul {
  list-style: none;
  margin: 0 0 1em;
  padding: 0;
}
.chui_ul li {
  margin: 0 0 0.25em;
  text-indent: -1em;
  padding-left: 1em;
}
.chui_ul li:before {
  content: "※";
}

.policy dt {
  margin: 0 0 0.5em;
  font-weight: bold;
}
.policy dd {
  margin: 0 0 0.5em 2em;
}

.leadcopy {
  font-size: 120%;
}
@media screen and (min-width: 992px) {
  .leadcopy {
    text-align: center;
  }
}

.price strong {
  font-size: 150%;
  display: inline-block;
  margin-right: 0.1em;
}
.contents_list {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
}
@media screen and (min-width: 992px) {
  .contents_list {
    flex-wrap: no-wrap;
  }
}
.contents_list a {
  flex-grow: 2;
}

/**/
ul.swiper-wrapper {
  list-style: none;
  margin: 0 0 90px 0;
  padding: 0 0 0px 0;
  align-items: stretch !important;
  flex-wrap: no-wrap;
}
ul.swiper-wrapper li {
  background-color: rgb(255, 255, 255);
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.1);
  margin: 0 0;
  padding: 0;
  height: auto;
}
ul.swiper-wrapper li a, ul.swiper-wrapper li div {
  padding: 0 0px 20px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  width: 100%;
  overflow: hidden;
  position: relative;
}
ul.swiper-wrapper li span {
  padding: 10px 1em;
}
ul.swiper-wrapper li .item_image {
  padding: 0;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 3/2;
}
ul.swiper-wrapper li .item_image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: 0.5s;
  transform: scale(1);
}
ul.swiper-wrapper li .item_title {
  font-weight: bold;
}
ul.swiper-wrapper li .item_text {
  font-size: 90%;
}
ul.swiper-wrapper li .item_date {
  align-self: start;
}
ul.swiper-wrapper li a:hover .item_image img {
  transform: scale(1.05);
}
ul.swiper-wrapper a::after {
  content: "more";
  font-size: 12px;
  background-color: rgb(164, 34, 20);
  color: #FFF;
  border-radius: 3px;
  padding: 1px 10px;
  position: absolute;
  bottom: 10px;
  right: 10px;
}
ul.swiper-wrapper.plan_list {
  flex-wrap: wrap;
  gap: 30px 2%;
}
ul.swiper-wrapper.plan_list li {
  width: 48%;
}
@media screen and (min-width: 992px) {
  ul.swiper-wrapper.plan_list li {
    width: 32%;
  }
}
@media screen and (max-width: 767px) {
  ul.swiper-wrapper.plan_list li .item_image img {
    object-fit: contain;
  }
}

.index {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin: 30px 0 60px;
}
@media screen and (max-width: 767px) {
  .index {
    flex-direction: column;
  }
}
.index .content {
  background: rgba(255, 255, 255, 0.9) url(../img/article_back.svg) no-repeat bottom left;
  background-size: 240px;
  padding: 1em 2em;
  margin: 0 -10% 0% 0%;
  z-index: 5;
  width: 50%;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .index .content {
    margin: 0 0% 0% 0%;
    width: 100%;
  }
}
.index .content_photo {
  max-width: 720px;
  margin: 0;
  z-index: 1;
}

@media (min-width: 768px) {
  .fade_contents .index:nth-of-type(2n) .content {
    order: 2;
    margin: 0 0% 0% -10%;
  }
  .fade_contents .index:nth-of-type(2n) .content_photo {
    order: 1;
  }
}
.tokuten {
  align-items: stretch;
  background-color: #FFF;
  box-shadow: 5px 8px 20px rgba(0, 0, 0, 0.3);
}
.tokuten .content {
  margin: 0;
}
.tokuten .content_photo {
  width: 50%;
  flex-shrink: 0;
  line-height: 0;
}
@media screen and (max-width: 767px) {
  .tokuten .content_photo {
    margin: 0 0% 0% 0%;
    width: 100%;
  }
}
.tokuten .content_photo img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.hall .content {
  margin: 0 20px 20px 0;
  flex-shrink: 0;
  width: auto;
  max-width: auto;
}
@media screen and (max-width: 767px) {
  .hall .content {
    margin: 0 0 20px 0;
    width: 100%;
  }
}
.hall .content_photo {
  margin: 0 auto;
  flex-shrink: 2;
}
@media screen and (max-width: 767px) {
  .hall .content_photo {
    width: 100%;
  }
}
.hall .content_photo ul.hall_swiper {
  margin: 0 auto;
}
.hall .content_photo ul.hall_swiper li {
  background-color: rgba(255, 255, 255, 0);
  box-shadow: none;
  margin: 0 0;
  padding: 0;
  height: auto;
  line-height: 0.1;
}
.hall .content_photo .hall_pagination {
  text-align: center;
}

table.default {
  border-collapse: collapse;
  min-width: 80%;
  margin: 0 auto 15px;
  border-top: 1px solid rgb(181, 141, 34);
  border-left: 1px solid rgb(181, 141, 34);
}
table.default th, table.default td {
  padding: 0.5em 1em;
  font-weight: normal;
  border-bottom: 1px solid rgb(181, 141, 34);
  border-right: 1px solid rgb(181, 141, 34);
}
table.default th {
  font-weight: bold;
  background-color: rgba(164, 34, 20, 0.05);
}
table.default td {
  background-color: #FFF;
}
table.default thead th {
  text-align: center;
}
table.default tbody th {
  text-align: left;
  vertical-align: top;
}

@media screen and (max-width: 767px) {
  table.cellblock tr {
    display: block;
  }
  table.cellblock th, table.cellblock td {
    display: block;
    padding: 0.5em;
  }
  .scroll {
    overflow: auto;
    margin: 0 0 2em;
  }
  .scroll table {
    position: relative;
    width: auto;
  }
  .scroll th, .scroll td {
    white-space: nowrap;
  }
}
dl.dl_default div {
  margin: 0 0 1em 0em;
}
dl.dl_default dt {
  margin: 0 0 0.5em;
  padding: 0 0 0 1em;
  position: relative;
}
dl.dl_default dt:before {
  content: "";
  height: 0.5em;
  width: 0.5em;
  border-radius: 20px;
  background-color: rgb(51, 51, 51);
  position: absolute;
  top: 0.5em;
  left: 0;
}
dl.dl_default dd {
  margin: 0 0 0.5em 2em;
}

ul.ul_default {
  list-style: none;
  margin: 1em 0;
  padding: 0 0 0 1em;
}
ul.ul_default li {
  margin: 0 0 0.5em;
  padding: 0 0 0 1em;
  position: relative;
}
ul.ul_default li:before {
  content: "";
  height: 0.5em;
  width: 0.5em;
  border-radius: 20px;
  background-color: rgb(181, 141, 34);
  position: absolute;
  top: 0.5em;
  left: 0;
}

.amenity_list {
  margin: 0 0 20px;
  padding: 20px 5%;
  background-color: #FFF;
  box-shadow: 5px 8px 20px rgba(0, 0, 0, 0.3);
}
.amenity_list ul {
  list-style: none;
  margin: 1em 0;
  padding: 0 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
}

.point_image {
  display: flex;
  list-style: none;
  gap: 20px;
  justify-content: center;
  margin: 20px 0;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .point_image {
    flex-wrap: wrap;
  }
}
.point_image li {
  background-color: #FFF;
  margin: 0;
  padding: 20px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 110%;
  width: 30%;
}
@media screen and (max-width: 767px) {
  .point_image li {
    width: 75%;
  }
}
.point_image img {
  width: 50%;
  margin: auto;
}

/*プラン
-------------------------------------------------------------*/
.plan_mainimage {
  text-align: center;
}
.plan_mainimage img {
  box-shadow: 5px 8px 20px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
}

.plan_data {
  margin: 30px 0px;
}
.plan_data dt {
  margin: 0 0 0 0;
  padding: 0.5em;
  background-color: rgba(164, 34, 20, 0.05);
  color: rgb(164, 34, 20);
}
.plan_data dd {
  margin: 0 0 0 0;
  padding: 0.5em;
}
@media screen and (min-width: 992px) {
  .plan_data div {
    display: flex;
    align-items: start;
    padding: 5px 0;
  }
  .plan_data dt {
    width: 20%;
    border-radius: 20px;
    text-align: center;
  }
  .plan_data dd {
    width: 80%;
  }
}

.plan_yoyaku_btn {
  background-color: #FFF;
  padding: 5%;
  box-shadow: 5px 8px 20px rgba(0, 0, 0, 0.3);
}
.plan_yoyaku_btn div {
  margin: 0;
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .plan_yoyaku_btn div {
    flex-direction: column;
    align-items: flex-start;
  }
}
.plan_yoyaku_btn dt {
  margin: 0 0 0;
  padding: 0 0 0 1em;
  width: 12em;
  position: relative;
}
.plan_yoyaku_btn dt:before {
  content: "";
  height: 0.5em;
  width: 0.5em;
  border-radius: 20px;
  background-color: rgb(181, 141, 34);
  position: absolute;
  top: 0.5em;
  left: 0;
}
.plan_yoyaku_btn dd {
  margin: 0;
  padding: 0;
  flex-grow: 2;
}
.plan_yoyaku_btn dd a {
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .plan_yoyaku_btn a {
    min-width: 80%;
  }
}

.member a {
  background-color: rgb(181, 141, 34);
}

/*ランチ
-------------------------------------------------------------*/
.todaysmenu {
  font-size: 1.1em;
}

.todayspoint {
  font-size: 80%;
  padding: 2px 5px;
  border-radius: 4px;
  color: #FFF;
  background-color: rgb(181, 141, 34);
}

p .todayspoint {
  display: inline-block;
}

dl.lunchlist div {
  margin: 0 0 0;
  padding: 10px;
  display: flex;
  gap: 2%;
  justify-content: space-between;
  border-bottom: 1px dotted rgb(181, 141, 34);
}
@media screen and (max-width: 767px) {
  dl.lunchlist div {
    flex-direction: column;
  }
}
dl.lunchlist dt {
  width: 28%;
  margin: 0;
  font-weight: bold;
  display: flex;
  gap: 1em;
  align-items: flex-start;
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  dl.lunchlist dt {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 767px) {
  dl.lunchlist dt {
    width: 100%;
  }
}
dl.lunchlist dt span {
  flex-shrink: 0;
}
dl.lunchlist dt span.todayspoint {
  flex-shrink: 2;
}
dl.lunchlist dd {
  width: 70%;
  margin: 0;
}
@media screen and (max-width: 767px) {
  dl.lunchlist dd {
    width: 100%;
  }
}
dl.lunchlist .todays_sat {
  color: rgb(25, 88, 137);
}
dl.lunchlist .todays_sun,
dl.lunchlist .todays_week_sun {
  color: rgb(230, 0, 18);
}
dl.lunchlist .todays_red {
  color: rgb(230, 0, 18);
}

/*組合員
-------------------------------------------------------------*/
.example {
  background-color: rgba(164, 34, 20, 0.05);
  background-color: #FFF;
  padding: 1em 5%;
  border: rgb(181, 141, 34) solid 1px;
  margin: 0 0 1em;
  border-radius: 4px;
}
.example .riyohojo {
  display: flex;
  align-items: center;
}
.example .yajirusi {
  display: inline-block;
  vertical-align: middle;
  color: rgb(25, 88, 137);
  line-height: 1;
  position: relative;
  font-size: 0;
  width: 15px;
  height: 10px;
  background: currentColor;
  margin: 0 15px 0 10px;
}
.example .yajirusi::before {
  content: "";
  border-style: solid;
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent currentColor;
  position: absolute;
  top: -5px;
  right: -10px;
  box-sizing: border-box;
}
.example .hojokin {
  background-color: rgb(25, 88, 137);
  border-radius: 2em;
  padding: 5px 10px;
  color: #FF0;
}

/*form
-------------------------------------------------------------*/
dl.dl_form {
  margin: 0 auto 1em;
}
dl.dl_form div {
  margin: 0px 0;
  padding: 20px 1em;
}
dl.dl_form dt {
  font-weight: bold;
  margin: 0 0 10px;
  background-color: rgb(240, 240, 240);
  padding: 0.25em 0.5em;
}
dl.dl_form dd {
  margin: 0 0 10px;
}
dl.dl_form.check dt {
  color: #999;
}
dl.dl_form.check dd {
  border-bottom: solid 1px rgb(181, 141, 34);
  padding: 0 0 0.5em;
}
dl.dl_form .any:before,
dl.dl_form .req:before {
  content: "";
  font-weight: normal;
  font-size: 70%;
  border-radius: 6px;
  padding: 3px 2px 2px;
  display: inline-block;
  line-height: 1;
  width: 3em;
  text-align: center;
  margin-right: 0.5em;
}
dl.dl_form .any:before {
  content: "任意";
  border: 1px solid rgb(0, 138, 255);
  color: rgb(0, 138, 255);
}
dl.dl_form .req:before {
  content: "必須";
  color: rgb(230, 0, 18);
  border: solid 1px rgb(230, 0, 18);
}
dl.dl_form input.hiragana,
dl.dl_form textarea {
  width: 100%;
}
dl.dl_form textarea {
  height: 10em;
}
dl.dl_form input.numeric {
  width: 10em;
}
dl.dl_form input.alpha {
  width: 70%;
}
dl.dl_form input[type=date] {
  width: 50% !important;
  max-width: 240px;
}
@media screen and (max-width: 767px) {
  dl.dl_form input[type=date] {
    width: 100% !important;
    max-width: 360px;
  }
}
dl.dl_form input[type=date]::before {
  content: "日付を選択する";
  font-size: 12px;
  white-space: nowrap;
}

.mail_error {
  display: block;
  color: rgb(230, 0, 18);
  font-size: 90%;
}

.mail_error:before {
  content: "* ";
}

.form_wrap {
  max-width: 800px;
  padding: 5%;
  margin: auto;
  background-color: #FFF;
}

.form_wrap input,
.form_wrap button,
.form_wrap select,
.form_wrap textarea,
#booking_inner input,
#booking_inner button,
#booking_inner select,
#booking_inner textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  outline: none;
  font-size: 16px;
}
.form_wrap label,
#booking_inner label {
  display: inline-block;
  padding: 0 20px;
}
.form_wrap input[type=text],
.form_wrap input[type=email],
.form_wrap input[type=tel],
.form_wrap input[type=date],
.form_wrap textarea,
#booking_inner input[type=text],
#booking_inner input[type=email],
#booking_inner input[type=tel],
#booking_inner input[type=date],
#booking_inner textarea {
  box-sizing: border-box;
  padding: 8px;
  margin: 0 0 5px;
  border: 1px solid #999;
  border-radius: 5px;
  background-color: rgb(255, 255, 255);
}
.form_wrap input, .form_wrap textarea,
#booking_inner input,
#booking_inner textarea {
  font-size: 16px;
}
.form_wrap input::placeholder,
#booking_inner input::placeholder {
  font-size: 80%;
}
.form_wrap input.submitbtn,
.form_wrap input.button,
#booking_inner input.submitbtn,
#booking_inner input.button {
  display: inline-block;
  margin: 0.5em 0.5em;
  font-size: 1rem;
  cursor: pointer;
  padding: 15px 10%;
  border-radius: 5px;
  text-align: center;
  min-width: 240px;
  border-radius: 100px;
  transition: all 0.4s;
  color: #FFF;
  background: rgb(164, 34, 20);
}
.form_wrap input.submitbtn:hover,
.form_wrap input.button:hover,
#booking_inner input.submitbtn:hover,
#booking_inner input.button:hover {
  background: rgb(181, 141, 34);
}
.form_wrap input#submitshusei,
#booking_inner input#submitshusei {
  background: rgb(180, 180, 180);
}
.form_wrap input#submitshusei:hover,
#booking_inner input#submitshusei:hover {
  background: rgb(200, 200, 200);
}
.form_wrap input.button,
#booking_inner input.button {
  padding: 0.5em 1em;
  font-size: 0.8em;
}
.form_wrap input.yubin,
#booking_inner input.yubin {
  min-width: 0px;
  padding: 0.25em 0.5em;
  font-size: 0.8em;
}
@media screen and (max-width: 767px) {
  .form_wrap label.radio,
  #booking_inner label.radio {
    display: block;
  }
}

label.radio {
  cursor: pointer;
  position: relative;
  padding-left: 25px !important;
  margin-right: 20px;
  overflow: hidden;
  display: inline-block;
}

label.radio:before {
  position: absolute;
  width: 17px;
  height: 17px;
  border: 1px solid #999;
  border-radius: 50%;
  left: 0px;
  top: 4px;
  content: "";
  z-index: 3;
}

label.radio:after {
  content: "";
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 100%;
  left: 3px;
  top: 7px;
  background-color: rgb(230, 0, 18);
  z-index: 1;
}

label.radio input[type=radio] {
  -moz-appearance: none;
  -webkit-appearance: none;
  position: absolute;
  z-index: 2;
  width: 18px;
  height: 18px;
  left: -23px;
  top: 3px;
  margin: 0px;
  box-shadow: 22px 0px #FFF;
  border-radius: 50%;
}

label.radio input[type=radio]:required {
  box-shadow: 22px 0px rgb(252, 255, 225);
}

label.radio input[type=radio]:checked {
  box-shadow: none;
}

label.checkbox {
  cursor: pointer;
  position: relative;
  padding-left: 25px !important;
  padding-bottom: 5px !important;
  margin-right: 10px;
  overflow: hidden;
  display: inline-block;
  box-sizing: border-box;
  vertical-align: middle;
  line-height: 1.2em;
}

label.checkbox:before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  left: 0px;
  top: 0;
  border: 1px solid #999;
  border-radius: 3px;
  z-index: 3;
}

label.checkbox:after {
  content: "";
  position: absolute;
  top: 12px;
  left: 6px;
  display: block;
  margin-top: -8px;
  width: 8px;
  height: 12px;
  border-right: 3px solid rgb(230, 0, 18);
  border-bottom: 3px solid rgb(230, 0, 18);
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  z-index: 1;
}

label input[type=checkbox] {
  -moz-appearance: none;
  -webkit-appearance: none;
  position: absolute;
  left: -40px;
  width: 20px;
  height: 20px;
  display: block;
  box-shadow: 41px 0px #FFF;
  z-index: 2;
  margin: 0px;
  padding: 0px;
}

label input[type=checkbox]:checked {
  box-shadow: none;
}

.select {
  overflow: hidden;
  text-align: center;
  display: inline-block;
  position: relative;
  background-color: rgb(255, 255, 255);
  border: solid 1px rgb(51, 51, 51);
  border-radius: 5px;
  padding: 0;
  color: rgb(51, 51, 51);
  vertical-align: middle;
}

.select select {
  cursor: pointer;
  text-overflow: ellipsis;
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
  padding: 6px 24px 6px 12px;
  font-size: 16px;
}

.select select::-ms-expand {
  display: none;
}

.select::before {
  position: absolute;
  top: 45%;
  right: 7%;
  width: 0;
  height: 0;
  padding: 0;
  content: "";
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid rgb(164, 34, 20);
  pointer-events: none;
}

#step {
  display: flex;
  justify-content: center;
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
  /* active */
}
#step li {
  position: relative;
  width: 33%;
  text-align: center;
  padding: 0px 0;
  margin: 0 0 0 2px;
  background: rgb(200, 200, 200);
  color: #FFF;
  height: 36px;
  line-height: 36px;
  font-weight: bold;
}
#step li:not(:last-child)::before,
#step li:not(:last-child)::after {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  left: 100%;
  content: "";
  border: 18px solid transparent;
  border-left: 18px solid rgb(200, 200, 200);
  margin: auto;
}
#step li:not(:last-child)::before {
  margin-left: 2px;
  border-left-color: rgb(255, 255, 255);
}
#step li.current {
  background: rgb(164, 34, 20);
}
#step li.current:not(:last-child)::after {
  border-left-color: rgb(164, 34, 20);
}

.iframe {
  margin: 30px auto;
}
.iframe iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  max-width: 720px;
  display: block;
  margin: auto;
}

.gmap {
  width: 100%;
  height: 400px;
}

@media screen and (max-width: 767px) {
  .sp {
    display: block;
  }
  .sp_none {
    display: none;
  }
  .pc {
    display: none;
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .pc {
    display: block;
  }
  .sp {
    display: none;
  }
  .tab_none {
    display: none;
  }
}
@media screen and (min-width: 992px) {
  .pc {
    display: block;
  }
  .pc_none {
    display: none;
  }
  .sp {
    display: none;
  }
  .left {
    float: left;
  }
  .right {
    float: right;
  }
  .flex_box {
    display: flex;
  }
}

/*# sourceMappingURL=base.css.map */
