@charset "UTF-8";
.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1055;
  display: none;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none;
}
.modal.fade .modal-dialog {
  transition: transform 0.3s ease-out;
  transform: translate(0, -50px);
}
@media (prefers-reduced-motion: reduce) {
  .modal.fade .modal-dialog {
    transition: none;
  }
}
.modal.show .modal-dialog {
  transform: none;
}
.modal.modal-static .modal-dialog {
  transform: scale(1.02);
}

.modal-dialog-scrollable {
  height: calc(100% - 1rem);
}
.modal-dialog-scrollable .modal-content {
  max-height: 100%;
  overflow: hidden;
}
.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}

.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - 1rem);
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
  outline: 0;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.modal-backdrop.fade {
  opacity: 0;
}
.modal-backdrop.show {
  opacity: 0.5;
}

.modal-header {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1rem;
  border-bottom: 1px solid #dee2e6;
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}
.modal-header .btn-close {
  padding: 0.5rem 0.5rem;
  margin: -0.5rem -0.5rem -0.5rem auto;
}

.modal-title {
  margin-bottom: 0;
  line-height: 1.5;
}

.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 1rem;
}

.modal-footer {
  display: flex;
  flex-wrap: wrap;
  flex-shrink: 0;
  align-items: center;
  justify-content: flex-end;
  padding: 0.75rem;
  border-top: 1px solid #dee2e6;
  border-bottom-right-radius: calc(0.3rem - 1px);
  border-bottom-left-radius: calc(0.3rem - 1px);
}
.modal-footer > * {
  margin: 0.25rem;
}

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }

  .modal-dialog-scrollable {
    height: calc(100% - 3.5rem);
  }

  .modal-dialog-centered {
    min-height: calc(100% - 3.5rem);
  }

  .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 1000px) {
  .modal-lg,
.modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1280px) {
  .modal-xl {
    max-width: 1140px;
  }
}
.modal-fullscreen {
  width: 100vw;
  max-width: none;
  height: 100%;
  margin: 0;
}
.modal-fullscreen .modal-content {
  height: 100%;
  border: 0;
  border-radius: 0;
}
.modal-fullscreen .modal-header {
  border-radius: 0;
}
.modal-fullscreen .modal-body {
  overflow-y: auto;
}
.modal-fullscreen .modal-footer {
  border-radius: 0;
}

@media (max-width: 575.98px) {
  .modal-fullscreen-sm-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-sm-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-sm-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-sm-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-sm-down .modal-footer {
    border-radius: 0;
  }
}
@media (max-width: 859.98px) {
  .modal-fullscreen-md-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-md-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-md-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-md-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-md-down .modal-footer {
    border-radius: 0;
  }
}
@media (max-width: 999.98px) {
  .modal-fullscreen-lg-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-lg-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-lg-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-lg-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-lg-down .modal-footer {
    border-radius: 0;
  }
}
@media (max-width: 1279.98px) {
  .modal-fullscreen-xl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-xl-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-xl-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-xl-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-xl-down .modal-footer {
    border-radius: 0;
  }
}
@media (max-width: 1399.98px) {
  .modal-fullscreen-xxl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-xxl-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-xxl-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-xxl-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-xxl-down .modal-footer {
    border-radius: 0;
  }
}
.nav {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.nav-link {
  display: block;
  padding: 0.5rem 1rem;
  color: #0d6efd;
  text-decoration: none;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .nav-link {
    transition: none;
  }
}
.nav-link:hover, .nav-link:focus {
  color: #0a58ca;
}
.nav-link.disabled {
  color: #6c757d;
  pointer-events: none;
  cursor: default;
}

.nav-tabs {
  border-bottom: 1px solid #dee2e6;
}
.nav-tabs .nav-link {
  margin-bottom: -1px;
  background: none;
  border: 1px solid transparent;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}
.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
  border-color: #e9ecef #e9ecef #dee2e6;
  isolation: isolate;
}
.nav-tabs .nav-link.disabled {
  color: #6c757d;
  background-color: transparent;
  border-color: transparent;
}
.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
  color: #495057;
  background-color: #fff;
  border-color: #dee2e6 #dee2e6 #fff;
}
.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.nav-pills .nav-link {
  background: none;
  border: 0;
  border-radius: 0.25rem;
}
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #fff;
  background-color: #0d6efd;
}

.nav-fill > .nav-link,
.nav-fill .nav-item {
  flex: 1 1 auto;
  text-align: center;
}

.nav-justified > .nav-link,
.nav-justified .nav-item {
  flex-basis: 0;
  flex-grow: 1;
  text-align: center;
}

.nav-fill .nav-item .nav-link,
.nav-justified .nav-item .nav-link {
  width: 100%;
}

.tab-content > .tab-pane {
  display: none;
}
.tab-content > .active {
  display: block;
}

/*------------------------------------------------------------
	デフォルトスタイル
------------------------------------------------------------*/
* {
  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 {
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  outline: 0;
  font-size: 1em;
  line-height: 2;
}

html {
  font-size: 62.5%;
}

body {
  font-family: "游ゴシック", "游ゴシック体", "Yu Gothic", YuGothic, "Yu Gothic medium", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.6rem;
  color: #000;
}

/*
body, table, input, textarea, select, option {
    font-family: $font-family-sans-serif;
}
article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
    display: block;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
:focus {
    outline: 0;
}
ins {
    text-decoration: none;
}
del {
    text-decoration: line-through;
}
img {
    vertical-align: top;
    max-width: 100%;
    height: auto;
}

*/
@media (max-width: 859.98px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media (max-width: 859.98px) {
  .sp {
    display: block;
  }
}

@media (max-width: 859.98px) {
  br.pc {
    display: none;
  }
}
br.sp {
  display: none;
}
@media (max-width: 859.98px) {
  br.sp {
    display: block;
  }
}

a {
  color: #000;
  text-decoration: none;
}
@media (max-width: 999.98px) {
  a:hover {
    opacity: 1 !important;
  }
  a:hover img {
    opacity: 1 !important;
  }
}

.site-main {
  margin-bottom: 200px;
}
@media (max-width: 859.98px) {
  .site-main {
    margin-bottom: 36px;
  }
}

.container-sss {
  width: 100%;
  max-width: 652px;
  margin: auto;
}
@media (max-width: 999.98px) {
  .container-sss {
    padding: 0 20px;
  }
}
@media (max-width: 859.98px) {
  .container-sss {
    padding: 0;
  }
}
.container-ss {
  width: 100%;
  max-width: 734px;
  margin: auto;
}
@media (max-width: 999.98px) {
  .container-ss {
    padding: 0 20px;
  }
}
@media (max-width: 859.98px) {
  .container-ss {
    padding: 0;
  }
}
.container-s {
  width: 100%;
  max-width: 820px;
  margin: auto;
}
@media (max-width: 999.98px) {
  .container-s {
    padding: 0 20px;
  }
}
@media (max-width: 859.98px) {
  .container-s {
    padding: 0;
  }
}
.container-m {
  width: 100%;
  max-width: 968px;
  margin: auto;
}
@media (max-width: 999.98px) {
  .container-m {
    padding: 0 20px;
  }
}
@media (max-width: 859.98px) {
  .container-m {
    max-width: 100%;
    padding: 0;
  }
}

.row {
  flex-wrap: wrap;
  display: flex;
}

.common-news {
  padding: 60px 0;
}
.common-news-row {
  flex-wrap: wrap;
  display: flex;
}
@media (max-width: 859.98px) {
  .common-news-row {
    padding: 0 36px;
  }
}
.common-news-col {
  flex: 0 0 20%;
}
@media (max-width: 859.98px) {
  .common-news-col {
    flex: 0 0 100%;
  }
}
.common-news-col:last-of-type {
  flex: 0 0 80%;
}
@media (max-width: 859.98px) {
  .common-news-col:last-of-type {
    flex: 0 0 100%;
  }
}
.common-news-header h2 {
  margin-bottom: 20px;
  font-family: "Times New Roman", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 24px;
  font-weight: 400;
}
@media (max-width: 859.98px) {
  .common-news-header h2 {
    margin-bottom: 10px;
    font-size: 2rem;
    letter-spacing: 0.03em;
    line-height: 1;
  }
}
@media (max-width: 859.98px) {
  .common-news-header .btn-more {
    display: none;
  }
}
.common-news-footer {
  display: none;
}
@media (max-width: 859.98px) {
  .common-news-footer {
    margin-top: 20px;
    text-align: right;
    display: block;
  }
}

.section {
  padding: 80px 0;
}
@media (max-width: 859.98px) {
  .section {
    padding: 40px 0;
  }
}
.section-header {
  margin-bottom: 70px;
}
@media (max-width: 859.98px) {
  .section-header {
    margin-bottom: 20px;
  }
}
.section-header h2 {
  font-family: "Times New Roman", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 38px;
  text-align: center;
  text-transform: uppercase;
}
@media (max-width: 859.98px) {
  .section-header h2 {
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 0.03em;
  }
}
.section-footer {
  padding: 70px 0;
}
@media (max-width: 859.98px) {
  .section-footer {
    padding: 30px 0;
  }
}

.menu-ul {
  margin-left: -10px;
  margin-right: -10px;
  list-style: none;
  flex-wrap: wrap;
  display: flex;
}
@media (max-width: 859.98px) {
  .menu-ul {
    padding: 0 36px;
    margin: 0;
  }
}
.menu-li {
  padding: 0 10px;
  flex: 0 0 33.33333%;
}
@media (max-width: 859.98px) {
  .menu-li {
    flex: 0 0 100%;
    padding: 0;
    margin-bottom: 24px;
  }
}
.menu-box {
  width: 100%;
  height: 432px;
  overflow: hidden;
}
@media (max-width: 859.98px) {
  .menu-box {
    height: 176px;
  }
}
.menu-box a {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  transition: 0.3s;
  transform: scale(1);
  display: table;
}
@media (max-width: 859.98px) {
  .menu-box a {
    background-size: cover;
    background-position: center;
  }
}
.menu-box a:hover {
  transform: scale(1.01);
  opacity: 0.8;
  filter: alpha(opacity=80);
}
.menu-box a:hover span {
  color: #000;
}
.menu-box span {
  font-family: "Times New Roman", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 26px;
  text-align: center;
  text-shadow: 0 0 4px rgba(0, 3, 3, 0.3);
  color: #fff;
  vertical-align: middle;
  display: table-cell;
}
@media (max-width: 859.98px) {
  .menu-box span {
    font-size: 18px;
    letter-spacing: 0.03em;
  }
}

.sub-navigation {
  padding: 60px 0 40px;
  margin-bottom: 100px;
  background-size: cover;
  background-repeat: no-repeat;
}
.sub-ul {
  margin-left: -10px;
  margin-right: -10px;
  list-style: none;
  flex-wrap: wrap;
  display: flex;
}
.sub-li {
  padding: 0 10px;
  margin-bottom: 20px;
  text-align: center;
  flex: 0 0 50%;
}
.sub-li a {
  padding: 13px;
  font-family: "Times New Roman", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 18px;
  color: #fff;
  border: 1px solid #fff;
  transition: 0.3s;
  display: block;
}

.center .header-contact {
  background-color: #000;
}
.center .site-footer .btn-faq {
  display: none;
}

.stay-child .footer-obi-col,
.stay .footer-obi-col,
.community-child .footer-obi-col,
.community .footer-obi-col,
.hall-child .footer-obi-col,
.hall .footer-obi-col {
  flex: 0 0 45%;
}
.stay-child .footer-obi-col:last-of-type,
.stay .footer-obi-col:last-of-type,
.community-child .footer-obi-col:last-of-type,
.community .footer-obi-col:last-of-type,
.hall-child .footer-obi-col:last-of-type,
.hall .footer-obi-col:last-of-type {
  flex: 0 0 55%;
}
.stay-child .footer-form,
.stay .footer-form,
.community-child .footer-form,
.community .footer-form,
.hall-child .footer-form,
.hall .footer-form {
  margin-top: -13px;
}
.stay-child .footer-navigation,
.stay .footer-navigation,
.community-child .footer-navigation,
.community .footer-navigation,
.hall-child .footer-navigation,
.hall .footer-navigation {
  background-color: #e5e5e5;
}
.stay-child .archive-news,
.stay .archive-news,
.community-child .archive-news,
.community .archive-news,
.hall-child .archive-news,
.hall .archive-news {
  margin-bottom: 200px;
}
.stay-child .site-footer .btn-faq,
.stay .site-footer .btn-faq,
.community-child .site-footer .btn-faq,
.community .site-footer .btn-faq,
.hall-child .site-footer .btn-faq,
.hall .site-footer .btn-faq {
  display: inline-block;
}

.btn-download {
  min-width: 212px;
  padding: 12px 20px;
  font-size: 1.6rem;
  font-weight: 500;
  text-align: center;
  line-height: 1;
  color: #fff;
  transition: 0.5s;
  display: inline-block;
}
@media (max-width: 859.98px) {
  .btn-download {
    width: 100%;
  }
}
.btn-download:hover {
  opacity: 0.7;
}
.btn-download small {
  margin-top: 5px;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1;
  display: block;
}
.hall-child .btn-download {
  margin-bottom: 60px;
  background-color: #930E0E;
}
.community-child .btn-download {
  background-color: #006284;
}
.stay-child .btn-download {
  background-color: #E9C46A;
}

.text-red {
  color: #DE0C0A;
}
.text-gray {
  color: #707070;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}

.wp-block-image img {
  width: auto;
  height: auto;
}

input:-webkit-autofill {
  box-shadow: 0 0 0 1000px white inset;
}

#totop {
  position: fixed;
  bottom: 50px;
  right: 50px;
  cursor: pointer;
  transition: 0.3s;
}
@media (max-width: 859.98px) {
  #totop {
    display: none !important;
  }
}
#totop:hover {
  opacity: 0.7;
}

/*!------------------------------------*\
    Base
\*!------------------------------------*/
.drawer-open {
  overflow: hidden !important;
}

.drawer-nav {
  position: fixed;
  z-index: 101;
  top: 0;
  overflow: hidden;
  width: 100%;
  height: 100%;
  color: #707070;
  background-color: #fff;
}

.drawer-brand {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 3.75rem;
  display: block;
  padding-right: 0.75rem;
  padding-left: 0.75rem;
  text-decoration: none;
  color: #707070;
}

.drawer-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.drawer-menu-item {
  font-size: 1rem;
  display: block;
  padding: 0.75rem;
  text-decoration: none;
  color: #707070;
}

.drawer-menu-item:hover {
  text-decoration: underline;
  color: #555;
  background-color: transparent;
}

/*! overlay */
.drawer-overlay {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
}

.drawer-open .drawer-overlay {
  display: block;
}

/*!------------------------------------*\
    Top
\*!------------------------------------*/
.drawer--top .drawer-nav {
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  max-height: 100%;
  transition: top 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.drawer--top.drawer-open .drawer-nav {
  top: 0;
}

.drawer--top .drawer-hamburger,
.drawer--top.drawer-open .drawer-hamburger {
  right: 0;
}

/*!------------------------------------*\
    Left
\*!------------------------------------*/
.drawer--left .drawer-nav {
  left: -100%;
  transition: left 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.drawer--left.drawer-open .drawer-nav,
.drawer--left .drawer-hamburger,
.drawer--left.drawer-open .drawer-navbar .drawer-hamburger {
  left: 0;
}

.drawer--left.drawer-open .drawer-hamburger {
  left: 100%;
}

/*!------------------------------------*\
    Right
\*!------------------------------------*/
.drawer--right .drawer-nav {
  right: -100%;
  transition: right 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.drawer--right.drawer-open .drawer-nav,
.drawer--right .drawer-hamburger,
.drawer--right.drawer-open .drawer-navbar .drawer-hamburger {
  right: 0;
}

.drawer--right.drawer-open .drawer-hamburger {
  right: 100%;
}

/*!------------------------------------*\
    Hamburger
\*!------------------------------------*/
.drawer-hamburger {
  position: fixed;
  z-index: 104;
  top: 0;
  display: block;
  box-sizing: content-box;
  width: 2rem;
  padding: 0;
  padding-top: 18px;
  padding-right: 0.75rem;
  padding-bottom: 30px;
  padding-left: 0.75rem;
  transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transform: translate3d(0, 0, 0);
  border: 0;
  outline: 0;
  background-color: transparent;
}

.drawer-hamburger:hover {
  cursor: pointer;
  background-color: transparent;
}

.drawer-hamburger-icon {
  position: relative;
  display: block;
  margin-top: 10px;
}

.drawer-hamburger-icon,
.drawer-hamburger-icon:before,
.drawer-hamburger-icon:after {
  width: 100%;
  height: 2px;
  transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  background-color: #707070;
}

.drawer-hamburger-icon:before,
.drawer-hamburger-icon:after {
  position: absolute;
  top: -10px;
  left: 0;
  content: " ";
}

.drawer-hamburger-icon:after {
  top: 10px;
}

.drawer-open .drawer-hamburger-icon {
  background-color: transparent;
}

.drawer-open .drawer-hamburger-icon:before,
.drawer-open .drawer-hamburger-icon:after {
  top: 0;
}

.drawer-open .drawer-hamburger-icon:before {
  transform: rotate(45deg);
}

.drawer-open .drawer-hamburger-icon:after {
  transform: rotate(-45deg);
}

/*!------------------------------------*\
    accessibility
\*!------------------------------------*/
/*!
 * Only display content to screen readers
 * See: http://a11yproject.com/posts/how-to-hide-content
 */
.sr-only {
  position: absolute;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
}

/*!
 * Use in conjunction with .sr-only to only display content when it's focused.
 * Useful for "Skip to main content" links; see http://www.w3.org/TR/2013/NOTE-WCAG20-TECHS-20130905/G1
 * Credit: HTML5 Boilerplate
 */
.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  overflow: visible;
  clip: auto;
  width: auto;
  height: auto;
  margin: 0;
}

/*!------------------------------------*\
    Sidebar
\*!------------------------------------*/
.drawer--sidebar {
  background-color: #fff;
}

.drawer--sidebar .drawer-contents {
  background-color: #fff;
}

@media (min-width: 64em) {
  .drawer--sidebar .drawer-hamburger {
    display: none;
    visibility: hidden;
  }

  .drawer--sidebar .drawer-nav {
    display: block;
    transform: none;
    position: fixed;
    width: 12.5rem;
    height: 100%;
  }

  /*! Left */
  .drawer--sidebar.drawer--left .drawer-nav {
    left: 0;
    border-right: 1px solid #ddd;
  }

  .drawer--sidebar.drawer--left .drawer-contents {
    margin-left: 12.5rem;
  }

  /*! Right */
  .drawer--sidebar.drawer--right .drawer-nav {
    right: 0;
    border-left: 1px solid #ddd;
  }

  .drawer--sidebar.drawer--right .drawer-contents {
    margin-right: 12.5rem;
  }

  /*! container */
  .drawer--sidebar .drawer-container {
    max-width: 48rem;
  }
}
@media (min-width: 75em) {
  .drawer--sidebar .drawer-nav {
    width: 100%;
  }

  .drawer--sidebar.drawer--left .drawer-contents {
    margin-left: 100%;
  }

  .drawer--sidebar.drawer--right .drawer-contents {
    margin-right: 100%;
  }

  /*! container */
  .drawer--sidebar .drawer-container {
    max-width: 60rem;
  }
}
/*!------------------------------------*\
    Navbar
\*!------------------------------------*/
.drawer--navbarTopGutter {
  padding-top: 3.75rem;
}

.drawer-navbar .drawer-navbar-header {
  border-bottom: 1px solid #ddd;
  background-color: #fff;
}

.drawer-navbar {
  z-index: 102;
  top: 0;
  width: 100%;
}

/*! .drawer-navbar modifier */
.drawer-navbar--fixed {
  position: fixed;
}

.drawer-navbar-header {
  position: relative;
  z-index: 102;
  box-sizing: border-box;
  width: 100%;
  height: 3.75rem;
  padding: 0 0.75rem;
  text-align: center;
}

.drawer-navbar .drawer-brand {
  line-height: 3.75rem;
  display: inline-block;
  padding-top: 0;
  padding-bottom: 0;
  text-decoration: none;
}

.drawer-navbar .drawer-brand:hover {
  background-color: transparent;
}

.drawer-navbar .drawer-nav {
  padding-top: 3.75rem;
}

.drawer-navbar .drawer-menu {
  padding-bottom: 7.5rem;
}

@media (min-width: 64em) {
  .drawer-navbar {
    height: 3.75rem;
    border-bottom: 1px solid #ddd;
    background-color: #fff;
  }

  .drawer-navbar .drawer-navbar-header {
    position: relative;
    display: block;
    float: left;
    width: auto;
    padding: 0;
    border: 0;
  }

  .drawer-navbar .drawer-menu--right {
    float: right;
  }

  .drawer-navbar .drawer-menu li {
    float: left;
  }

  .drawer-navbar .drawer-menu-item {
    line-height: 3.75rem;
    padding-top: 0;
    padding-bottom: 0;
  }

  .drawer-navbar .drawer-hamburger {
    display: none;
  }

  .drawer-navbar .drawer-nav {
    position: relative;
    left: 0;
    overflow: visible;
    width: auto;
    height: 3.75rem;
    padding-top: 0;
    transform: translate3d(0, 0, 0);
  }

  .drawer-navbar .drawer-menu {
    padding: 0;
  }

  /*! dropdown */
  .drawer-navbar .drawer-dropdown-menu {
    position: absolute;
    width: 100%;
    border: 1px solid #ddd;
  }

  .drawer-navbar .drawer-dropdown-menu-item {
    padding-left: 0.75rem;
  }
}
/*!------------------------------------*\
    Dropdown
\*!------------------------------------*/
.drawer-dropdown-menu {
  display: none;
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  padding: 0;
  background-color: #fff;
}

.drawer-dropdown-menu > li {
  width: 100%;
  list-style: none;
}

.drawer-dropdown-menu-item {
  line-height: 3.75rem;
  display: block;
  padding: 0;
  padding-right: 0.75rem;
  padding-left: 1.5rem;
  text-decoration: none;
  color: #707070;
}

.drawer-dropdown-menu-item:hover {
  text-decoration: underline;
  color: #555;
  background-color: transparent;
}

/*! open */
.drawer-dropdown.open > .drawer-dropdown-menu {
  display: block;
}

/*! drawer-caret */
.drawer-dropdown .drawer-caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 4px;
  transition: transform 0.2s ease, opacity 0.2s ease;
  transform: rotate(0deg);
  vertical-align: middle;
  border-top: 4px solid;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}

/*! open */
.drawer-dropdown.open .drawer-caret {
  transform: rotate(180deg);
}

/*!------------------------------------*\
    Container
\*!------------------------------------*/
.drawer-container {
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 64em) {
  .drawer-container {
    max-width: 60rem;
  }
}
@media (min-width: 75em) {
  .drawer-container {
    max-width: 70rem;
  }
}
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: "";
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir=rtl] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Slider */
.slick-loading .slick-list {
  background: #fff url("./../images/common/ajax-loader.gif") center center no-repeat;
}

/* Icons */
@font-face {
  font-family: "slick";
  src: url("./fonts/slick.eot");
  src: url("./fonts/slick.eot?#iefix") format("embedded-opentype"), url("./fonts/slick.woff") format("woff"), url("./fonts/slick.ttf") format("truetype"), url("./fonts/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}
.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}
.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}
.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}
[dir=rtl] .slick-prev {
  left: auto;
  right: -25px;
}
.slick-prev:before {
  content: "←";
}
[dir=rtl] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -25px;
}
[dir=rtl] .slick-next {
  left: -25px;
  right: auto;
}
.slick-next:before {
  content: "→";
}
[dir=rtl] .slick-next:before {
  content: "←";
}

/* Dots */
.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  text-align: center;
  color: black;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
  color: black;
  opacity: 0.75;
}

.textareaAutoHeight-counter {
  display: none;
}

.site-header {
  height: 72px;
}
@media (max-width: 859.98px) {
  .site-header {
    padding: 18px 20px 15px;
    height: 62px;
    position: relative;
  }
}
.site-header .site-branding {
  padding: 16px 0 17px;
  margin-left: 60px;
  float: left;
}
@media (max-width: 1279.98px) {
  .site-header .site-branding {
    padding: 20px 0;
    margin-left: 20px;
  }
}
@media (max-width: 999.98px) {
  .site-header .site-branding {
    padding: 21px 0;
  }
}
@media (max-width: 859.98px) {
  .site-header .site-branding {
    padding: 0;
    margin: 0;
  }
}
.site-header .site-branding a {
  display: block;
}
.site-header .header-logo {
  width: auto;
  height: 39px;
  display: block;
}
@media (max-width: 1279.98px) {
  .site-header .header-logo {
    height: 32px;
  }
}
@media (max-width: 999.98px) {
  .site-header .header-logo {
    height: 30px;
  }
}
@media (max-width: 859.98px) {
  .site-header .header-logo {
    height: 29px;
  }
}
.site-header .header-navigation {
  float: right;
  align-items: center;
  display: flex;
}
.site-header .header-navigation ul {
  padding: 20px;
  margin: 0;
  font-family: "Times New Roman", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  list-style: none;
  vertical-align: top;
  display: inline-block;
}
@media (max-width: 1279.98px) {
  .site-header .header-navigation ul {
    padding: 20px 10px;
  }
}
@media (max-width: 999.98px) {
  .site-header .header-navigation ul {
    padding: 20px 10px 20px 0;
  }
}
@media (max-width: 859.98px) {
  .site-header .header-navigation ul {
    display: none;
  }
}
.site-header .header-navigation ul li {
  padding: 0 15px;
  display: inline-block;
}
@media (max-width: 1279.98px) {
  .site-header .header-navigation ul li {
    padding: 0 10px;
    font-size: 1.4rem;
  }
}
@media (max-width: 999.98px) {
  .site-header .header-navigation ul li {
    padding: 0 5px;
    font-size: 1.3rem;
  }
}
.site-header .header-navigation ul li a {
  position: relative;
}
.site-header .header-navigation ul li a:after {
  content: "";
  /*絶対配置で線の位置を決める*/
  position: absolute;
  bottom: -8px;
  left: 10%;
  /*線の形状*/
  width: 80%;
  height: 2px;
  background: #D7B98E;
  /*アニメーションの指定*/
  transition: all 0.3s;
  transform: scale(0, 1);
  /*X方向0、Y方向1*/
  transform-origin: left top;
  /*左上基点*/
}
.hall .site-header .header-navigation ul li a:after, .hall-child .site-header .header-navigation ul li a:after {
  background: #930E0E;
}
.community .site-header .header-navigation ul li a:after, .community-child .site-header .header-navigation ul li a:after {
  background: #006284;
}
.stay .site-header .header-navigation ul li a:after, .stay-child .site-header .header-navigation ul li a:after {
  background: #E9C46A;
}
.site-header .header-navigation ul li.current a:after,
.site-header .header-navigation ul li a:hover:after {
  transform: scale(1, 1);
  /*X方向にスケール拡大*/
}
.site-header .header-navigation .header-reserve {
  padding: 0 30px 0 0px;
}
@media (max-width: 859.98px) {
  .site-header .header-navigation .header-reserve {
    padding: 0 35px 0 0px;
  }
}
.site-header .header-navigation .header-contact {
  width: 222px;
  height: 72px;
  text-align: center;
  display: inline-block;
}
@media (max-width: 1279.98px) {
  .site-header .header-navigation .header-contact {
    width: auto;
  }
}
@media (max-width: 859.98px) {
  .site-header .header-navigation .header-contact {
    display: none;
  }
}
.site-header .header-navigation .header-contact a {
  padding: 14px 0 13px;
  display: block;
}
@media (max-width: 1279.98px) {
  .site-header .header-navigation .header-contact a {
    padding: 18px 12px;
  }
}
@media (max-width: 999.98px) {
  .site-header .header-navigation .header-contact a {
    padding: 21px 8px;
  }
}
.site-header .header-navigation .header-contact img {
  width: 194px;
  height: auto;
  margin: auto;
  display: block;
}
@media (max-width: 1279.98px) {
  .site-header .header-navigation .header-contact img {
    width: auto;
    height: 36px;
  }
}
@media (max-width: 999.98px) {
  .site-header .header-navigation .header-contact img {
    height: 30px;
  }
}
@media (max-width: 999.98px) {
  .site-header .header-navigation-en ul {
    padding-right: 5px;
  }
}
.site-header .header-navigation-en ul li {
  padding: 0 10px;
}
@media (max-width: 1279.98px) {
  .site-header .header-navigation-en ul li {
    padding: 0 6px;
  }
}
@media (max-width: 999.98px) {
  .site-header .header-navigation-en ul li {
    padding: 0 4px;
    font-size: 1.2rem;
  }
}
.site-header .drawer-hamburger {
  width: 30px;
  padding-top: 20px;
  position: absolute;
  display: none;
}
@media (max-width: 859.98px) {
  .site-header .drawer-hamburger {
    display: block;
  }
}
.site-header .drawer-hamburger .drawer-hamburger-icon:before {
  top: -6px;
}
.site-header .drawer-hamburger .drawer-hamburger-icon:after {
  top: 6px;
}
.footer-obi {
  padding: 25px 0 15px;
  font-family: "Times New Roman", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  color: #fff;
  background-color: #D7B98E;
  *zoom: 1;
}
.footer-obi:after {
  content: "";
  display: table;
  clear: both;
}
.footer-obi-en {
  padding-top: 20px;
  padding-bottom: 30px;
}
.footer-obi-en .footer-obi-text {
  font-size: 2.6rem;
}
.footer-obi-en .footer-contact {
  margin-bottom: 10px;
}
.footer-obi-row {
  flex-wrap: wrap;
  display: flex;
}
.footer-obi-col {
  flex: 0 0 65%;
}
@media (max-width: 999.98px) {
  .footer-obi-col {
    flex: 0 0 70%;
  }
}
.footer-obi-col:last-of-type {
  flex: 0 0 35%;
}
@media (max-width: 999.98px) {
  .footer-obi-col:last-of-type {
    flex: 0 0 30%;
  }
}
.footer-obi-notice p {
  font-size: 1.4rem;
  line-height: 1.3;
}
.footer-obi.sp {
  padding: 30px 30px;
  text-align: center;
}
.footer-obi.sp .footer-headline {
  font-size: 1.4rem;
}
.footer-obi.sp .footer-number {
  margin-top: 10px;
}
.footer-obi.sp p {
  font-size: 1.3rem;
  line-height: 1.5;
}
.footer-obi.sp .footer-obi-note {
  text-align: left;
}
.footer-obi.sp .footer-contact {
  margin-top: 20px;
}
.footer-obi-en.sp {
  padding: 30px 36px;
  text-align: left;
}
.footer-obi-en.sp > a {
  display: block;
}
.footer-obi-en.sp .footer-contact {
  margin-top: 10px;
  margin-bottom: 0;
}
.footer-obi-en.sp .footer-contact .btn-contact {
  width: auto;
  padding: 9px 30px 5px;
}
@media (max-width: 999.98px) {
  .footer-contact img {
    width: auto;
    height: 40px;
  }
}
@media (max-width: 859.98px) {
  .footer-contact .btn-faq {
    width: 242px;
    margin: 10px 0 0;
  }
}
.footer-form {
  text-align: right;
}
.footer-navigation {
  padding: 40px 0;
  background-color: #f2e8d9;
}
@media (max-width: 859.98px) {
  .footer-navigation {
    padding: 20px 0 30px;
  }
}
.footer-navigation strong {
  margin-bottom: 10px;
  font-family: "Times New Roman", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-weight: bold;
  display: block;
}
@media (max-width: 859.98px) {
  .footer-navigation strong {
    margin-top: 10px;
    margin-bottom: 0;
  }
}
.footer-navigation ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
@media (max-width: 859.98px) {
  .footer-navigation ul {
    margin-bottom: 0;
    font-size: 1.6rem;
  }
}
@media (max-width: 859.98px) {
  .footer-navigation ul li strong {
    margin-top: 0;
  }
}
@media (max-width: 859.98px) {
  .footer-navigation .acc {
    border-bottom: 1px solid #ccc;
  }
}
@media (max-width: 859.98px) {
  .footer-navigation .acc strong {
    margin-top: 0;
    line-height: 2.8;
    background-image: url(../images/icon/plus.svg);
    background-size: 10px;
    background-position: center right 10px;
    background-repeat: no-repeat;
  }
}
@media (max-width: 859.98px) {
  .footer-navigation .acc strong.open {
    background-image: url(../images/icon/minus.svg);
  }
}
@media (max-width: 859.98px) {
  .footer-navigation .acc ul {
    margin-top: 10px;
    margin-bottom: 20px;
    font-size: 1.4rem;
    display: none;
  }
}
@media (max-width: 859.98px) {
  .footer-navigation .acc li {
    font-size: 1.4rem;
  }
}
.footer-info {
  padding: 20px 0;
  color: #fff;
  background-color: #000;
  *zoom: 1;
}
.footer-info:after {
  content: "";
  display: table;
  clear: both;
}
@media (max-width: 859.98px) {
  .footer-info {
    padding: 20px 50px;
  }
}
.footer-branding {
  padding: 13px 0;
  margin-left: 60px;
  float: left;
}
@media (max-width: 859.98px) {
  .footer-branding {
    padding: 0;
    margin: 0 0 10px;
  }
}
.footer-branding a {
  display: block;
}
.footer-branding img {
  display: block;
}
@media (max-width: 859.98px) {
  .footer-branding img {
    width: auto;
    height: 35px;
  }
}
.footer-access {
  margin-right: 60px;
  font-size: 14px;
  letter-spacing: 0.07em;
  float: right;
}
@media (max-width: 859.98px) {
  .footer-access {
    margin: 0;
    font-size: 1.2rem;
  }
}
.footer-access span {
  padding: 0 10px;
}
.footer-access span:first-of-type {
  padding-left: 0;
}
@media (max-width: 859.98px) {
  .footer-access span:first-of-type {
    padding-right: 15px;
  }
}
.footer-access span:nth-of-type(2) {
  padding: 0;
}
.footer-access span:last-of-type {
  padding-right: 0;
}
@media (max-width: 859.98px) {
  .footer-access span:last-of-type {
    padding-left: 0;
    margin-bottom: 20px;
    display: block;
  }
}
.footer-access.en .footer-access-address {
  font-size: 1.4rem;
}
.footer-copyright {
  font-size: 1.2rem;
  letter-spacing: 0.05em;
}
@media (max-width: 859.98px) {
  .footer-copyright {
    font-size: 1rem;
  }
}

.site-footer .col {
  flex: 0 0 24%;
}
@media (max-width: 859.98px) {
  .site-footer .col {
    flex: 0 0 100%;
    padding: 0 36px;
  }
}
.site-footer .col:last-of-type {
  flex: 0 0 28%;
}
@media (max-width: 859.98px) {
  .site-footer .col:last-of-type {
    flex: 0 0 100%;
  }
}
.site-footer .col-en {
  flex: 0 0 30%;
}
@media (max-width: 999.98px) {
  .site-footer .col-en {
    flex: 0 0 100%;
  }
}
.site-footer .col-en li {
  font-family: "Times New Roman", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}

.top-visual {
  width: 100%;
  height: 652px;
  background-size: cover;
  background-position: bottom center;
  background-repeat: no-repeat;
}
@media (max-width: 859.98px) {
  .top-visual {
    height: 70vh;
  }
}
.top-visual-table {
  width: 100%;
  height: 100%;
  text-align: center;
  display: table;
}
.top-visual-cell {
  vertical-align: middle;
  display: table-cell;
}
.top-visual-textbox {
  text-shadow: 0 0 4px rgba(0, 0, 12, 0.42);
  color: #fff;
}
.top-title {
  margin-bottom: 20px;
  font-family: "Times New Roman", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 35px;
  font-weight: 400;
  text-align: center;
  letter-spacing: 0.1em;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.42);
  color: #fff;
}
@media (max-width: 859.98px) {
  .top-title {
    font-size: 18px;
    letter-spacing: 0.06em;
  }
}
.top-title span {
  margin-top: 20px;
  font-size: 23px;
  letter-spacing: 0;
  display: block;
}
.top-description {
  font-family: "Times New Roman", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 1.7rem;
  line-height: 2.35;
  letter-spacing: 0.03em;
}
@media (max-width: 859.98px) {
  .top-description {
    font-size: 1.3rem;
  }
}
.top-scroll {
  height: 135px;
  margin: 60px 0 0;
  text-align: center;
  position: relative;
}
@media (max-width: 859.98px) {
  .top-scroll {
    height: 90px;
    margin: 40px 0 0;
  }
}
.top-scroll-down {
  height: 50px;
  position: absolute;
  left: 50%;
}
.top-scroll-down span {
  width: 30px;
  position: absolute;
  left: -15px;
  top: -15px;
  color: #000;
  font-family: "Times New Roman", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 1rem;
  text-align: center;
  letter-spacing: 0.05em;
}
.top-scroll-down:before {
  content: "";
  width: 36px;
  height: 10px;
  margin-left: -17px;
  background-image: url(../images/common/arrow-bottom.svg);
  background-position: center bottom;
  background-repeat: no-repeat;
  position: absolute;
  left: 50%;
  bottom: -2px;
}
.top-scroll-down:after {
  content: "";
  /*線の形状*/
  width: 1px;
  height: 30px;
  background: #000;
  /*描画位置*/
  position: absolute;
  top: 0;
  /*線の動き1.4秒かけて動く。永遠にループ*/
  animation: pathmove 1.4s ease-in-out infinite;
  opacity: 0;
}

.community-child,
.community {
  /*
  .menu-li {
      &:nth-child(2) {
          span {
              color: $black;
          }
      }
  }
  */
}
.community-child .site-main,
.community .site-main {
  margin-bottom: 0;
}
.community-child .section-header h2,
.community .section-header h2 {
  font-weight: 400;
  color: #006284;
}
.community-child .common-news,
.community .common-news {
  background-color: rgba(0, 98, 132, 0.05);
}
.community-child .header-contact,
.community .header-contact {
  background-color: #006284;
}
.community-child .type-label,
.community .type-label {
  color: #006284;
}
.community-child .slick-visual .slick-slide,
.community .slick-visual .slick-slide {
  position: relative;
}
.community-child .slick-visual .slick-text,
.community .slick-visual .slick-text {
  letter-spacing: 0.03em;
  color: #fff;
  position: absolute;
  bottom: 5px;
  right: 15px;
  z-index: 1;
}
@media (max-width: 859.98px) {
  .community-child .slick-visual .slick-text,
.community .slick-visual .slick-text {
    font-size: 1rem;
    letter-spacing: 0.03em;
  }
}
.community-child .schema-faq-section.close .schema-faq-question:after,
.community .schema-faq-section.close .schema-faq-question:after {
  background-image: url(../images/community/plus.svg);
}
.community-child .schema-faq-question,
.community .schema-faq-question {
  background-color: rgba(0, 98, 132, 0.05);
}
.community-child .schema-faq-question:before,
.community .schema-faq-question:before {
  color: #006284;
}
.community-child .schema-faq-question:after,
.community .schema-faq-question:after {
  background-image: url(../images/community/minus.svg);
}
.community-child .schema-faq-answer:before,
.community .schema-faq-answer:before {
  color: #006284;
}
.community-child .news-navigation-li a,
.community .news-navigation-li a {
  color: #006284;
  background-color: transparent;
  border: 1px solid;
}
.community-child .sub-navigation,
.community .sub-navigation {
  background-image: url(../images/community/subnavigation-image.png);
}
.community-child .sub-navigation a:hover,
.community .sub-navigation a:hover {
  background-color: #006284;
  border: 1px solid #006284;
}
.community-child .footer-obi,
.community .footer-obi {
  background-color: #006284;
}
.community-child .label-li span,
.community .label-li span {
  background-color: #006284;
}
.community-child .access-traffic-title,
.community .access-traffic-title {
  background-color: rgba(0, 98, 132, 0.5);
}
.community-child .btn-more:hover,
.community .btn-more:hover {
  border: 1px solid #006284;
  background-color: #006284;
}
.community-child .btn-faq,
.community .btn-faq {
  color: #006284;
}
.community-child .breadcrumb ul li a:hover,
.community .breadcrumb ul li a:hover {
  color: #006284;
}
.community-child.drawer .btn-drawer,
.community.drawer .btn-drawer {
  background-color: #006284;
}
.community-child.contact .wpcf7-confirm:hover,
.community.contact .wpcf7-confirm:hover {
  background-color: #006284;
  border-color: #006284;
}
.community-child.contact .wpcf7-back:hover,
.community.contact .wpcf7-back:hover {
  background-color: #006284;
  border-color: #006284;
}
.community-child.contact .wpcf7-submit,
.community.contact .wpcf7-submit {
  color: #fff;
  background-color: #006284;
  border-color: #006284;
}

.hall-child .site-main,
.hall .site-main {
  margin-bottom: 0;
}
.hall-child .section-header h2,
.hall .section-header h2 {
  font-weight: 400;
  color: #930E0E;
}
.hall-child .section.hall-pickup,
.hall .section.hall-pickup {
  background-color: #F9F7F2;
}
.hall-child .common-news,
.hall .common-news {
  background-color: #F9F7F2;
}
.hall-child .header-contact,
.hall .header-contact {
  background-color: #930E0E;
}
.hall-child .menu-box,
.hall .menu-box {
  height: 383px;
}
@media (max-width: 859.98px) {
  .hall-child .menu-box,
.hall .menu-box {
    height: 176px;
    background-size: cover;
  }
}
@media (max-width: 859.98px) {
  .hall-child .menu-ul,
.hall .menu-ul {
    padding: 0 36px;
  }
}
.hall-child .menu-li,
.hall .menu-li {
  flex: 0 0 25%;
}
@media (max-width: 859.98px) {
  .hall-child .menu-li,
.hall .menu-li {
    flex: 0 0 100%;
    padding: 0;
    margin-bottom: 24px;
  }
}
.hall-child .type-label,
.hall .type-label {
  color: #930E0E;
}
.faq .hall-child .page-content h2,
.faq .hall .page-content h2 {
  background-color: #930E0E;
}
.hall-child .schema-faq-section.close .schema-faq-question:after,
.hall .schema-faq-section.close .schema-faq-question:after {
  background-image: url(../images/hall/plus.svg);
}
.hall-child .schema-faq-question,
.hall .schema-faq-question {
  background-color: #F9F7F2;
}
.hall-child .schema-faq-question:before,
.hall .schema-faq-question:before {
  color: #930E0E;
}
.hall-child .schema-faq-question:after,
.hall .schema-faq-question:after {
  background-image: url(../images/hall/minus.svg);
}
.hall-child .schema-faq-answer:before,
.hall .schema-faq-answer:before {
  color: #930E0E;
}
.hall-child .news-navigation-li a,
.hall .news-navigation-li a {
  color: #930E0E;
  background-color: transparent;
  border: 1px solid;
}
.hall-child .sub-navigation,
.hall .sub-navigation {
  background-image: url(../images/hall/subnavigation-image.png);
}
.hall-child .sub-navigation a:hover,
.hall .sub-navigation a:hover {
  background-color: #930E0E;
  border: 1px solid #930E0E;
}
.hall-child .sub-li,
.hall .sub-li {
  flex: 0 0 33.33333%;
}
.hall-child .footer-obi,
.hall .footer-obi {
  background-color: #930E0E;
}
.hall-child .label-li span,
.hall .label-li span {
  background-color: #930E0E;
}
.hall-child .access-traffic-title,
.hall .access-traffic-title {
  color: #fff;
  background-color: #930E0E;
}
.hall-child .btn-more:hover,
.hall .btn-more:hover {
  background-color: #930E0E;
  border: 1px solid #930E0E;
}
.hall-child .btn-faq,
.hall .btn-faq {
  color: #930E0E;
}
.hall-child .btn-file,
.hall .btn-file {
  color: #fff;
  background-color: #930E0E;
}
.hall-child .breadcrumb ul li a:hover,
.hall .breadcrumb ul li a:hover {
  color: #930E0E;
}
.hall-child.drawer .btn-drawer,
.hall.drawer .btn-drawer {
  background-color: #930E0E;
}
.hall-child.contact .wpcf7 .wpcf7-confirm:hover,
.hall.contact .wpcf7 .wpcf7-confirm:hover {
  background-color: #930E0E;
  border-color: #930E0E;
}
.hall-child.contact .wpcf7 .wpcf7-back:hover,
.hall.contact .wpcf7 .wpcf7-back:hover {
  background-color: #930E0E;
  border-color: #930E0E;
}
.hall-child.contact .wpcf7 .wpcf7-submit,
.hall.contact .wpcf7 .wpcf7-submit {
  color: #fff;
  background-color: #930E0E !important;
  border-color: #930E0E !important;
}

.stay-child,
.stay {
  /*
  .menu-li {
      &:nth-child(1) {
          span {
              color: $black;
          }
      }
  }
  */
}
.stay-child .site-main,
.stay .site-main {
  margin-bottom: 0;
}
.stay-child .section-header h2,
.stay .section-header h2 {
  font-weight: 400;
  color: #E9C46A;
}
.stay-child .common-news,
.stay .common-news {
  background-color: rgba(233, 196, 106, 0.05);
}
.stay-child .header-contact,
.stay .header-contact {
  background-color: #E9C46A;
}
.stay-child .page-nav ul li a:hover,
.stay .page-nav ul li a:hover {
  color: #E9C46A;
  border-color: #E9C46A;
}
.stay-child .type-label,
.stay .type-label {
  color: #E9C46A;
}
.stay-child .schema-faq-section.close .schema-faq-question:after,
.stay .schema-faq-section.close .schema-faq-question:after {
  background-image: url(../images/stay/plus.svg);
}
.stay-child .schema-faq-question,
.stay .schema-faq-question {
  background-color: rgba(233, 196, 106, 0.05);
}
.stay-child .schema-faq-question:before,
.stay .schema-faq-question:before {
  color: #E9C46A;
}
.stay-child .schema-faq-question:after,
.stay .schema-faq-question:after {
  background-image: url(../images/stay/minus.svg);
}
.stay-child .schema-faq-answer:before,
.stay .schema-faq-answer:before {
  color: #E9C46A;
}
.stay-child .news-navigation-li a,
.stay .news-navigation-li a {
  color: #E9C46A;
  background-color: transparent;
  border: 1px solid;
}
.stay-child .sub-navigation,
.stay .sub-navigation {
  background-image: url(../images/stay/subnavigation-image.png);
}
.stay-child .sub-navigation a:hover,
.stay .sub-navigation a:hover {
  background-color: #E9C46A;
  border: 1px solid #E9C46A;
}
.stay-child .footer-obi,
.stay .footer-obi {
  background-color: #E9C46A;
}
.stay-child .label-li span,
.stay .label-li span {
  background-color: #E9C46A;
}
.stay-child .access-traffic-title,
.stay .access-traffic-title {
  background-color: rgba(233, 196, 106, 0.5);
}
.stay-child .btn-more:hover,
.stay .btn-more:hover {
  border: 1px solid #E9C46A;
  background-color: #E9C46A;
}
.stay-child .btn-faq,
.stay .btn-faq {
  color: #E9C46A;
}
.stay-child .breadcrumb ul li a:hover,
.stay .breadcrumb ul li a:hover {
  color: #E9C46A;
}
.stay-child.drawer .drawer-li:last-child,
.stay.drawer .drawer-li:last-child {
  margin-top: 10px;
  border-bottom: 0;
}
.stay-child.drawer .btn-drawer,
.stay.drawer .btn-drawer {
  background-color: #E9C46A;
}
.stay-child.contact .wpcf7-confirm:hover,
.stay.contact .wpcf7-confirm:hover {
  background-color: #E9C46A;
  border-color: #E9C46A;
}

.banner {
  width: 860px;
  margin: auto;
}
@media (max-width: 859.98px) {
  .banner {
    width: 100%;
  }
}
.banner-ul {
  margin-left: -10px;
  margin-right: -10px;
  list-style: none;
  flex-wrap: wrap;
  display: flex;
}
@media (max-width: 859.98px) {
  .banner-ul {
    padding: 0 36px;
    margin: 0;
  }
}
.banner-li {
  padding: 0 10px;
  flex: 0 0 50%;
}
@media (max-width: 859.98px) {
  .banner-li {
    padding: 0;
    margin-bottom: 20px;
    flex: 0 0 100%;
  }
}
.banner-li a {
  transition: 0.3s;
  display: block;
}
.banner-li a:hover {
  opacity: 0.7;
}
@media (max-width: 859.98px) {
  .banner-li a img {
    width: 100%;
    height: auto;
  }
}
@media (max-width: 859.98px) {
  .banner-li a p {
    font-size: 1.4rem;
  }
}

.breadcrumb {
  font-size: 1.2rem;
  color: #2C2C2C;
}
@media (max-width: 859.98px) {
  .breadcrumb {
    padding: 0 36px;
    margin-top: 20px;
  }
}
.breadcrumb ul {
  white-space: nowrap;
  list-style: none;
}
@media (max-width: 859.98px) {
  .breadcrumb ul {
    white-space: normal;
  }
}
.breadcrumb ul li {
  display: inline-block;
}
.breadcrumb ul li:after {
  content: "-";
  margin: 0 5px;
  display: inline-block;
}
.breadcrumb ul li:last-child:after {
  content: none;
}
.breadcrumb ul li a {
  transition: 0.5s;
}
.breadcrumb ul li a:hover {
  color: #930E0E;
}
.breadcrumb ul li br {
  display: none;
}
.btn-contact {
  width: 242px;
  padding: 9px 7px 5px;
  text-align: center;
  color: #fff;
  border: 1px solid #fff;
  display: inline-block;
}
.btn-contact .icon {
  margin-top: -6px;
  margin-right: 10px;
}

.btn-faq {
  width: 212px;
  padding: 9px 7px 5px;
  margin-left: 20px;
  text-align: center;
  background-color: #fff;
  border: 1px solid #fff;
  display: inline-block;
}

.btn-more {
  min-width: 150px;
  padding: 2px 35px 0 10px;
  font-size: 1.4rem;
  text-align: left;
  background-image: url(../images/icon/arrow-right.svg);
  background-position: center right 10px;
  background-repeat: no-repeat;
  border: 1px solid;
  transition: 0.3s;
  display: inline-block;
}
.btn-more:hover {
  color: #fff;
  background-image: url(../images/icon/arrow-right-white.svg);
  background-color: #D7B98E;
  border: 1px solid #D7B98E;
}

.btn-schedule {
  min-width: 150px;
  padding: 2px 35px 0 10px;
  font-size: 1.4rem;
  text-align: left;
  background-image: url(../images/icon/arrow-right.svg);
  background-position: center right 10px;
  background-repeat: no-repeat;
  border: 1px solid;
  transition: 0.3s;
  display: inline-block;
}
.btn-schedule:hover {
  color: #fff;
  background-image: url(../images/icon/arrow-right-white.svg);
  background-color: #930E0E;
  border: 1px solid #930E0E;
}

.btn-googlemap {
  padding: 0px 10px;
  border: 1px solid;
  transition: 0.3s;
  display: inline-block;
}
.btn-googlemap:hover {
  opacity: 0.8;
  filter: alpha(opacity=80);
}

.wp-block-button__link {
  min-width: 152px;
  height: 40px;
  padding: 12px 20px !important;
  font-size: 1.5rem;
  line-height: 1;
  transition: 0.15s;
}
.wp-block-button__link.no-border-radius {
  border: 1px solid;
}
.wp-block-button__link:hover {
  opacity: 0.7;
  filter: alpha(opacity=70);
}

.btn-wrap.btn-center {
  text-align: center;
}

.btn-link {
  padding: 20px 40px;
  line-height: 1;
  border: 1px solid;
  display: inline-block;
}

.btn-instrument {
  min-width: 142px;
  padding: 5px 35px 3px 10px;
  font-size: 1.4rem;
  text-align: left;
  color: #fff;
  background-image: url(../images/icon/arrow-right-white.svg);
  background-position: center right 10px;
  background-repeat: no-repeat;
  background-color: #BABABA;
  border: 1px solid;
  transition: 0.3s;
  display: inline-block;
}
.btn-instrument:hover {
  opacity: 0.7;
}

.btn-drawer {
  min-width: 242px;
  padding: 9px 7px 7px;
  color: #fff;
  background-color: #D7B98E;
  display: inline-block;
}
.btn-drawer .icon {
  margin-top: -4px;
  margin-right: 10px;
  vertical-align: middle;
}

.btn-site {
  padding: 2px 35px 0 10px;
  font-size: 1.5rem;
  text-align: left;
  background-image: url(../images/icon/arrow-right.svg);
  background-position: center right 10px;
  background-repeat: no-repeat;
  border: 1px solid;
  transition: 0.3s;
  display: inline-block;
}
@media (max-width: 859.98px) {
  .btn-site {
    font-size: 1.3rem;
    line-height: 1.6;
  }
}
.btn-site:hover {
  opacity: 0.7;
}

.btn-file {
  min-width: 200px;
  padding: 14px 20px 12px;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
  display: inline-block;
}
.btn-file small {
  line-height: 1.2;
  font-weight: 400;
  display: block;
}
@media (max-width: 859.98px) {
  .btn-file {
    min-width: 260px;
  }
}

.btn-reserve {
  padding: 8px 20px 6px;
  font-family: "Times New Roman", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 1.6rem;
  line-height: 1;
  color: #fff;
  background-color: #968330;
  transition: 0.3s;
  display: block;
  /*
  .stay &,
  .stay-child & {
      background-color: $stay-color;
  }
  */
}
@media (max-width: 859.98px) {
  .btn-reserve {
    padding: 8px 15px 5px;
    font-size: 1.5rem;
  }
}
.btn-reserve:hover {
  opacity: 0.8;
}

.calendar {
  width: 100%;
  margin-bottom: 180px;
  border-top: 1px solid #707070;
  display: table;
}
@media (max-width: 859.98px) {
  .calendar {
    margin-bottom: 60px;
    border-top: none;
  }
}
.calendar .month-box {
  border-bottom: 1px solid #707070;
  display: table-row;
}
.calendar .month-box:last-of-type {
  border-bottom: none;
}
.calendar .month-box:last-of-type .day-box:last-of-type {
  border-bottom: none;
}
.calendar .month-box .ym {
  width: 70px;
  padding: 20px 0;
  text-align: center;
  line-height: 1.2;
  border-right: 1px solid #707070;
  vertical-align: top;
  display: table-cell;
  position: relative;
}
.calendar .month-box .ym p {
  width: inherit;
  margin: 0;
  position: absolute;
}
.calendar .month-box .ym p.fixed {
  position: fixed;
}
.calendar .month-box .ym .month {
  display: block;
}
.calendar .month-box .ym .month bold {
  font-size: 32px;
}
.calendar .day-box {
  width: 100%;
  border-bottom: 1px solid #707070;
  display: table;
}
@media (max-width: 859.98px) {
  .calendar .day-box:first-of-type {
    border-top: 1px solid #ccc;
  }
}
.calendar .day-box .dw {
  width: 70px;
  padding: 20px 0;
  text-align: center;
  line-height: 1;
  vertical-align: top;
  display: table-cell;
  position: relative;
}
@media (max-width: 859.98px) {
  .calendar .day-box .dw {
    width: 100%;
    padding: 30px 0 0;
    display: block;
  }
}
.calendar .day-box .dw p {
  width: inherit;
  margin-top: 19px;
  margin-bottom: 0;
  position: absolute;
}
@media (max-width: 859.98px) {
  .calendar .day-box .dw p {
    margin-top: 0;
    position: static;
  }
}
.calendar .day-box .dw p.fixed {
  position: fixed;
}
.calendar .day-box .dw .day {
  font-size: 4rem;
  line-height: 1;
}
@media (max-width: 859.98px) {
  .calendar .day-box .dw .day {
    font-size: 3rem;
  }
}
.calendar .day-box .dw .week {
  line-height: 1;
  display: block;
}
.calendar .day-box .dw.week-6 .day, .calendar .day-box .dw.week-6 .week {
  color: #6991AB;
}
.calendar .day-box .dw.week-0 .day, .calendar .day-box .dw.week-0 .week {
  color: #BB6F5D;
}
.calendar-ctl {
  margin-bottom: 60px;
  display: flex;
}
@media (max-width: 859.98px) {
  .calendar-ctl {
    margin-bottom: 30px;
  }
}
.calendar-ctl-form {
  width: 100%;
  flex-wrap: wrap;
  display: flex;
}
.calendar-ctl-group {
  display: inline-block;
}
.calendar-ctl-group:first-of-type {
  width: calc( 100% - 154px );
}
@media (max-width: 859.98px) {
  .calendar-ctl-group:first-of-type {
    width: calc( 100% - 78px );
  }
}
.calendar-ctl-group:last-of-type {
  width: 148px;
}
@media (max-width: 859.98px) {
  .calendar-ctl-group:last-of-type {
    width: 78px;
  }
}
.calendar-ctl-month {
  width: 315px;
}
@media (max-width: 859.98px) {
  .calendar-ctl-month {
    width: 146px;
    margin-bottom: 15px;
  }
}
.calendar-ctl-month select {
  width: 100%;
  height: 60px;
  padding: 0 100px;
  font-size: 1.6rem;
  text-align: center;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid #707070;
  outline: none;
  color: #000;
  background-image: url(../images/icon/arrow-hall-select.svg);
  background-position: center right 25%;
  background-repeat: no-repeat;
  background-color: transparent;
}
@media (max-width: 859.98px) {
  .calendar-ctl-month select {
    height: 44px;
    padding: 12px 15px;
    text-align: left;
    background-position: center right 15px;
  }
}
.calendar-ctl-input {
  width: calc( 100% - 315px );
  padding-left: 30px;
}
@media (max-width: 859.98px) {
  .calendar-ctl-input {
    width: 100%;
    padding: 0;
    display: flex;
  }
}
.calendar-ctl-input input {
  line-height: 1;
  display: inline-block;
}
.calendar-ctl-input input[type=text] {
  width: 100%;
  height: 60px;
  padding: 12px 15px;
  font-size: 1.6rem;
  border: 1px solid #707070;
  border-radius: 0;
  outline: none;
  background: none;
}
@media (max-width: 859.98px) {
  .calendar-ctl-input input[type=text] {
    height: 44px;
  }
}
.calendar-ctl-input input[type=submit] {
  width: 100%;
  height: 60px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0;
  border: 1px solid #930E0E;
  border-radius: 0;
  outline: none;
  background: transparent;
  font-size: 1.6rem;
  color: #fff;
  background-color: #930E0E;
  transition: 0.3s;
  cursor: pointer;
}
@media (max-width: 859.98px) {
  .calendar-ctl-input input[type=submit] {
    height: 44px;
  }
}
.calendar-ctl-input input[type=submit]:hover {
  opacity: 0.7;
}
.calendar .calendar-box {
  width: auto;
  padding: 40px 0;
  border-bottom: 1px dashed #707070;
}
@media (max-width: 859.98px) {
  .calendar .calendar-box {
    padding: 30px 0;
  }
}
.calendar .calendar-box a {
  display: block;
}
.calendar .calendar-box a:hover .calendar-link {
  color: #fff;
  background-color: #930E0E;
}
.calendar .calendar-box a:hover .calendar-link span:after {
  background-image: url(../images/icon/arrow-right-hall-white.svg);
}
.calendar .calendar-box:last-of-type {
  border-bottom: none;
}
.calendar .calendar-table {
  width: 100%;
  display: table;
}
.calendar .calendar-row {
  display: table-row;
}
@media (max-width: 859.98px) {
  .calendar .calendar-row {
    flex-wrap: wrap;
    display: flex;
  }
}
.calendar .calendar-cell {
  vertical-align: top;
  display: table-cell;
}
.calendar .calendar-cell:first-of-type {
  width: 200px;
}
@media (max-width: 859.98px) {
  .calendar .calendar-cell:first-of-type {
    width: 67px;
  }
  .calendar .calendar-cell:first-of-type .event-image {
    width: 67px;
    height: auto;
  }
}
.calendar .calendar-cell:nth-of-type(2) {
  width: calc( 100% - 264px );
}
@media (max-width: 859.98px) {
  .calendar .calendar-cell:nth-of-type(2) {
    width: calc( 100% - 67px );
    padding-left: 10px;
  }
}
.calendar .calendar-cell:last-of-type {
  width: 64px;
}
@media (max-width: 859.98px) {
  .calendar .calendar-cell:last-of-type {
    width: 100%;
    display: block;
  }
}
.calendar .calendar-title {
  margin-bottom: 15px;
  font-size: 20px;
}
@media (max-width: 859.98px) {
  .calendar .calendar-title {
    margin-bottom: 10px;
    font-size: 1.6rem;
    line-height: 1.6;
  }
}
.calendar .calendar-actor {
  line-height: 1.6;
}
@media (max-width: 859.98px) {
  .calendar .calendar-actor {
    display: none;
  }
}
.calendar .calendar-date {
  margin: 0;
}
.calendar .calendar-link {
  height: 100%;
  align-items: center;
  text-align: center;
  color: #930E0E;
  border: 1px solid #930E0E;
  transition: 0.3s;
  display: grid;
}
@media (max-width: 859.98px) {
  .calendar .calendar-link {
    height: auto;
    margin-top: 20px;
    display: block;
  }
}
.calendar .calendar-link span {
  font-size: 1.4rem;
  line-height: 1.5;
}
@media (max-width: 859.98px) {
  .calendar .calendar-link span {
    line-height: 14px;
  }
}
.calendar .calendar-link span:after {
  content: "";
  width: 14px;
  height: 14px;
  margin: 15px auto 0;
  background-image: url(../images/icon/arrow-right-hall-red.svg);
  background-position: center;
  background-repeat: no-repeat;
  display: block;
}
@media (max-width: 859.98px) {
  .calendar .calendar-link span:after {
    margin: 0 0 -1px 10px;
    display: inline-block;
  }
}
@media (max-width: 859.98px) {
  .calendar .calendar-link span br {
    display: none;
  }
}
.calendar .not-find {
  padding: 40px 0;
}
.hall .calendar-table {
  width: 100%;
  border-left: 1px solid #ccc;
  border-top: 1px solid #ccc;
  display: table;
}
.hall .calendar-table .tr {
  display: table-row;
}
.hall .calendar-table .th,
.hall .calendar-table .td {
  text-align: center;
  border-right: 1px solid #ccc;
  position: relative;
  vertical-align: top;
  display: table-cell;
}
.hall .calendar-table .th {
  padding: 2px 10px 0;
  font-size: 1.5rem;
  color: #fff;
  background-color: #707070;
}
@media (max-width: 575.98px) {
  .hall .calendar-table .th {
    font-size: 1.3rem;
  }
}
.hall .calendar-table .td {
  border-bottom: 1px solid #ccc;
}
.hall .calendar-table .day {
  width: 100%;
  color: #2c2c2c;
  position: absolute;
  top: 5px;
  left: 0;
}
@media (max-width: 575.98px) {
  .hall .calendar-table .day {
    font-size: 1.3rem;
  }
}
.hall .calendar-table .today .event-link {
  background-color: #930E0E;
}
.hall .calendar-table .today .event-link .day {
  color: #fff;
}
.hall .calendar-table .event p {
  font-size: 1.5rem;
  line-height: 1;
}
.hall .calendar-table .event p span {
  display: block;
}
.hall .calendar-table .event-link {
  padding: 18px;
  text-decoration: none;
  display: block;
}
.hall .calendar-table .event a .day {
  color: #930E0E;
}
.vacancy .calendar-box {
  padding: 70px 85px;
  margin-bottom: 30px;
  border: 1px solid #707070;
}
@media (max-width: 999.98px) {
  .vacancy .calendar-box {
    padding: 40px 20px;
  }
}
@media (max-width: 859.98px) {
  .vacancy .calendar-box {
    padding: 0;
    margin-bottom: 20px;
    border: none;
  }
}
.vacancy .calendar-box header {
  margin-bottom: 60px;
  text-align: center;
}
@media (max-width: 859.98px) {
  .vacancy .calendar-box header {
    margin-bottom: 26px;
  }
}
.vacancy .calendar-month > p {
  font-size: 1.5rem;
  line-height: 1.6;
}
@media (max-width: 859.98px) {
  .vacancy .calendar-month > p {
    font-size: 1.3rem;
  }
}
.vacancy .calendar-month-select {
  width: 410px;
  height: 60px;
  padding: 0 100px;
  font-family: "游ゴシック", "游ゴシック体", "Yu Gothic", YuGothic, "Yu Gothic medium", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 2.7rem;
  font-weight: 400;
  text-align: center;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  outline: none;
  color: #000;
  background-image: url(../images/icon/arrow-community-select.svg);
  background-position: center right 25%;
  background-repeat: no-repeat;
  background-color: transparent;
}
@media (max-width: 859.98px) {
  .vacancy .calendar-month-select {
    width: 140px;
    height: auto;
    padding: 0;
    font-size: 1.9rem;
    text-align: left;
    background-size: 19px;
    background-position: center right 0;
  }
}
.vacancy .calendar-table {
  width: 100%;
  border-left: 1px solid #ccc;
  border-top: 1px solid #ccc;
  display: table;
  /*
  .today {
      .event-link {
          background-color: $hall-color;
          .day {
              color: $white;
          }
      }
  }
  */
}
.vacancy .calendar-table .tr {
  display: table-row;
}
.vacancy .calendar-table .th,
.vacancy .calendar-table .td {
  width: 14.28%;
  border-right: 1px solid #ccc;
  position: relative;
  vertical-align: top;
  display: table-cell;
}
.vacancy .calendar-table .th {
  padding: 2px 10px 0;
  font-size: 1.5rem;
  text-align: center;
  color: #fff;
  background-color: #707070;
}
@media (max-width: 575.98px) {
  .vacancy .calendar-table .th {
    font-size: 1.3rem;
  }
}
.vacancy .calendar-table .td {
  border-bottom: 1px solid #ccc;
}
@media (max-width: 575.98px) {
  .vacancy .calendar-table .td {
    position: relative;
  }
}
.vacancy .calendar-table .day {
  width: 100%;
  padding: 6px 0 3px 6px;
  font-size: 1.9rem;
  line-height: 1;
  text-align: left;
  display: block;
}
@media (max-width: 575.98px) {
  .vacancy .calendar-table .day {
    width: 100%;
    padding: 0;
    font-size: 1.3rem;
    text-align: center;
  }
}
.vacancy .calendar-table .room-ul {
  margin: 0;
  font-size: 1.3rem;
}
.vacancy .calendar-table .room-ul li {
  padding: 0 0 0 6px;
  margin: 0;
  line-height: 1.6;
  display: block;
}
.vacancy .calendar-table .room-label {
  margin-right: 3px;
  font-size: 1.1rem;
}
.vacancy .calendar-table .event p {
  font-size: 1.5rem;
  line-height: 1;
}
.vacancy .calendar-table .event p span {
  display: block;
}
.vacancy .calendar-table .event-link {
  min-height: 100px;
  text-decoration: none;
  display: block;
}
@media (max-width: 859.98px) {
  .vacancy .calendar-table .event-link {
    min-height: auto;
    padding: 12px;
    text-align: center;
  }
}
.vacancy .calendar-table .event-link.pc {
  display: block;
}
@media (max-width: 859.98px) {
  .vacancy .calendar-table .event-link.pc {
    display: none;
  }
}
.vacancy .calendar-table .event-link.sp {
  display: none;
}
@media (max-width: 859.98px) {
  .vacancy .calendar-table .event-link.sp {
    display: block;
  }
}
@media (max-width: 859.98px) {
  .vacancy .calendar-table .event-link.end {
    color: #707070;
    background-color: #E5E5E5;
  }
}
.vacancy .calendar-table .event a .day {
  color: #006284;
}
@media (max-width: 859.98px) {
  .community-child .calendar-table .event.today {
    color: #fff;
    background-color: #006284;
  }
}

.stay-child .calendar-box {
  padding: 40px;
  margin-bottom: 30px;
  border: 1px solid #707070;
}
@media (max-width: 859.98px) {
  .stay-child .calendar-box {
    padding: 0;
    border: none;
  }
}
.stay-child .calendar-box header {
  margin-bottom: 20px;
  text-align: center;
}
.stay-child .calendar-month > p {
  font-size: 1.5rem;
  line-height: 1.6;
}
.stay-child .calendar-month-select {
  width: 410px;
  height: 60px;
  font-family: "游ゴシック", "游ゴシック体", "Yu Gothic", YuGothic, "Yu Gothic medium", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 2.7rem;
  font-weight: 400;
  text-align: center;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  outline: none;
  background-image: url(../images/icon/arrow-stay-select.svg);
  background-position: center right 25%;
  background-repeat: no-repeat;
  background-color: transparent;
}
@media (max-width: 859.98px) {
  .stay-child .calendar-month-select {
    width: 140px;
    height: auto;
    font-size: 1.9rem;
    text-align: left;
    background-size: 19px;
    background-position: center right 0;
  }
}
.stay-child .calendar-table {
  width: 100%;
  border-left: 1px solid #ccc;
  border-top: 1px solid #ccc;
  display: table;
}
.stay-child .calendar-table .tr {
  display: table-row;
}
.stay-child .calendar-table .th,
.stay-child .calendar-table .td {
  max-width: 14.28%;
  text-align: center;
  border-right: 1px solid #ccc;
  position: relative;
  vertical-align: top;
  display: table-cell;
}
.stay-child .calendar-table .th {
  padding: 2px 10px 0;
  font-size: 1.5rem;
  color: #fff;
  background-color: #707070;
}
@media (max-width: 575.98px) {
  .stay-child .calendar-table .th {
    font-size: 1.3rem;
  }
}
.stay-child .calendar-table .td {
  border-bottom: 1px solid #ccc;
}
.stay-child .calendar-table .day {
  width: auto;
  font-size: 1.9rem;
  line-height: 1.8;
  text-align: left;
  color: #2c2c2c;
  position: absolute;
  top: 8px;
  left: 8px;
}
@media (max-width: 575.98px) {
  .stay-child .calendar-table .day {
    font-size: 1.3rem;
    text-align: center;
    position: static;
  }
}
.stay-child .calendar-table .today .event-link {
  background-color: rgba(233, 196, 106, 0.07);
}
.stay-child .calendar-table .today .event-link .day {
  color: #000;
}
.stay-child .calendar-table .event p {
  font-size: 1.5rem;
  line-height: 1;
}
.stay-child .calendar-table .event p span {
  display: block;
}
.stay-child .calendar-table .event p.symbol {
  font-size: 2.8rem;
  text-align: right;
}
@media (max-width: 859.98px) {
  .stay-child .calendar-table .event p.symbol {
    font-size: 1.4rem;
    text-align: center;
  }
}
.stay-child .calendar-table .event-link {
  height: auto;
  min-height: auto;
  padding: 15px;
  text-decoration: none;
  display: block;
}
@media (max-width: 859.98px) {
  .stay-child .calendar-table .event-link {
    padding: 5px;
  }
}
.stay-child .calendar-table .event-link.end {
  color: #707070;
  background-color: #E5E5E5;
}
.stay-child .calendar-table .event-link.end .day {
  color: #707070;
}
.stay-child .calendar-table .event-link.full {
  background-color: rgba(229, 229, 229, 0.3);
}
.stay-child .calendar-table .event a .day {
  color: #930E0E;
}
@media (max-width: 859.98px) {
  .drawer-header {
    padding: 18px 20px 15px;
    height: 62px;
    position: relative;
  }
}
@media (max-width: 859.98px) {
  .drawer-branding {
    padding: 0;
    margin: 0;
    float: left;
  }
}
.drawer-branding a {
  display: block;
}
@media (max-width: 859.98px) {
  .drawer-logo {
    width: auto;
    height: 29px;
    display: block;
  }
}
.drawer-ul {
  padding: 0;
}
.drawer-li {
  border-bottom: 1px solid #E5E5E5;
}
.drawer-li a {
  padding: 8px 36px;
  display: block;
}
.drawer-footer {
  width: 100%;
  padding-bottom: 40px;
  text-align: center;
  position: absolute;
  bottom: 0;
}
.drawer-footer .btn-faq {
  width: 242px;
  padding: 7px 0;
  margin: 15px 0 0;
  border: 1px solid;
}
.drawer-open .site-header .drawer-hamburger .drawer-hamburger-icon:before {
  top: auto;
}
.drawer-open .site-header .drawer-hamburger .drawer-hamburger-icon:after {
  top: auto;
}

.faq .page-content h2 {
  margin-bottom: 20px;
  font-size: 1.6rem;
  font-weight: normal;
  text-align: center;
  background-color: #f8f9fa;
}
.faq.hall-child .page-content h2 {
  color: #fff;
  background-color: #930E0E;
}

.schema-faq {
  margin-bottom: 100px;
}
.schema-faq-section {
  margin-bottom: 20px;
}
.schema-faq-question {
  width: 100%;
  padding: 12px 23px 12px 80px;
  font-size: 1.7rem;
  font-weight: normal;
  background-color: #f8f9fa;
  position: relative;
  transition: 0.3s;
  cursor: pointer;
  display: block;
}
@media (max-width: 859.98px) {
  .schema-faq-question {
    padding: 12px 23px 12px 40px;
    font-size: 1.4rem;
    line-height: 1.6;
    letter-spacing: 0.03em;
  }
}
.schema-faq-question:hover {
  opacity: 0.8;
  filter: alpha(opacity=80);
}
.schema-faq-question:before {
  content: "Q";
  font-family: "Times New Roman", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 28px;
  font-weight: normal;
  line-height: 1;
  position: absolute;
  top: 14px;
  left: 23px;
}
@media (max-width: 859.98px) {
  .schema-faq-question:before {
    font-size: 1.7rem;
    letter-spacing: 0.03em;
    top: 13px;
    left: 15px;
  }
}
.schema-faq-question:after {
  content: "";
  width: 15px;
  height: 15px;
  position: absolute;
  top: 21px;
  right: 23px;
}
@media (max-width: 859.98px) {
  .schema-faq-question:after {
    width: 11px;
    height: 11px;
    background-size: 11px;
    top: 17px;
    right: 10px;
  }
}
.schema-faq-answer {
  padding: 15px 23px 15px 80px;
  position: relative;
}
@media (max-width: 859.98px) {
  .schema-faq-answer {
    padding: 12px 0px 12px 40px;
    font-size: 1.4rem;
    letter-spacing: 0.03em;
    text-align: justify;
  }
}
.schema-faq-answer:before {
  content: "A";
  font-family: "Times New Roman", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 28px;
  font-weight: normal;
  line-height: 1;
  position: absolute;
  top: 17px;
  left: 23px;
}
@media (max-width: 859.98px) {
  .schema-faq-answer:before {
    font-size: 1.7rem;
    letter-spacing: 0.03em;
    top: 17px;
    left: 15px;
  }
}

.icon {
  width: 25px;
  height: 25px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  vertical-align: middle;
  display: inline-block;
}
.icon-mail {
  background-image: url(../images/icon/mail.svg);
}
.icon-train {
  background-image: url(../images/icon/train.svg);
}
.icon-car {
  background-image: url(../images/icon/car.svg);
}

.label-ul {
  padding: 0 5px;
  display: inline-block;
}
@media (max-width: 859.98px) {
  .label-ul {
    padding: 0;
    margin-left: -2px;
    margin-right: -2px;
  }
}
.label-li {
  padding: 0 2px;
  vertical-align: middle;
  display: inline-block;
}
.label-li span {
  width: 100px;
  padding: 4px 0 3px;
  font-size: 1.3rem;
  line-height: 1;
  text-align: center;
  letter-spacing: 0.02em;
  color: #fff;
  background-color: rgba(112, 112, 112, 0.6);
  display: block;
}
@media (max-width: 859.98px) {
  .label-li span {
    width: auto;
    min-width: 78px;
    padding: 0;
    font-size: 1.2rem;
    line-height: 1.6;
  }
}
@media (max-width: 859.98px) {
  .label-li:nth-child(2) {
    display: none;
  }
}

.page-nav-m,
.page-nav {
  margin-bottom: 80px;
}
@media (max-width: 859.98px) {
  .page-nav-m,
.page-nav {
    margin-bottom: 30px;
    overflow: hidden;
  }
}
.page-nav-m ul,
.page-nav ul {
  padding: 0;
  margin: 0;
  text-align: center;
  list-style: none;
}
@media (max-width: 859.98px) {
  .page-nav-m ul,
.page-nav ul {
    padding: 0 36px;
    margin-left: -3px;
    margin-right: -3px;
    overflow: hidden;
  }
}
.page-nav-m ul li,
.page-nav ul li {
  padding: 0 10px;
  display: inline-block;
}
@media (max-width: 859.98px) {
  .page-nav-m ul li,
.page-nav ul li {
    width: 33.3333%;
    padding: 0 3px;
    float: left;
  }
}
.page-nav-m ul li a,
.page-nav ul li a {
  min-width: 212px;
  padding: 10px;
  line-height: 1;
  border: 1px solid #707070;
  border-radius: 20px;
  display: block;
}
@media (max-width: 859.98px) {
  .page-nav-m ul li a,
.page-nav ul li a {
    width: 100%;
    min-width: auto;
    padding: 10px 0;
    font-size: 1.1rem;
  }
}
.page-nav-m ul li a:hover,
.page-nav ul li a:hover {
  color: #930E0E;
  border: 1px solid #930E0E;
}
@media (max-width: 859.98px) {
  .faq .page-nav-m ul li,
.faq .page-nav ul li {
    width: 50%;
    margin-bottom: 10px;
  }
}

.page-nav-m ul li {
  width: 100px;
  float: none;
  display: inline-block;
}
.community-child .page-nav-m ul li a:hover {
  color: #006284;
  border: 1px solid #006284;
}

/*------------------------------------------------------------
	wp-pagenavi
------------------------------------------------------------*/
.wp-pagenavi {
  margin-top: 56px;
  font-size: 0;
  clear: both;
  text-align: center;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  /*
  @include media-breakpoint-down(lg) {
  	margin: 50px auto 0;
  	width: 100%;
  	max-width: 326px;
  	justify-content: space-between;
  	border-radius: 4px;
  	border: 1px solid #D9D9D9;
  	a,span {
  		margin: 0;
  		width: auto;
  		height: 44px;
  		font-size: 1.4rem;
  		border: none;
  	}
  	a:hover,span.current {
  		background-color: #fff;
  	}
  	.first, .last {
  		width: 36px !important;
  		display: block;
  		font-size: 0;
  		line-height: 0;
  	}
  	.first {
  		border-right: 1px solid #D9D9D9;
  		//background: url("../images/common/icon29.png") no-repeat center center / 10px auto;
  	}
  	.last {
  		border-left: 1px solid #D9D9D9;
  		//background: url("../images/common/icon30.png") no-repeat center center / 10px auto;
  	}
  	.previouspostslink,.nextpostslink {
  		flex: 1;
  		font-size: 1.4rem;
  		font-weight: 700;
  		line-height: 1;
  		background: #fff !important;
  	}
  	.previouspostslink {
  		&::before {
  			margin-top: 3px;
  			margin-right: 8px;
  			width: 5px;
  			height: 9px;
  			display: inline-block;
  			vertical-align: middle;
  			//background: url(../images/common/icon31.png) no-repeat center center / 100% auto;
  			content: '';
  		}
  	}
  	.nextpostslink {
  		&::after {
  			margin-left: 8px;
  			width: 5px;
  			height: 9px;
  			display: inline-block;
  			vertical-align: middle;
  			//background: url(../images/common/icon15.png) no-repeat center center / 100% auto;
  			content: '';
  		}
  	}
  	.extend {
  		display: none;
  	}
  	.current {
  		width: 36px;
  		border-left: 1px solid #D9D9D9;
  		border-right: 1px solid #D9D9D9;
  		background: #fff !important;
  	}
  	.page {
  		display: none;
  	}
  }
  */
}
.wp-pagenavi a, .wp-pagenavi span {
  margin: 8px 4px 0;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Times New Roman", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 2rem;
  line-height: 1;
  box-sizing: border-box;
  text-decoration: none;
  color: #b3b3b3;
  background: transparent;
}
.wp-pagenavi a:hover, .wp-pagenavi span.current {
  color: #000;
}
.wp-pagenavi .first, .wp-pagenavi .last, .wp-pagenavi .pages {
  display: none;
}
.wp-pagenavi .previouspostslink, .wp-pagenavi .nextpostslink {
  font-size: 0;
  line-height: 0;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  border-color: #fff;
}
.wp-pagenavi .previouspostslink:hover, .wp-pagenavi .nextpostslink:hover {
  border-color: #F2EDEE;
}
.wp-pagenavi .extend {
  font-size: 1.6rem;
  border-color: #fff;
}

body .hall-price-week-table.pc,
body .hall-price-holiday-table.pc {
  font-size: 1.5rem;
  white-space: nowrap;
}
body .hall-price-week-table.pc tbody td,
body .hall-price-holiday-table.pc tbody td {
  padding: 10px 15px;
  vertical-align: middle;
  border: none;
}
body .hall-price-week-table.pc tbody .column-1,
body .hall-price-holiday-table.pc tbody .column-1 {
  width: 80px;
  color: #fff;
  font-size: 1.4rem;
  text-align: center;
  background-color: #930E0E;
  vertical-align: middle;
}
body .hall-price-week-table.pc tbody .column-2,
body .hall-price-holiday-table.pc tbody .column-2 {
  width: 12px;
  padding: 0;
}
body .hall-price-week-table.pc tbody .column-3,
body .hall-price-week-table.pc tbody .column-4,
body .hall-price-week-table.pc tbody .column-5,
body .hall-price-week-table.pc tbody .column-6,
body .hall-price-holiday-table.pc tbody .column-3,
body .hall-price-holiday-table.pc tbody .column-4,
body .hall-price-holiday-table.pc tbody .column-5,
body .hall-price-holiday-table.pc tbody .column-6 {
  border-bottom: 1px solid #ccc;
}
body .hall-price-week-table.pc tbody .column-3,
body .hall-price-holiday-table.pc tbody .column-3 {
  width: 217px;
  background-color: #F9F7F2;
  border-left: 1px solid #ccc;
}
body .hall-price-week-table.pc tbody .column-5,
body .hall-price-holiday-table.pc tbody .column-5 {
  width: 217px;
  background-color: #F9F7F2;
  border-left: 1px solid #ccc;
}
body .hall-price-week-table.pc tbody .column-4,
body .hall-price-week-table.pc tbody .column-6,
body .hall-price-holiday-table.pc tbody .column-4,
body .hall-price-holiday-table.pc tbody .column-6 {
  text-align: center;
}
body .hall-price-week-table.pc tbody .column-6,
body .hall-price-holiday-table.pc tbody .column-6 {
  border-right: 1px solid #ccc;
}
body .hall-price-week-table.pc tbody .row-1 .column-3,
body .hall-price-week-table.pc tbody .row-1 .column-5,
body .hall-price-holiday-table.pc tbody .row-1 .column-3,
body .hall-price-holiday-table.pc tbody .row-1 .column-5 {
  padding: 0 10px;
  text-align: center;
  background-color: #ccc;
}
body .hall-price-week-table.pc tbody .row-6 .column-3,
body .hall-price-week-table.pc tbody .row-6 .column-4,
body .hall-price-week-table.pc tbody .row-6 .column-5,
body .hall-price-week-table.pc tbody .row-6 .column-6,
body .hall-price-holiday-table.pc tbody .row-6 .column-3,
body .hall-price-holiday-table.pc tbody .row-6 .column-4,
body .hall-price-holiday-table.pc tbody .row-6 .column-5,
body .hall-price-holiday-table.pc tbody .row-6 .column-6 {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #ccc;
}
body .hall-price-week-table.sp,
body .hall-price-holiday-table.sp {
  width: 100%;
  font-size: 1.4rem;
  border-bottom: 1px solid #ccc;
}
body .hall-price-week-table.sp caption,
body .hall-price-holiday-table.sp caption {
  display: none;
}
body .hall-price-week-table.sp tbody,
body .hall-price-holiday-table.sp tbody {
  width: 100%;
  display: table;
}
body .hall-price-week-table.sp tbody td,
body .hall-price-holiday-table.sp tbody td {
  padding: 8px 5px;
}
body .hall-price-week-table.sp tbody .column-1,
body .hall-price-holiday-table.sp tbody .column-1 {
  background-color: #F9F7F2;
  border-left: 1px solid #ccc;
}
body .hall-price-week-table.sp tbody .column-2,
body .hall-price-holiday-table.sp tbody .column-2 {
  text-align: right;
  border-right: 1px solid #ccc;
}
body .hall-price-week-table.sp tbody .row-1 .column-1,
body .hall-price-week-table.sp tbody .row-7 .column-1,
body .hall-price-holiday-table.sp tbody .row-1 .column-1,
body .hall-price-holiday-table.sp tbody .row-7 .column-1 {
  padding: 0;
  text-align: center;
  background-color: #ccc;
}
body .hall-price-week-table.sp tbody .row-6 .column-1,
body .hall-price-week-table.sp tbody .row-10 .column-1,
body .hall-price-holiday-table.sp tbody .row-6 .column-1,
body .hall-price-holiday-table.sp tbody .row-10 .column-1 {
  background-color: transparent;
  border-left: none;
}
body .hall-price-week-table.sp tbody .row-6 .column-2,
body .hall-price-week-table.sp tbody .row-10 .column-2,
body .hall-price-holiday-table.sp tbody .row-6 .column-2,
body .hall-price-holiday-table.sp tbody .row-10 .column-2 {
  border-right: none;
}
body .hall-price-holiday-table.pc tbody .column-1 {
  background-color: #DCCCA3;
}
body .hall-price-sunday-table.pc {
  font-size: 1.5rem;
  white-space: nowrap;
}
body .hall-price-sunday-table.pc tbody td {
  padding: 10px 15px;
  border: none;
}
body .hall-price-sunday-table.pc tbody .column-1 {
  width: 80px;
  color: #fff;
  font-size: 1.4rem;
  text-align: center;
  background-color: #DCCCA3;
  vertical-align: middle;
}
body .hall-price-sunday-table.pc tbody .column-2 {
  width: 12px;
  padding: 0;
}
body .hall-price-sunday-table.pc tbody .column-3 {
  width: 654px;
  background-color: #F9F7F2;
  border-left: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
body .hall-price-sunday-table.pc tbody .column-4 {
  text-align: center;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
body .hall-price-sunday-table.pc tbody .row-1 .column-3,
body .hall-price-sunday-table.pc tbody .row-1 .column-4 {
  border-top: 1px solid #ccc;
}
body .hall-price-sunday-table.sp {
  font-size: 1.4rem;
  border-top: 1px solid #ccc;
}
body .hall-price-sunday-table.sp caption {
  display: none;
}
body .hall-price-sunday-table.sp tbody {
  width: 100%;
  display: table;
}
body .hall-price-sunday-table.sp tbody td {
  padding: 8px 5px;
  white-space: nowrap;
  border-bottom: 1px solid #ccc;
}
body .hall-price-sunday-table.sp tbody .column-1 {
  background-color: #F9F7F2;
  border-left: 1px solid #ccc;
}
body .hall-price-sunday-table.sp tbody .column-2 {
  text-align: right;
  border-right: 1px solid #ccc;
}
body .rehearsal-price-weekday-table.pc,
body .rehearsal-price-holiday-table.pc {
  font-size: 1.5rem;
  white-space: nowrap;
}
body .rehearsal-price-weekday-table.pc tbody td,
body .rehearsal-price-holiday-table.pc tbody td {
  padding: 10px 15px;
  border: none;
}
body .rehearsal-price-weekday-table.pc tbody .column-1,
body .rehearsal-price-holiday-table.pc tbody .column-1 {
  width: 80px;
  color: #fff;
  font-size: 1.4rem;
  text-align: center;
  background-color: #930E0E;
  vertical-align: middle;
}
body .rehearsal-price-weekday-table.pc tbody .column-2,
body .rehearsal-price-holiday-table.pc tbody .column-2 {
  width: 12px;
  padding: 0;
}
body .rehearsal-price-weekday-table.pc tbody .column-3,
body .rehearsal-price-holiday-table.pc tbody .column-3 {
  width: 165px;
  background-color: #F9F7F2;
  border-top: 1px solid #ccc;
  border-left: 1px solid #ccc;
}
body .rehearsal-price-weekday-table.pc tbody .column-4,
body .rehearsal-price-holiday-table.pc tbody .column-4 {
  text-align: center;
  border-top: 1px solid #ccc;
  border-right: 1px solid #ccc;
}
body .rehearsal-price-weekday-table.pc tbody .row-1 .column-3,
body .rehearsal-price-weekday-table.pc tbody .row-1 .column-4,
body .rehearsal-price-holiday-table.pc tbody .row-1 .column-3,
body .rehearsal-price-holiday-table.pc tbody .row-1 .column-4 {
  border-top: 1px solid #ccc;
}
body .rehearsal-price-weekday-table.pc tbody .row-3 .column-3,
body .rehearsal-price-weekday-table.pc tbody .row-3 .column-4,
body .rehearsal-price-holiday-table.pc tbody .row-3 .column-3,
body .rehearsal-price-holiday-table.pc tbody .row-3 .column-4 {
  border-bottom: 1px solid #ccc;
}
body .rehearsal-price-weekday-table.sp,
body .rehearsal-price-holiday-table.sp {
  font-size: 1.4rem;
  border-top: 1px solid #ccc;
}
body .rehearsal-price-weekday-table.sp caption,
body .rehearsal-price-holiday-table.sp caption {
  display: none;
}
body .rehearsal-price-weekday-table.sp tbody,
body .rehearsal-price-holiday-table.sp tbody {
  width: 100%;
  display: table;
}
body .rehearsal-price-weekday-table.sp tbody td,
body .rehearsal-price-holiday-table.sp tbody td {
  padding: 8px 5px;
  white-space: nowrap;
  border-bottom: 1px solid #ccc;
}
body .rehearsal-price-weekday-table.sp tbody .column-1,
body .rehearsal-price-holiday-table.sp tbody .column-1 {
  background-color: #F9F7F2;
  border-left: 1px solid #ccc;
}
body .rehearsal-price-weekday-table.sp tbody .column-2,
body .rehearsal-price-holiday-table.sp tbody .column-2 {
  text-align: right;
  border-right: 1px solid #ccc;
}
body .rehearsal-price-holiday-table.pc tbody .column-1 {
  background-color: #DCCCA3;
}
@media (max-width: 859.98px) {
  body .rehearsal-price-piano-table {
    font-size: 1.4rem;
    border-top: 1px solid #ccc;
  }
}
@media (max-width: 859.98px) {
  body .rehearsal-price-piano-table tbody td {
    width: 100%;
    padding: 8px 5px;
    display: block;
  }
}
body .rehearsal-price-piano-table tbody .column-1 {
  width: 757px;
  background-color: #F9F7F2;
  border-top: 1px solid #ccc;
  border-left: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
@media (max-width: 859.98px) {
  body .rehearsal-price-piano-table tbody .column-1 {
    width: 100%;
    line-height: 1.6;
    border-top: none;
    border-right: 1px solid #ccc;
    border-bottom: none;
  }
}
body .rehearsal-price-piano-table tbody .column-2 {
  text-align: center;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
@media (max-width: 859.98px) {
  body .rehearsal-price-piano-table tbody .column-2 {
    text-align: right;
    border-top: none;
    border-left: 1px solid #ccc;
  }
}
body .rehearsal-price-piano-table tbody .row-1 .column-1,
body .rehearsal-price-piano-table tbody .row-1 .column-2 {
  border-top: 1px solid #ccc;
}
@media (max-width: 859.98px) {
  body .rehearsal-price-piano-table tbody .row-1 .column-1,
body .rehearsal-price-piano-table tbody .row-1 .column-2 {
    border-top: none;
  }
}
body .rehearsal-campaign-set-weekday-table,
body .rehearsal-campaign-set-holiday-table {
  font-size: 1.5rem;
  white-space: nowrap;
}
@media (max-width: 859.98px) {
  body .rehearsal-campaign-set-weekday-table,
body .rehearsal-campaign-set-holiday-table {
    font-size: 1.4rem;
  }
}
@media (max-width: 859.98px) {
  body .rehearsal-campaign-set-weekday-table caption,
body .rehearsal-campaign-set-holiday-table caption {
    display: none;
  }
}
body .rehearsal-campaign-set-weekday-table tbody td,
body .rehearsal-campaign-set-holiday-table tbody td {
  padding: 10px 15px;
  border: none;
}
@media (max-width: 859.98px) {
  body .rehearsal-campaign-set-weekday-table tbody td,
body .rehearsal-campaign-set-holiday-table tbody td {
    padding: 5px 5px;
  }
}
body .rehearsal-campaign-set-weekday-table tbody .column-1,
body .rehearsal-campaign-set-holiday-table tbody .column-1 {
  width: 80px;
  color: #fff;
  font-size: 1.4rem;
  text-align: center;
  background-color: #930E0E;
  vertical-align: middle;
}
@media (max-width: 859.98px) {
  body .rehearsal-campaign-set-weekday-table tbody .column-1,
body .rehearsal-campaign-set-holiday-table tbody .column-1 {
    width: 148px;
  }
}
body .rehearsal-campaign-set-weekday-table tbody .column-2,
body .rehearsal-campaign-set-holiday-table tbody .column-2 {
  width: 12px;
  padding: 0;
}
@media (max-width: 859.98px) {
  body .rehearsal-campaign-set-weekday-table tbody .column-2,
body .rehearsal-campaign-set-holiday-table tbody .column-2 {
    display: none;
  }
}
body .rehearsal-campaign-set-weekday-table tbody .row-1 .column-3,
body .rehearsal-campaign-set-holiday-table tbody .row-1 .column-3 {
  text-align: center;
  border: 1px solid #ccc;
}
@media (max-width: 859.98px) {
  body .rehearsal-campaign-set-weekday-table tbody .row-1 .column-3,
body .rehearsal-campaign-set-holiday-table tbody .row-1 .column-3 {
    text-align: right;
  }
}
body .rehearsal-campaign-set-holiday-table tbody .column-1 {
  background-color: #DCCCA3;
}
body .rehearsal-campaign-set-ex-weekday-table,
body .rehearsal-campaign-set-ex-holiday-table {
  font-size: 1.5rem;
  white-space: nowrap;
}
@media (max-width: 859.98px) {
  body .rehearsal-campaign-set-ex-weekday-table,
body .rehearsal-campaign-set-ex-holiday-table {
    font-size: 1.4rem;
    border-top: 1px solid #ccc;
  }
}
@media (max-width: 859.98px) {
  body .rehearsal-campaign-set-ex-weekday-table caption,
body .rehearsal-campaign-set-ex-holiday-table caption {
    display: none;
  }
}
@media (max-width: 859.98px) {
  body .rehearsal-campaign-set-ex-weekday-table tbody,
body .rehearsal-campaign-set-ex-holiday-table tbody {
    width: 100%;
    display: table;
  }
}
body .rehearsal-campaign-set-ex-weekday-table tbody td,
body .rehearsal-campaign-set-ex-holiday-table tbody td {
  padding: 10px 15px;
  border: none;
}
@media (max-width: 859.98px) {
  body .rehearsal-campaign-set-ex-weekday-table tbody td,
body .rehearsal-campaign-set-ex-holiday-table tbody td {
    padding: 8px 5px;
    border-bottom: 1px solid #ccc;
  }
}
body .rehearsal-campaign-set-ex-weekday-table tbody .column-1,
body .rehearsal-campaign-set-ex-holiday-table tbody .column-1 {
  width: 80px;
  color: #fff;
  font-size: 1.4rem;
  text-align: center;
  background-color: #930E0E;
  vertical-align: middle;
}
@media (max-width: 859.98px) {
  body .rehearsal-campaign-set-ex-weekday-table tbody .column-1,
body .rehearsal-campaign-set-ex-holiday-table tbody .column-1 {
    width: 184px;
    text-align: left;
    color: #000;
    background-color: #F9F7F2;
    border-left: 1px solid #ccc;
  }
}
body .rehearsal-campaign-set-ex-weekday-table tbody .column-2,
body .rehearsal-campaign-set-ex-holiday-table tbody .column-2 {
  width: 12px;
  padding: 0;
}
@media (max-width: 859.98px) {
  body .rehearsal-campaign-set-ex-weekday-table tbody .column-2,
body .rehearsal-campaign-set-ex-holiday-table tbody .column-2 {
    width: auto;
    padding: 8px 5px;
    text-align: right;
    border-right: 1px solid #ccc;
  }
}
body .rehearsal-campaign-set-ex-weekday-table tbody .column-3,
body .rehearsal-campaign-set-ex-holiday-table tbody .column-3 {
  background-color: #F9F7F2;
  border-left: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
body .rehearsal-campaign-set-ex-weekday-table tbody .column-4,
body .rehearsal-campaign-set-ex-holiday-table tbody .column-4 {
  text-align: center;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
body .rehearsal-campaign-set-ex-weekday-table tbody .row-1 .column-3,
body .rehearsal-campaign-set-ex-weekday-table tbody .row-1 .column-4,
body .rehearsal-campaign-set-ex-holiday-table tbody .row-1 .column-3,
body .rehearsal-campaign-set-ex-holiday-table tbody .row-1 .column-4 {
  border-top: 1px solid #ccc;
}
body .rehearsal-campaign-set-ex-holiday-table tbody .column-1 {
  background-color: #DCCCA3;
}
@media (max-width: 859.98px) {
  body .rehearsal-campaign-set-ex-holiday-table tbody .column-1 {
    background-color: #F9F7F2;
  }
}
body .instrument-price-table {
  font-size: 1.5rem;
  white-space: nowrap;
}
@media (max-width: 859.98px) {
  body .instrument-price-table {
    font-size: 1.4rem;
  }
}
body .instrument-price-table tbody td {
  padding: 10px 15px;
  border: none;
}
@media (max-width: 859.98px) {
  body .instrument-price-table tbody td {
    padding: 8px 5px;
  }
}
body .instrument-price-table tbody .column-1 {
  width: 177px;
  background-color: #F9F7F2;
  border-left: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
@media (max-width: 859.98px) {
  body .instrument-price-table tbody .column-1 {
    background-color: transparent;
  }
}
body .instrument-price-table tbody .column-2 {
  width: 307px;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
@media (max-width: 859.98px) {
  body .instrument-price-table tbody .column-2 {
    text-align: right;
  }
}
body .instrument-price-table tbody .column-3 {
  text-align: center;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
body .instrument-price-table tbody .row-1 .column-1,
body .instrument-price-table tbody .row-1 .column-2,
body .instrument-price-table tbody .row-1 .column-3 {
  border-top: 1px solid #ccc;
}
body .instrument-price-table tbody .row-1 .column-1,
body .instrument-price-table tbody .row-5 .column-1,
body .instrument-price-table tbody .row-7 .column-1 {
  background-color: #F9F7F2;
}
@media (max-width: 859.98px) {
  body .instrument-price-table tbody .row-1 .column-1,
body .instrument-price-table tbody .row-5 .column-1,
body .instrument-price-table tbody .row-7 .column-1 {
    border-right: 1px solid #ccc;
    border-bottom: none;
  }
}
body .tuning-price-table {
  font-size: 1.5rem;
  white-space: nowrap;
}
@media (max-width: 859.98px) {
  body .tuning-price-table {
    font-size: 1.4rem;
    border-top: 1px solid #ccc;
  }
}
body .tuning-price-table tbody td {
  padding: 10px 15px;
  border: none;
}
@media (max-width: 859.98px) {
  body .tuning-price-table tbody td {
    padding: 8px 5px;
  }
}
body .tuning-price-table tbody .column-1 {
  width: 484px;
  background-color: #F9F7F2;
  border-left: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
@media (max-width: 859.98px) {
  body .tuning-price-table tbody .column-1 {
    width: 100%;
    border-right: 1px solid #ccc;
    border-bottom: none;
    display: block;
  }
}
body .tuning-price-table tbody .column-2 {
  text-align: center;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
@media (max-width: 859.98px) {
  body .tuning-price-table tbody .column-2 {
    width: 100%;
    text-align: right;
    border-left: 1px solid #ccc;
    display: block;
  }
}
body .tuning-price-table tbody .row-1 .column-1,
body .tuning-price-table tbody .row-1 .column-2 {
  border-top: 1px solid #ccc;
}
@media (max-width: 859.98px) {
  body .tuning-price-table tbody .row-1 .column-1,
body .tuning-price-table tbody .row-1 .column-2 {
    border-top: none;
  }
}
body .hall-equipment-price-table.pc {
  font-size: 1.5rem;
  white-space: nowrap;
}
body .hall-equipment-price-table.pc tbody td {
  padding: 10px 15px;
  border: none;
}
body .hall-equipment-price-table.pc tbody .column-1 {
  width: 177px;
  background-color: #F9F7F2;
  border-left: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
body .hall-equipment-price-table.pc tbody .column-3 {
  border-left: 1px solid #ccc;
}
body .hall-equipment-price-table.pc tbody .column-4 {
  width: 207px;
  text-align: center;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
}
body .hall-equipment-price-table.pc tbody .column-2,
body .hall-equipment-price-table.pc tbody .column-3,
body .hall-equipment-price-table.pc tbody .column-4 {
  border-bottom: 1px solid #ccc;
}
body .hall-equipment-price-table.pc tbody .row-1 .column-1,
body .hall-equipment-price-table.pc tbody .row-1 .column-2,
body .hall-equipment-price-table.pc tbody .row-1 .column-3,
body .hall-equipment-price-table.pc tbody .row-1 .column-4 {
  border-top: 1px solid #ccc;
}
body .hall-equipment-price-table.sp {
  font-size: 1.4rem;
  border-top: 1px solid #ccc;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
}
body .hall-equipment-price-table.sp caption {
  display: none;
}
body .hall-equipment-price-table.sp tbody td {
  padding: 8px 5px;
  line-height: 1.6;
  border-top: none;
  border-bottom: 1px solid #ccc;
}
body .hall-equipment-price-table.sp tbody .column-2 {
  border-left: 1px solid #ccc;
}
body .hall-equipment-price-table.sp tbody .column-3 {
  text-align: right;
  white-space: nowrap;
  border-left: 1px solid #ccc;
  vertical-align: middle;
}
body .hall-equipment-price-table.sp tbody [colspan^="3"] {
  background-color: #F9F7F2;
}
body .hall-equipment-price-table.sp tbody .row-1 td,
body .hall-equipment-price-table.sp tbody .row-7 td,
body .hall-equipment-price-table.sp tbody .row-13 td {
  border-bottom: none;
}
body .community-equipment-price-table {
  font-size: 1.5rem;
  white-space: nowrap;
}
@media (max-width: 859.98px) {
  body .community-equipment-price-table {
    font-size: 1.4rem;
    white-space: normal;
  }
}
@media (max-width: 859.98px) {
  body .community-equipment-price-table caption {
    display: none;
  }
}
body .community-equipment-price-table tbody td {
  padding: 10px 15px;
  border: none;
}
@media (max-width: 859.98px) {
  body .community-equipment-price-table tbody td {
    padding: 8px 5px;
    line-height: 1.6;
  }
}
body .community-equipment-price-table tbody .column-1 {
  width: 729px;
  background-color: rgba(0, 98, 132, 0.07);
  border-left: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
@media (max-width: 859.98px) {
  body .community-equipment-price-table tbody .column-1 {
    width: 100%;
  }
}
body .community-equipment-price-table tbody .column-2 {
  text-align: center;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
@media (max-width: 859.98px) {
  body .community-equipment-price-table tbody .column-2 {
    text-align: right;
    white-space: nowrap;
    vertical-align: middle;
  }
}
body .community-equipment-price-table tbody .row-1 .column-1,
body .community-equipment-price-table tbody .row-1 .column-2 {
  border-top: 1px solid #ccc;
}
body .waiting-room-price {
  margin-bottom: 20px;
  font-size: 1.4rem;
  border: 1px solid #ccc;
  border-top: none;
}
body .waiting-room-price caption {
  display: none;
}
body .waiting-room-price tbody {
  width: 100%;
  display: table;
}
body .waiting-room-price tbody td {
  padding: 8px 5px;
  line-height: 1.6;
}
body .waiting-room-price tbody .column-1 {
  border-top: none;
}
body .waiting-room-price tbody .row-1 .column-1,
body .waiting-room-price tbody .row-3 .column-1 {
  background-color: rgba(0, 98, 132, 0.07);
  border-top: 1px solid #ccc;
  border-bottom: none;
}
@media (max-width: 859.98px) {
  body .waiting-room-price tbody .row-2 .column-1,
body .waiting-room-price tbody .row-4 .column-1 {
    text-align: right;
  }
}
body .waiting-room-weekday,
body .waiting-room-holiday {
  margin-bottom: 30px;
  font-size: 1.4rem;
  border: 1px solid #ccc;
  border-top: none;
  border-top: 1px solid #ccc;
}
body .waiting-room-weekday caption,
body .waiting-room-holiday caption {
  display: none;
}
body .waiting-room-weekday tbody td,
body .waiting-room-holiday tbody td {
  padding: 8px 5px;
  line-height: 1.6;
}
body .waiting-room-weekday tbody .column-1,
body .waiting-room-holiday tbody .column-1 {
  background-color: rgba(0, 98, 132, 0.07);
}
body .waiting-room-weekday tbody .column-2,
body .waiting-room-holiday tbody .column-2 {
  text-align: right;
}
body .waiting-room-holiday tbody .column-1 {
  background-color: rgba(215, 185, 142, 0.07);
}
body .waiting-room-price-table {
  font-size: 1.5rem;
  white-space: nowrap;
}
body .waiting-room-price-table tbody td {
  padding: 10px 0;
  text-align: center;
  border: none;
}
body .waiting-room-price-table tbody .column-1 {
  width: 211px;
  background-color: rgba(0, 98, 132, 0.07);
  border-left: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
body .waiting-room-price-table tbody .column-2,
body .waiting-room-price-table tbody .column-3,
body .waiting-room-price-table tbody .column-4 {
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
body .waiting-room-price-table tbody .row-1 .column-1,
body .waiting-room-price-table tbody .row-1 .column-2,
body .waiting-room-price-table tbody .row-1 .column-3,
body .waiting-room-price-table tbody .row-1 .column-4 {
  border-top: 1px solid #ccc;
}
body .waiting-room-weekday-table,
body .waiting-room-sunday-table {
  margin-bottom: 20px;
  font-size: 1.5rem;
  white-space: nowrap;
}
body .waiting-room-weekday-table tbody td,
body .waiting-room-sunday-table tbody td {
  padding: 10px 0;
  text-align: center;
  border: none;
}
body .waiting-room-weekday-table tbody .column-1,
body .waiting-room-sunday-table tbody .column-1 {
  width: 54px;
  vertical-align: middle;
  color: #fff;
  background-color: #006284;
  border-left: 1px solid #ccc;
}
body .waiting-room-weekday-table tbody .column-2,
body .waiting-room-sunday-table tbody .column-2 {
  width: 158px;
  background-color: rgba(0, 98, 132, 0.07);
  border-bottom: 1px solid #ccc;
}
body .waiting-room-weekday-table tbody .column-3,
body .waiting-room-weekday-table tbody .column-4,
body .waiting-room-weekday-table tbody .column-5,
body .waiting-room-sunday-table tbody .column-3,
body .waiting-room-sunday-table tbody .column-4,
body .waiting-room-sunday-table tbody .column-5 {
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
body .waiting-room-weekday-table tbody .row-1 .column-1,
body .waiting-room-weekday-table tbody .row-1 .column-2,
body .waiting-room-weekday-table tbody .row-1 .column-3,
body .waiting-room-weekday-table tbody .row-1 .column-4,
body .waiting-room-weekday-table tbody .row-1 .column-5,
body .waiting-room-sunday-table tbody .row-1 .column-1,
body .waiting-room-sunday-table tbody .row-1 .column-2,
body .waiting-room-sunday-table tbody .row-1 .column-3,
body .waiting-room-sunday-table tbody .row-1 .column-4,
body .waiting-room-sunday-table tbody .row-1 .column-5 {
  border-top: 1px solid #ccc;
}
body .waiting-room-sunday-table tbody .column-1 {
  background-color: #D7B98E;
}
body .waiting-room-sunday-table tbody .column-2 {
  background-color: rgba(215, 185, 142, 0.07);
}
body .guest-room-price-table {
  font-size: 1.5rem;
  white-space: nowrap;
}
@media (max-width: 859.98px) {
  body .guest-room-price-table {
    font-size: 1.4rem;
    white-space: normal;
  }
}
body .guest-room-price-table tbody td {
  padding: 10px 15px;
  vertical-align: middle;
  border: none;
}
@media (max-width: 859.98px) {
  body .guest-room-price-table tbody td {
    padding: 8px 5px;
    line-height: 1.6;
  }
}
body .guest-room-price-table tbody .column-1 {
  background-color: rgba(233, 196, 106, 0.07);
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
@media (max-width: 859.98px) {
  body .guest-room-price-table tbody .column-1 {
    width: 180px;
  }
}
body .guest-room-price-table tbody .column-2 {
  width: 202px;
  text-align: center;
  background-color: rgba(233, 196, 106, 0.07);
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
@media (max-width: 859.98px) {
  body .guest-room-price-table tbody .column-2 {
    width: auto;
    white-space: nowrap;
  }
}
body .guest-room-price-table tbody .column-3 {
  width: 330px;
  text-align: center;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
@media (max-width: 859.98px) {
  body .guest-room-price-table tbody .column-3 {
    text-align: right;
  }
}
@media (max-width: 859.98px) {
  body .guest-room-price-table tbody .row-1 .column-1 {
    border-right: none;
  }
}
@media (max-width: 859.98px) {
  body .guest-room-price-table tbody .row-2 .column-2,
body .guest-room-price-table tbody .row-3 .column-2,
body .guest-room-price-table tbody .row-4 .column-2 {
    border-right: none;
  }
}
body .guest-room-price-table tbody .row-1 .column-1,
body .guest-room-price-table tbody .row-1 .column-2,
body .guest-room-price-table tbody .row-1 .column-3 {
  border-top: 1px solid #ccc;
}
body .guest-room-price-table tbody .row-2 .column-1 {
  white-space: nowrap;
}
body .catering-price-table.pc {
  font-size: 1.5rem;
  white-space: nowrap;
}
body .catering-price-table.pc tbody td {
  padding: 10px 15px;
  vertical-align: middle;
  border: none;
}
body .catering-price-table.pc tbody td p {
  margin-bottom: 0;
  line-height: 1.6;
}
body .catering-price-table.pc tbody .column-1 {
  background-color: rgba(233, 196, 106, 0.07);
  border-left: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
body .catering-price-table.pc tbody .column-2,
body .catering-price-table.pc tbody .column-3,
body .catering-price-table.pc tbody .column-4,
body .catering-price-table.pc tbody .column-5 {
  text-align: center;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
body .catering-price-table.pc tbody .row-1 .column-1,
body .catering-price-table.pc tbody .row-1 .column-2 {
  border-right: 1px solid #e5e5e5;
}
body .catering-price-table.pc tbody .row-1 .column-1,
body .catering-price-table.pc tbody .row-1 .column-2,
body .catering-price-table.pc tbody .row-1 .column-5 {
  text-align: center;
  background-color: #ccc;
}
body .catering-price-table.sp {
  font-size: 1.4rem;
  border-top: 1px solid #ccc;
}
body .catering-price-table.sp caption {
  display: none;
}
body .catering-price-table.sp tbody {
  width: 100%;
  display: table;
}
body .catering-price-table.sp tbody td {
  padding: 8px 5px;
  vertical-align: middle;
  border-left: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
body .catering-price-table.sp tbody td p {
  margin-bottom: 0;
}
body .catering-price-table.sp tbody .column-1 {
  white-space: nowrap;
  background-color: rgba(233, 196, 106, 0.07);
  border-right: none;
}
body .catering-price-table.sp tbody .column-2 {
  font-size: 1.4rem;
  text-align: center;
  border-left: none;
}
body .catering-price-table.sp tbody .column-2 p {
  line-height: 1.6;
}
body .catering-price-table.sp tbody .column-2 p span {
  line-height: 1.6;
}
body .catering-price-table.sp tbody .column-3 {
  border-right: 1px solid #ccc;
}
body .catering-price-table.sp tbody .row-1 .column-1,
body .catering-price-table.sp tbody .row-1 .column-2,
body .catering-price-table.sp tbody .row-1 .column-3 {
  text-align: center;
  white-space: nowrap;
  background-color: #ccc;
}
body .community-user-guide {
  font-size: 1.5rem;
  white-space: nowrap;
}
@media (max-width: 859.98px) {
  body .community-user-guide {
    font-size: 1.4rem;
    white-space: normal;
    border-top: 1px solid #ccc;
  }
}
body .community-user-guide tbody td {
  padding: 10px 15px;
  border: none;
}
@media (max-width: 859.98px) {
  body .community-user-guide tbody td {
    padding: 8px 5px;
  }
}
body .community-user-guide tbody td p:last-of-type {
  margin-bottom: 0;
}
body .community-user-guide tbody td > br {
  display: none;
}
body .community-user-guide tbody .column-1 {
  width: 271px;
  background-color: rgba(0, 98, 132, 0.07);
  border-left: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
@media (max-width: 859.98px) {
  body .community-user-guide tbody .column-1 {
    width: 100%;
    border-right: 1px solid #ccc;
    display: block;
  }
}
body .community-user-guide tbody .column-2 {
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
@media (max-width: 859.98px) {
  body .community-user-guide tbody .column-2 {
    width: 100%;
    border-left: 1px solid #ccc;
    display: block;
  }
}
body .community-user-guide tbody .row-1 .column-1,
body .community-user-guide tbody .row-1 .column-2 {
  border-top: 1px solid #ccc;
}
@media (max-width: 859.98px) {
  body .community-user-guide tbody .row-1 .column-1,
body .community-user-guide tbody .row-1 .column-2 {
    border-top: none;
  }
}
body .hotel-charge.pc,
body .stay-day-use.pc {
  font-size: 1.5rem;
  white-space: nowrap;
}
body .hotel-charge.pc tbody td,
body .stay-day-use.pc tbody td {
  width: 33.3333%;
  padding: 10px 15px;
  text-align: center;
  border: none;
}
body .hotel-charge.pc tbody td p:last-of-type,
body .stay-day-use.pc tbody td p:last-of-type {
  margin-bottom: 0;
}
body .hotel-charge.pc tbody td p small,
body .stay-day-use.pc tbody td p small {
  margin: 0 10px;
}
body .hotel-charge.pc tbody td p .label-red,
body .stay-day-use.pc tbody td p .label-red {
  padding: 2px 4px;
  margin-left: 5px;
  font-size: 1.3rem;
  color: #fff;
  background-color: #DE0C0A;
}
body .hotel-charge.pc tbody td > br,
body .stay-day-use.pc tbody td > br {
  display: none;
}
body .hotel-charge.pc tbody .row-1 .column-1,
body .hotel-charge.pc tbody .row-1 .column-2,
body .hotel-charge.pc tbody .row-1 .column-3,
body .stay-day-use.pc tbody .row-1 .column-1,
body .stay-day-use.pc tbody .row-1 .column-2,
body .stay-day-use.pc tbody .row-1 .column-3 {
  background-color: rgba(233, 196, 106, 0.07);
  border-top: 1px solid #ccc;
}
body .hotel-charge.pc tbody .row-2 .column-1,
body .hotel-charge.pc tbody .row-2 .column-2,
body .hotel-charge.pc tbody .row-2 .column-3,
body .stay-day-use.pc tbody .row-2 .column-1,
body .stay-day-use.pc tbody .row-2 .column-2,
body .stay-day-use.pc tbody .row-2 .column-3 {
  border-bottom: 1px solid #ccc;
}
body .hotel-charge.pc tbody .column-1,
body .stay-day-use.pc tbody .column-1 {
  border-left: 1px solid #ccc;
}
body .hotel-charge.pc tbody .column-1,
body .hotel-charge.pc tbody .column-2,
body .hotel-charge.pc tbody .column-3,
body .stay-day-use.pc tbody .column-1,
body .stay-day-use.pc tbody .column-2,
body .stay-day-use.pc tbody .column-3 {
  border-right: 1px solid #ccc;
}
body .hotel-charge.sp,
body .stay-day-use.sp {
  width: 100%;
  font-size: 1.4rem;
  white-space: nowrap;
}
body .hotel-charge.sp tbody,
body .stay-day-use.sp tbody {
  width: 100%;
  display: table;
}
body .hotel-charge.sp tbody td,
body .stay-day-use.sp tbody td {
  padding: 8px 5px;
  text-align: center;
  border: none;
}
body .hotel-charge.sp tbody td p:last-of-type,
body .stay-day-use.sp tbody td p:last-of-type {
  margin-bottom: 0;
}
body .hotel-charge.sp tbody td p small,
body .stay-day-use.sp tbody td p small {
  margin: 0 10px;
}
body .hotel-charge.sp tbody td p .label-red,
body .stay-day-use.sp tbody td p .label-red {
  padding: 2px 4px;
  margin-left: 5px;
  font-size: 1.3rem;
  color: #fff;
  background-color: #DE0C0A;
}
body .hotel-charge.sp tbody td > br,
body .stay-day-use.sp tbody td > br {
  display: none;
}
body .hotel-charge.sp tbody .row-1 .column-1,
body .hotel-charge.sp tbody .row-1 .column-2,
body .hotel-charge.sp tbody .row-1 .column-3,
body .stay-day-use.sp tbody .row-1 .column-1,
body .stay-day-use.sp tbody .row-1 .column-2,
body .stay-day-use.sp tbody .row-1 .column-3 {
  background-color: rgba(233, 196, 106, 0.07);
  border-top: 1px solid #ccc;
}
body .hotel-charge.sp tbody .row-2 .column-1,
body .hotel-charge.sp tbody .row-4 .column-1,
body .hotel-charge.sp tbody .row-6 .column-1,
body .stay-day-use.sp tbody .row-2 .column-1,
body .stay-day-use.sp tbody .row-4 .column-1,
body .stay-day-use.sp tbody .row-6 .column-1 {
  border-bottom: 1px solid #ccc;
}
body .hotel-charge.sp tbody .row-1 .column-1,
body .hotel-charge.sp tbody .row-3 .column-1,
body .hotel-charge.sp tbody .row-5 .column-1,
body .stay-day-use.sp tbody .row-1 .column-1,
body .stay-day-use.sp tbody .row-3 .column-1,
body .stay-day-use.sp tbody .row-5 .column-1 {
  background-color: rgba(233, 196, 106, 0.07);
}
body .hotel-charge.sp tbody .column-1,
body .stay-day-use.sp tbody .column-1 {
  border-left: 1px solid #ccc;
}
body .hotel-charge.sp tbody .column-1,
body .hotel-charge.sp tbody .column-2,
body .hotel-charge.sp tbody .column-3,
body .stay-day-use.sp tbody .column-1,
body .stay-day-use.sp tbody .column-2,
body .stay-day-use.sp tbody .column-3 {
  border-right: 1px solid #ccc;
}
@media (max-width: 859.98px) {
  body .stay-user-guide,
body .stay-day-use-guide {
    font-size: 1.4rem;
    border-top: 1px solid #ccc;
  }
}
body .stay-user-guide tbody td,
body .stay-day-use-guide tbody td {
  padding: 10px 15px;
  border: none;
}
@media (max-width: 859.98px) {
  body .stay-user-guide tbody td,
body .stay-day-use-guide tbody td {
    padding: 8px 5px;
  }
}
body .stay-user-guide tbody td p:last-of-type,
body .stay-day-use-guide tbody td p:last-of-type {
  margin-bottom: 0;
}
body .stay-user-guide tbody td > br,
body .stay-day-use-guide tbody td > br {
  display: none;
}
body .stay-user-guide tbody .column-1,
body .stay-day-use-guide tbody .column-1 {
  width: 271px;
  background-color: rgba(233, 196, 106, 0.07);
  border-left: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
@media (max-width: 859.98px) {
  body .stay-user-guide tbody .column-1,
body .stay-day-use-guide tbody .column-1 {
    width: 100%;
    border-right: 1px solid #ccc;
    border-bottom: none;
    display: block;
  }
}
@media (max-width: 859.98px) {
  body .stay-user-guide tbody .column-1 p br,
body .stay-day-use-guide tbody .column-1 p br {
    display: none;
  }
}
body .stay-user-guide tbody .column-2,
body .stay-day-use-guide tbody .column-2 {
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
@media (max-width: 859.98px) {
  body .stay-user-guide tbody .column-2,
body .stay-day-use-guide tbody .column-2 {
    width: 100%;
    border-left: 1px solid #ccc;
    display: block;
  }
}
body .stay-user-guide tbody .row-1 .column-1,
body .stay-user-guide tbody .row-1 .column-2,
body .stay-user-guide tbody .row-1 .column-3,
body .stay-day-use-guide tbody .row-1 .column-1,
body .stay-day-use-guide tbody .row-1 .column-2,
body .stay-day-use-guide tbody .row-1 .column-3 {
  border-top: 1px solid #ccc;
}
@media (max-width: 859.98px) {
  body .stay-user-guide tbody .row-1 .column-1,
body .stay-user-guide tbody .row-1 .column-2,
body .stay-user-guide tbody .row-1 .column-3,
body .stay-day-use-guide tbody .row-1 .column-1,
body .stay-day-use-guide tbody .row-1 .column-2,
body .stay-day-use-guide tbody .row-1 .column-3 {
    border-top: none;
  }
}

.type {
  margin-top: 40px;
  margin-bottom: 80px;
  text-align: center;
}
.type-label {
  width: 142px;
  font-size: 1.4rem;
  letter-spacing: 0.02em;
  border: 1px solid;
  display: inline-block;
}

.modal-schedule .modal-header {
  border: none;
}
.modal-schedule .modal-header .btn-close {
  width: 48px;
  height: 48px;
  padding: 0;
  font-family: "游ゴシック", "游ゴシック体", "Yu Gothic", YuGothic, "Yu Gothic medium", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 48px;
  font-weight: 400;
  text-align: center;
  line-height: 24px;
  color: #ccc;
  border: none;
  background: transparent;
  outline: none;
  appearance: none;
  cursor: pointer;
}
.modal-schedule .modal-body {
  padding: 20px 80px 80px;
}
@media (max-width: 859.98px) {
  .modal-schedule .modal-body {
    padding: 20px 52px 60px;
  }
}
.modal-schedule .modal-body .room-ul {
  display: block;
}
.modal-schedule .modal-body .room-ul li {
  display: inline-block;
}
.modal-schedule-headline {
  margin-bottom: 10px;
  font-weight: 500;
}
.modal-schedule-list {
  padding: 20px 0;
  border-bottom: 1px solid #ccc;
  flex-wrap: wrap;
  display: flex;
}
@media (max-width: 859.98px) {
  .modal-schedule-list {
    border: none;
  }
}
.modal-schedule-list:last-of-type {
  border-bottom: none;
}
.modal-schedule-title {
  width: 60%;
  text-align: left;
}
@media (max-width: 859.98px) {
  .modal-schedule-title {
    width: 100%;
  }
}
.modal-schedule-title a {
  font-weight: 500;
  color: #930E0E;
  text-decoration: underline;
}
.modal-schedule-date {
  width: 40%;
}
@media (max-width: 859.98px) {
  .modal-schedule-date {
    width: 100%;
  }
}
.modal-schedule-open, .modal-schedule-start {
  font-size: 1.4rem;
  text-align: right;
  color: rgba(0, 0, 0, 0.5);
  display: block;
}
@media (max-width: 859.98px) {
  .modal-schedule-open, .modal-schedule-start {
    padding: 0 5px;
    display: inline-block;
  }
}

.community-child .modal-schedule .modal-body {
  padding: 20px 80px 80px;
}
@media (max-width: 859.98px) {
  .community-child .modal-schedule .modal-body {
    padding: 20px 25px 60px;
  }
}
.community-child .modal-schedule .modal-body .modal-schedule-headline {
  margin-bottom: 20px;
  font-size: 1.6rem;
  text-align: center;
}
.community-child .modal-schedule .modal-body .reserve-ul {
  width: 110px;
  margin: 0 auto 60px;
  font-size: 1.4rem;
  list-style: none;
}
.community-child .modal-schedule .modal-body .room-ul {
  margin-bottom: 15px;
  overflow: hidden;
  display: block;
}
.community-child .modal-schedule .modal-body .room-ul li {
  width: 33.3333%;
  float: left;
}
.community-child .modal-schedule .modal-body .room-label {
  margin-right: 5px;
}
.community-child .modal-schedule .modal-body .vacancy-note {
  display: block;
}
.community-child .modal-schedule .modal-body > p {
  font-size: 1.3rem;
}

.page {
  /*
  .table-wrap {
      @include media-breakpoint-down(md) {
          padding: 0 36px;
      }
  }
  */
}
.page-header {
  padding-top: 110px;
  margin-bottom: 55px;
}
@media (max-width: 859.98px) {
  .page-header {
    padding-top: 20px;
    margin-bottom: 30px;
  }
}
.page-title {
  font-family: "Times New Roman", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 24px;
  font-weight: 400;
  text-align: center;
  letter-spacing: 0.06em;
}
@media (max-width: 859.98px) {
  .page-title {
    font-size: 2rem;
    letter-spacing: 0.03em;
  }
}
.page-description {
  margin-top: 30px;
  margin-bottom: 60px;
  font-size: 1.5rem;
  text-align: center;
}
@media (max-width: 859.98px) {
  .page-description {
    padding: 0 36px;
    margin-bottom: 40px;
    text-align: left;
    letter-spacing: 0.01em;
  }
  .page-description br {
    display: none;
  }
}
.page-thumbnail {
  margin-bottom: 60px;
}
@media (max-width: 859.98px) {
  .page-thumbnail {
    margin-bottom: 30px;
  }
}
.page-image {
  width: 100%;
  height: 500px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (max-width: 859.98px) {
  .page-image {
    height: 196px;
  }
}
@media (max-width: 859.98px) {
  .page-content {
    padding: 0 36px;
  }
}
.page-content p {
  margin: 0 0 20px;
}
.page-section {
  padding: 40px 0;
}
@media (max-width: 859.98px) {
  .page-section {
    padding: 30px 36px;
  }
}
.page-section-gray {
  background-color: #F5F5F5;
}
.page .headline01 {
  margin-bottom: 30px;
  font-family: "Times New Roman", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 2.4rem;
  font-weight: 400;
  letter-spacing: 0.03em;
}
@media (max-width: 859.98px) {
  .page .headline01 {
    margin-bottom: 10px;
  }
}
.page .headline02 {
  margin-bottom: 50px;
  font-family: "Times New Roman", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 2.2rem;
  font-weight: 400;
  text-align: center;
  letter-spacing: 0.03em;
}
@media (max-width: 859.98px) {
  .page .headline02 {
    margin-bottom: 20px;
    font-size: 2rem;
  }
}
.page .headline03 {
  font-size: 1.6rem;
  font-weight: 400;
}
.page .headline-none {
  opacity: 0;
}
@media (max-width: 859.98px) {
  .page .text-box {
    padding: 0 0 60px;
    position: relative;
  }
}
.page .text-box p {
  font-size: 1.5rem;
  text-align: center;
  line-height: 2.1;
}
@media (max-width: 859.98px) {
  .page .text-box p {
    height: 342px;
    text-align: justify;
    line-height: 1.9;
    overflow: hidden;
  }
}
.page .text-box-more {
  display: none;
}
@media (max-width: 859.98px) {
  .page .text-box-more {
    content: "";
    width: 30px;
    height: 30px;
    margin-left: -15px;
    background-image: url(../images/common/more.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    left: 50%;
    bottom: 0px;
    display: block;
  }
}

.about .slick-box img {
  width: 100%;
}
.about .slick-box .slider-for {
  margin-bottom: 20px;
}
@media (max-width: 859.98px) {
  .about .slick-box .slider-for {
    margin-bottom: 15px;
  }
}
.about .slick-box .slider-for .slick-image {
  width: 100%;
  padding-top: 52%;
  background-size: cover;
  background-position: center;
  display: block;
}
.about .slick-box .slider-for .slick-prev {
  display: none !important;
}
.about .slick-box .slider-for .slick-next {
  right: 10px;
  background-image: url("../images/icon/slick-right.svg");
  background-size: 13px;
  background-position: center;
  background-repeat: no-repeat;
}
.about .slick-box .slider-for .slick-next:before {
  content: none;
}
.about .slick-box .slider-nav {
  position: relative;
}
.about .slick-box .slider-nav .slick-list {
  padding-right: 50px !important;
}
.about .slick-box .slider-nav .slick-slide {
  margin: 0 20px 0 0;
}
@media (max-width: 859.98px) {
  .about .slick-box .slider-nav .slick-slide {
    margin: 0 10px 0 0;
  }
}
.about .slick-box .slider-nav .slick-prev,
.about .slick-box .slider-nav .slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  width: 28px;
  height: 28px;
  padding: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: auto 100%;
  z-index: 10;
}
.about .slick-box .slider-nav .slick-prev {
  left: 0;
  background-image: url("../images/common/icon32.png");
}
.about .slick-box .slider-nav .slick-next {
  right: -1px;
  background-image: url("../images/common/icon33.png");
}
.about .slick-box .slider-nav li {
  cursor: pointer;
}
.about .slick-box li {
  vertical-align: top;
}
.about .visual {
  height: auto;
  padding-top: 65px;
  margin-bottom: 50px;
  position: relative;
}
@media (max-width: 859.98px) {
  .about .visual {
    padding: 36px 36px 0;
    margin-bottom: 30px;
  }
}
.about .visual-bg {
  width: 100%;
  height: 512px;
  position: absolute;
  top: 0;
  left: 0;
}
@media (max-width: 859.98px) {
  .about .visual-bg {
    height: auto;
    padding-top: 63%;
  }
}
.about-nav {
  padding: 40px 0;
  margin-bottom: 40px;
}
@media (max-width: 859.98px) {
  .about-nav {
    display: none;
  }
}
.about-nav ul {
  list-style: none;
  text-align: center;
}
.about-nav ul li {
  padding: 0 4px;
  display: inline-block;
}
.about-nav ul li a {
  width: 148px;
  padding: 8px 0;
  text-align: center;
  line-height: 1;
  border: 1px solid #707070;
  border-radius: 20px;
  transition: 0.5s;
  display: block;
}
.hall-child .about-nav ul li a:hover {
  color: #930E0E;
  border-color: #930E0E;
}
.community-child .about-nav ul li a:hover {
  color: #006284;
  border-color: #006284;
}
.stay-child .about-nav ul li a:hover {
  color: #E9C46A;
  border-color: #E9C46A;
}
.about.hall-child .visual-bg {
  background-color: #930E0E;
}
.about.hall-child .table-outline {
  padding: 0 15px;
  font-size: 15px;
  border-top: 1px solid #707070;
  border-bottom: 1px solid #707070;
}
@media (max-width: 859.98px) {
  .about.hall-child .table-outline {
    padding: 0;
    font-size: 1.4rem;
    border-left: 1px solid #707070;
    border-right: 1px solid #707070;
  }
}
.about.hall-child .table-outline tr:first-of-type th, .about.hall-child .table-outline tr:first-of-type td {
  border-top: none;
}
.about.hall-child .table-outline th, .about.hall-child .table-outline td {
  padding: 5px 15px;
  text-align: left;
  vertical-align: top;
  border-top: 1px dashed #d0d0d0;
}
.about.hall-child .table-outline th {
  width: 180px;
  font-weight: 400;
  letter-spacing: 0.4em;
}
@media (max-width: 859.98px) {
  .about.hall-child .seat {
    padding: 0 36px;
    background: transparent;
  }
}
.about.hall-child .seat-title {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 400;
}
@media (max-width: 859.98px) {
  .about.hall-child .seat-title {
    display: none;
  }
}
.about.hall-child .seat p {
  margin-bottom: 30px;
}
@media (max-width: 859.98px) {
  .about.hall-child .seat p {
    display: none;
  }
}
.about.hall-child .seat-row {
  align-items: center;
  flex-wrap: wrap;
  display: flex;
}
.about.hall-child .seat-col {
  flex: 0 0 50%;
}
@media (max-width: 859.98px) {
  .about.hall-child .seat-col {
    flex: 0 0 100%;
  }
}
@media (max-width: 859.98px) {
  .about.hall-child .seat-col:first-of-type {
    display: none;
  }
}
.about.hall-child .voice-title {
  margin-bottom: 20px;
  font-size: 2.4rem;
  font-weight: 400;
  letter-spacing: 0.03em;
}
@media (max-width: 859.98px) {
  .about.hall-child .voice-title {
    font-size: 1.6rem;
  }
}
.about.hall-child .voice-row {
  margin-bottom: 40px;
  display: flex;
}
@media (max-width: 859.98px) {
  .about.hall-child .voice-row {
    flex-wrap: wrap;
  }
}
.about.hall-child .voice-col:first-of-type {
  width: 150px;
}
@media (max-width: 859.98px) {
  .about.hall-child .voice-col:first-of-type {
    width: 100%;
  }
}
.about.hall-child .voice-col:last-of-type {
  padding-left: 30px;
}
@media (max-width: 859.98px) {
  .about.hall-child .voice-col:last-of-type {
    width: 100%;
    padding: 0;
  }
}
.about.hall-child .voice-col img {
  width: 110px;
  height: auto;
  float: left;
}
.about.hall-child .voice-profile {
  display: none;
}
@media (max-width: 859.98px) {
  .about.hall-child .voice-profile {
    width: calc(100% - 110px);
    padding-left: 15px;
    margin-bottom: 20px;
    float: left;
    display: block;
  }
}
.about.hall-child .voice-profile p {
  line-height: 1.8;
}
.about.hall-child .voice-profile p strong {
  font-size: 1.4rem;
  display: block;
}
.about.hall-child .voice-bubble {
  padding: 25px;
  border: 1px solid #930E0E;
  position: relative;
}
@media (max-width: 859.98px) {
  .about.hall-child .voice-bubble {
    width: 100%;
    padding: 20px 0 40px;
    font-size: 1.5rem;
    line-height: 1.9;
    border: none;
    border-top: 1px solid;
  }
}
@media (max-width: 859.98px) {
  .about.hall-child .voice-bubble p {
    margin-bottom: 20px;
    display: none;
  }
}
.about.hall-child .voice-bubble:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 20px 10px 0;
  border-color: transparent #930E0E transparent transparent;
  position: absolute;
  top: 40px;
  left: -20px;
}
@media (max-width: 859.98px) {
  .about.hall-child .voice-bubble:before {
    content: none;
  }
}
.about.hall-child .voice-bubble:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 20px 10px 0;
  border-color: transparent #fff transparent transparent;
  position: absolute;
  top: 40px;
  left: -19px;
}
@media (max-width: 859.98px) {
  .about.hall-child .voice-bubble:after {
    content: none;
  }
}
.about.hall-child .voice-bubble blockquote {
  padding-left: 10px;
  margin-top: 30px;
  border-left: 3px solid;
}
@media (max-width: 859.98px) {
  .about.hall-child .voice-bubble blockquote {
    display: none;
  }
}
.about.hall-child .voice-bubble blockquote p {
  font-size: 1.5rem;
  line-height: 1.5;
}
.about.hall-child .voice-bubble blockquote p strong {
  display: block;
}
.about.hall-child .voice-bubble .voice-more {
  display: none;
}
@media (max-width: 859.98px) {
  .about.hall-child .voice-bubble .voice-more {
    padding-right: 20px;
    margin: 0 auto 0;
    font-size: 1.2rem;
    background-image: url(../images/icon/open.svg);
    background-position: center right;
    background-repeat: no-repeat;
    display: table;
  }
}
.about.hall-child .voice-bubble .voice-more.open {
  background-image: url(../images/icon/close.svg);
}
.about.hall-child .waiting {
  margin-bottom: 160px;
}
@media (max-width: 859.98px) {
  .about.hall-child .waiting {
    padding: 30px 0;
  }
}
.about.hall-child .waiting-list {
  padding: 56px 0;
}
@media (max-width: 859.98px) {
  .about.hall-child .waiting-list {
    padding: 30px 36px;
  }
}
.about.hall-child .waiting-list:nth-of-type(odd) {
  background-color: #F5F5F5;
}
.about.hall-child .waiting-list:first-of-type .waiting-row {
  align-items: center;
}
.about.hall-child .waiting-row {
  padding: 0 0 0 30px;
  align-items: end;
  display: flex;
}
@media (max-width: 859.98px) {
  .about.hall-child .waiting-row {
    padding: 0;
    flex-wrap: wrap;
  }
}
.about.hall-child .waiting-col {
  padding: 0 30px;
}
@media (max-width: 859.98px) {
  .about.hall-child .waiting-col {
    padding: 0;
  }
}
.about.hall-child .waiting-col:last-of-type {
  padding-right: 0;
}
@media (max-width: 859.98px) {
  .about.hall-child .waiting-col:last-of-type {
    text-align: right;
  }
}
.about.hall-child .waiting-col .btn-more {
  margin-top: 20px;
}
@media (max-width: 859.98px) {
  .about.hall-child .waiting-col img {
    width: 100%;
    height: auto;
    margin-bottom: 15px;
  }
}
.about.hall-child .waiting-col .text {
  text-align: left;
}
@media (max-width: 859.98px) {
  .about.hall-child .waiting-col .text {
    font-size: 1.5rem;
  }
}
.about.hall-child .waiting-title {
  margin-bottom: 15px;
  font-size: 1.8rem;
  font-weight: 400;
  text-align: left;
}
@media (max-width: 859.98px) {
  .about.hall-child .waiting-title {
    margin-bottom: 10px;
  }
}
.about.hall-child .waiting img {
  display: block;
}
.about.community-child .visual-bg {
  background-color: rgba(0, 98, 132, 0.05);
}
.about.community-child .room-title {
  margin-bottom: 50px;
  font-family: "Times New Roman", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 24px;
  font-weight: 400;
  text-align: center;
  color: #fff;
  background-color: #006284;
}
@media (max-width: 859.98px) {
  .about.community-child .room-title {
    font-size: 1.6rem;
  }
}
.about.community-child .room-row {
  margin-left: -20px;
  margin-right: -20px;
  flex-wrap: wrap;
  display: flex;
}
.about.community-child .room-col {
  flex: 0 0 50%;
  padding: 0 20px;
}
@media (max-width: 859.98px) {
  .about.community-child .room-col {
    flex: 0 0 100%;
  }
  .about.community-child .room-col img {
    width: 100%;
    margin-bottom: 10px;
  }
}
.about.community-child .room-spec {
  padding: 12px 20px;
  margin-bottom: 40px;
  font-size: 1.4rem;
  border: 1px solid;
}
.about.community-child .room-spec-ul {
  list-style: none;
}
.about.community-child .room-spec-ul span {
  width: 100px;
  margin-right: 30px;
  display: inline-block;
}
.about.community-child .room h3 {
  margin-bottom: 10px;
  font-size: 1.5rem;
  font-weight: 400;
}
@media (max-width: 859.98px) {
  .about.community-child .room h3 {
    text-align: center;
  }
}
.about.community-child .room .btn-row {
  margin-left: -5px;
  margin-right: -5px;
  flex-wrap: wrap;
  display: flex;
}
.about.community-child .room .btn-row .btn-col {
  flex: 0 0 50%;
  padding: 0 5px;
}
@media (max-width: 859.98px) {
  .about.community-child .room .btn-row .btn-col {
    flex: 0 0 100%;
    margin-bottom: 10px;
  }
}
.about.community-child .room .btn-row .btn-download {
  min-width: auto;
  padding: 12px 0;
  font-size: 14px;
  font-weight: 400;
  background-color: #5AB8E2;
  display: block;
}
.about.community-child .room .btn-row .btn-download small {
  font-size: 12px;
}
.about.community-child .equipment {
  margin-bottom: 80px;
}
.about.community-child .equipment-title {
  margin-bottom: 15px;
  font-size: 2.4rem;
  font-weight: 400;
}
@media (max-width: 859.98px) {
  .about.community-child .equipment-title {
    font-size: 1.6rem;
  }
}
.about.community-child .equipment-ul {
  margin-bottom: 20px;
  list-style-position: inside;
}
@media (max-width: 859.98px) {
  .about.community-child .equipment-ul {
    font-size: 1.4rem;
  }
}
.about.community-child .equipment p a {
  padding: 0 3px;
  font-weight: bold;
}
@media (max-width: 859.98px) {
  .about.community-child .equipment p a {
    padding-bottom: 3px;
    border-bottom: 1px solid #006284;
  }
}
.about.community-child .equipment p a:hover {
  border-bottom: 1px solid #006284;
}
@media (max-width: 859.98px) {
  .about.community-child .equipment p {
    font-size: 1.4rem;
  }
}
.about.stay-child .visual-bg {
  background-color: rgba(233, 196, 106, 0.05);
}
.about.stay-child .visual-text {
  margin-top: 10px;
  font-size: 1.4rem;
  color: #707070;
}
@media (max-width: 859.98px) {
  .about.stay-child .visual-text {
    line-height: 1.7;
    text-align: left;
  }
}
@media (max-width: 859.98px) {
  .about.stay-child .about-nav {
    padding: 0;
    margin: 20px;
    display: block;
  }
}
@media (max-width: 859.98px) {
  .about.stay-child .about-nav ul {
    width: 90%;
    margin: auto;
  }
}
@media (max-width: 859.98px) {
  .about.stay-child .about-nav ul li {
    width: 50%;
  }
}
@media (max-width: 859.98px) {
  .about.stay-child .about-nav ul li a {
    width: auto;
    display: block;
  }
}
.about.stay-child .room-title {
  margin-bottom: 40px;
  font-family: "Times New Roman", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 2.4rem;
  font-weight: 400;
  text-align: center;
  color: #fff;
  background-color: #E9C46A;
}
@media (max-width: 859.98px) {
  .about.stay-child .room-title {
    margin-bottom: 35px;
    font-size: 1.6rem;
  }
}
.about.stay-child .room-group {
  margin-bottom: 40px;
}
.about.stay-child .room-group h3 {
  margin-bottom: 15px;
  font-family: "Times New Roman", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 2.4rem;
  font-weight: 400;
}
@media (max-width: 859.98px) {
  .about.stay-child .room-group h3 {
    margin-bottom: 10px;
    font-size: 2rem;
    letter-spacing: 0.03em;
  }
}
.about.stay-child .room-group p {
  font-size: 1.4rem;
}
.about.stay-child .room-group-row {
  flex-wrap: wrap;
  display: flex;
}
.about.stay-child .room-group-col {
  width: calc( 100% - 600px );
}
@media (max-width: 859.98px) {
  .about.stay-child .room-group-col {
    width: 100%;
  }
}
@media (max-width: 859.98px) {
  .about.stay-child .room-group-col:first-of-type {
    margin-bottom: 30px;
  }
}
.about.stay-child .room-group-col:last-of-type {
  width: 600px;
}
@media (max-width: 859.98px) {
  .about.stay-child .room-group-col:last-of-type {
    width: 100%;
  }
}
.about.stay-child .room-group-col p {
  font-size: 1.4rem;
}
@media (max-width: 859.98px) {
  .about.stay-child .room-group-col p {
    letter-spacing: -0.02em;
    line-height: 1.6;
  }
}
.about.stay-child .room-group .btn-row {
  margin-left: -4px;
  margin-right: -4px;
  flex-wrap: wrap;
  display: flex;
}
@media (max-width: 859.98px) {
  .about.stay-child .room-group .btn-row {
    margin: 0;
  }
}
.about.stay-child .room-group .btn-col {
  flex: 0 0 33.3333%;
  padding: 0 4px;
}
@media (max-width: 859.98px) {
  .about.stay-child .room-group .btn-col {
    flex: 0 0 100%;
    padding: 0;
    margin-bottom: 10px;
  }
}
.about.stay-child .room-group .btn-download {
  min-width: auto;
  background-color: #C19B5C;
  display: block;
}
.about.stay-child .room-table {
  border-left: 1px solid #CCCCCC;
  border-right: 1px solid #CCCCCC;
  border-bottom: 1px solid #CCCCCC;
}
@media (max-width: 859.98px) {
  .about.stay-child .room-table {
    font-size: 1.4rem;
    letter-spacing: 0.02em;
  }
}
@media (max-width: 859.98px) {
  .about.stay-child .room-table caption {
    display: none;
  }
}
.about.stay-child .room-table .column-1,
.about.stay-child .room-table .column-3 {
  width: 160px;
  background-color: rgba(233, 196, 106, 0.05);
}
@media (max-width: 859.98px) {
  .about.stay-child .room-table .column-1,
.about.stay-child .room-table .column-3 {
    width: auto;
    white-space: nowrap;
  }
}
.about.stay-child .room-table .column-3 {
  border-left: 1px solid #ccc;
}
.about.stay-child .room-table .column-2,
.about.stay-child .room-table .column-4 {
  width: 334px;
}
.about.stay-child .room-table td {
  padding: 12px 15px;
  border-top: 1px solid #CCCCCC;
}
.about.stay-child .room-table.en .column-1,
.about.stay-child .room-table.en .column-3 {
  width: 170px;
  background-color: rgba(233, 196, 106, 0.05);
}
.about.stay-child .amenities-table {
  border-left: 1px solid #CCCCCC;
  border-right: 1px solid #CCCCCC;
  border-bottom: 1px solid #CCCCCC;
}
@media (max-width: 859.98px) {
  .about.stay-child .amenities-table {
    font-size: 1.4rem;
    letter-spacing: 0.02em;
    border-right: none;
  }
}
.about.stay-child .amenities-table caption {
  display: none;
}
.about.stay-child .amenities-table .column-1,
.about.stay-child .amenities-table .column-3,
.about.stay-child .amenities-table .column-5 {
  width: 164px;
  background-color: rgba(233, 196, 106, 0.05);
}
.about.stay-child .amenities-table .column-2,
.about.stay-child .amenities-table .column-4,
.about.stay-child .amenities-table .column-6 {
  width: 165px;
  text-align: center;
  border-right: 1px solid #ccc;
}
.about.stay-child .amenities-table td {
  padding: 12px 15px;
  border-top: 1px solid #CCCCCC;
  vertical-align: middle;
}
.about.stay-child .facility-title {
  margin-bottom: 40px;
  font-family: "Times New Roman", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 2.4rem;
  font-weight: 400;
  text-align: center;
  color: #fff;
  background-color: #E9C46A;
}
@media (max-width: 859.98px) {
  .about.stay-child .facility-title {
    margin-bottom: 20px;
    font-size: 1.6rem;
    letter-spacing: 0.03em;
  }
}
.about.stay-child .facility-group p {
  font-size: 1.4rem;
}
.about.stay-child .facility-table {
  border-left: 1px solid #CCCCCC;
  border-right: 1px solid #CCCCCC;
  border-bottom: 1px solid #CCCCCC;
}
@media (max-width: 859.98px) {
  .about.stay-child .facility-table {
    font-size: 1.4rem;
    letter-spacing: 0.02em;
  }
}
@media (max-width: 859.98px) {
  .about.stay-child .facility-table caption {
    display: none;
  }
}
.about.stay-child .facility-table .column-1 {
  width: 160px;
  background-color: rgba(233, 196, 106, 0.05);
}
.about.stay-child .facility-table .column-3,
.about.stay-child .facility-table .column-5,
.about.stay-child .facility-table .column-7 {
  text-align: center;
  border-left: 1px solid #CCC;
  border-right: 1px solid #CCC;
}
.about.stay-child .facility-table td {
  padding: 12px 15px;
  border-top: 1px solid #CCCCCC;
  vertical-align: middle;
}
.about.stay-child .facility-table.sp {
  border-top: 1px solid #ccc;
}
.about.stay-child .facility-table.sp td {
  padding: 8px 5px;
  white-space: nowrap;
  border-top: none;
  background-color: transparent;
}
.about.stay-child .facility-table.sp .column-2,
.about.stay-child .facility-table.sp .column-4 {
  min-width: 42px;
  text-align: center;
  border-left: 1px solid #ccc;
}
.about.stay-child .facility-table.sp .row-1 .column-1,
.about.stay-child .facility-table.sp .row-5 .column-1,
.about.stay-child .facility-table.sp .row-7 .column-1 {
  background-color: rgba(233, 196, 106, 0.07);
  border-bottom: none;
}
.about.stay-child .facility-table.sp .row-2 .column-1 {
  white-space: normal;
}
.about.stay-child .facility-table.sp .row-2 td,
.about.stay-child .facility-table.sp .row-3 td,
.about.stay-child .facility-table.sp .row-4 td,
.about.stay-child .facility-table.sp .row-6 td {
  border-bottom: 1px solid #ccc;
}

.contact .site-main,
.thanks .site-main {
  margin-bottom: 200px;
}
.contact .page-title span,
.thanks .page-title span {
  font-size: 1.6rem;
  letter-spacing: 0.03em;
  display: block;
}
.contact .breadcrumb-ul,
.thanks .breadcrumb-ul {
  padding: 0;
  margin-bottom: 60px;
  list-style: none;
  text-align: center;
}
@media (max-width: 859.98px) {
  .contact .breadcrumb-ul,
.thanks .breadcrumb-ul {
    display: none;
  }
}
.contact .breadcrumb-li,
.thanks .breadcrumb-li {
  padding: 0 20px;
  position: relative;
  display: inline-block;
}
.contact .breadcrumb-li:after,
.thanks .breadcrumb-li:after {
  content: "";
  width: 40px;
  height: 1px;
  background-color: #707070;
  position: absolute;
  top: 50%;
  right: -20px;
}
.contact .breadcrumb-li span,
.thanks .breadcrumb-li span {
  padding: 8px 30px;
  font-size: 1.4rem;
  border: 1px solid #707070;
}
.contact .breadcrumb-li.active span,
.thanks .breadcrumb-li.active span {
  color: #fff;
  background-color: #707070;
}
.contact .breadcrumb-li:last-child:after,
.thanks .breadcrumb-li:last-child:after {
  content: none;
}
.contact .page-content h2,
.thanks .page-content h2 {
  margin-bottom: 38px;
}
.contact .page-content p,
.thanks .page-content p {
  font-size: 1.5rem;
  line-height: 2.3;
  letter-spacing: 0.03em;
}
.contact .page-content .wp-block-buttons,
.thanks .page-content .wp-block-buttons {
  margin-top: 90px;
}
.contact .page-content .has-text-align-center,
.thanks .page-content .has-text-align-center {
  line-height: 1.9;
}
@media (max-width: 859.98px) {
  .contact .page-content .has-text-align-center,
.thanks .page-content .has-text-align-center {
    text-align: left;
  }
}
@media (max-width: 859.98px) {
  .contact .page-content .has-text-align-center br:first-of-type,
.thanks .page-content .has-text-align-center br:first-of-type {
    display: none;
  }
}
.contact .contact-table,
.thanks .contact-table {
  width: 100%;
  margin-bottom: 90px;
  display: table;
}
@media (max-width: 859.98px) {
  .contact .contact-table,
.thanks .contact-table {
    margin-bottom: 30px;
  }
}
.contact .contact-row,
.thanks .contact-row {
  display: table-row;
}
@media (max-width: 859.98px) {
  .contact .contact-row,
.thanks .contact-row {
    display: block;
  }
}
.contact .contact-cell,
.thanks .contact-cell {
  padding: 15px 0;
  vertical-align: top;
  display: table-cell;
}
@media (max-width: 859.98px) {
  .contact .contact-cell,
.thanks .contact-cell {
    width: 100%;
    padding: 8px 0;
    display: block;
  }
}
.contact .contact-cell.align-top,
.thanks .contact-cell.align-top {
  vertical-align: top;
}
.contact .contact-cell:first-of-type,
.thanks .contact-cell:first-of-type {
  width: 220px;
  padding-top: 26px;
  padding-bottom: 0;
}
@media (max-width: 859.98px) {
  .contact .contact-cell:first-of-type,
.thanks .contact-cell:first-of-type {
    width: auto;
    padding-top: 8px;
  }
}
.contact .contact-cell:first-of-type small,
.thanks .contact-cell:first-of-type small {
  font-size: 1.4rem;
  line-height: 1.4;
  color: #707070;
  display: block;
}
.contact .contact-note,
.thanks .contact-note {
  margin-top: -5px;
  line-height: 1.5 !important;
  color: #707070;
}
.contact .wpcf7,
.thanks .wpcf7 {
  margin-top: 60px;
}
@media (max-width: 859.98px) {
  .contact .wpcf7,
.thanks .wpcf7 {
    margin-top: 40px;
  }
}
@media (max-width: 859.98px) {
  .contact .wpcf7-list-item,
.thanks .wpcf7-list-item {
    width: 50%;
    margin-left: 0;
    font-size: 1.4rem;
  }
}
.contact .wpcf7-list-item:first-of-type,
.thanks .wpcf7-list-item:first-of-type {
  margin-left: 0;
}
.contact .wpcf7-list-item label,
.thanks .wpcf7-list-item label {
  cursor: pointer;
}
.contact .wpcf7 textarea.wpcf7-form-control,
.contact .wpcf7 input[type=text].wpcf7-form-control,
.contact .wpcf7 input[type=email].wpcf7-form-control,
.thanks .wpcf7 textarea.wpcf7-form-control,
.thanks .wpcf7 input[type=text].wpcf7-form-control,
.thanks .wpcf7 input[type=email].wpcf7-form-control {
  width: 100%;
  padding: 20px;
  font-size: 1.5rem;
  border: 1px solid #707070;
}
@media (max-width: 859.98px) {
  .contact .wpcf7 textarea.wpcf7-form-control,
.contact .wpcf7 input[type=text].wpcf7-form-control,
.contact .wpcf7 input[type=email].wpcf7-form-control,
.thanks .wpcf7 textarea.wpcf7-form-control,
.thanks .wpcf7 input[type=text].wpcf7-form-control,
.thanks .wpcf7 input[type=email].wpcf7-form-control {
    padding: 8px 10px;
    font-size: 1.6rem;
    line-height: 1.6;
  }
}
.contact .wpcf7 textarea.wpcf7-form-control.half,
.contact .wpcf7 input[type=text].wpcf7-form-control.half,
.contact .wpcf7 input[type=email].wpcf7-form-control.half,
.thanks .wpcf7 textarea.wpcf7-form-control.half,
.thanks .wpcf7 input[type=text].wpcf7-form-control.half,
.thanks .wpcf7 input[type=email].wpcf7-form-control.half {
  width: 272px;
}
@media (max-width: 859.98px) {
  .contact .wpcf7 textarea.wpcf7-form-control.half,
.contact .wpcf7 input[type=text].wpcf7-form-control.half,
.contact .wpcf7 input[type=email].wpcf7-form-control.half,
.thanks .wpcf7 textarea.wpcf7-form-control.half,
.thanks .wpcf7 input[type=text].wpcf7-form-control.half,
.thanks .wpcf7 input[type=email].wpcf7-form-control.half {
    width: 100%;
  }
}
.contact .wpcf7 textarea.wpcf7-not-valid,
.contact .wpcf7 input[type=text].wpcf7-not-valid,
.contact .wpcf7 input[type=email].wpcf7-not-valid,
.thanks .wpcf7 textarea.wpcf7-not-valid,
.thanks .wpcf7 input[type=text].wpcf7-not-valid,
.thanks .wpcf7 input[type=email].wpcf7-not-valid {
  background-color: rgba(222, 12, 10, 0.04);
  border: 1px solid #DE0C0A;
}
.contact .wpcf7 textarea.wpcf7-not-valid::-webkit-input-placeholder,
.contact .wpcf7 input[type=text].wpcf7-not-valid::-webkit-input-placeholder,
.contact .wpcf7 input[type=email].wpcf7-not-valid::-webkit-input-placeholder,
.thanks .wpcf7 textarea.wpcf7-not-valid::-webkit-input-placeholder,
.thanks .wpcf7 input[type=text].wpcf7-not-valid::-webkit-input-placeholder,
.thanks .wpcf7 input[type=email].wpcf7-not-valid::-webkit-input-placeholder {
  /* WebKit, Blink, Edge */
  color: #DE0C0A;
}
.contact .wpcf7 textarea.wpcf7-not-valid:-ms-input-placeholder,
.contact .wpcf7 input[type=text].wpcf7-not-valid:-ms-input-placeholder,
.contact .wpcf7 input[type=email].wpcf7-not-valid:-ms-input-placeholder,
.thanks .wpcf7 textarea.wpcf7-not-valid:-ms-input-placeholder,
.thanks .wpcf7 input[type=text].wpcf7-not-valid:-ms-input-placeholder,
.thanks .wpcf7 input[type=email].wpcf7-not-valid:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #DE0C0A;
}
.contact .wpcf7 textarea.wpcf7-not-valid::placeholder,
.contact .wpcf7 input[type=text].wpcf7-not-valid::placeholder,
.contact .wpcf7 input[type=email].wpcf7-not-valid::placeholder,
.thanks .wpcf7 textarea.wpcf7-not-valid::placeholder,
.thanks .wpcf7 input[type=text].wpcf7-not-valid::placeholder,
.thanks .wpcf7 input[type=email].wpcf7-not-valid::placeholder {
  /* Others */
  color: #DE0C0A;
}
.contact .wpcf7 select.wpcf7-form-control,
.thanks .wpcf7 select.wpcf7-form-control {
  min-width: 272px;
  padding: 20px;
  font-size: 1.5rem;
  color: #000;
  background-image: url(../images/icon/form-select.svg);
  background-position: center right 20px;
  background-repeat: no-repeat;
  background-color: transparent;
  border: 1px solid #707070;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
}
@media (max-width: 859.98px) {
  .contact .wpcf7 select.wpcf7-form-control,
.thanks .wpcf7 select.wpcf7-form-control {
    min-width: 100%;
    padding: 8px 10px;
    font-size: 1.6rem;
    line-height: 1.6;
  }
}
.contact .wpcf7 select.wpcf7-not-valid,
.thanks .wpcf7 select.wpcf7-not-valid {
  background-color: rgba(222, 12, 10, 0.04);
  border: 1px solid #DE0C0A;
}
.contact .wpcf7 select.wpcf7-not-valid::-webkit-input-placeholder,
.thanks .wpcf7 select.wpcf7-not-valid::-webkit-input-placeholder {
  /* WebKit, Blink, Edge */
  color: #DE0C0A;
}
.contact .wpcf7 select.wpcf7-not-valid:-ms-input-placeholder,
.thanks .wpcf7 select.wpcf7-not-valid:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #DE0C0A;
}
.contact .wpcf7 select.wpcf7-not-valid::placeholder,
.thanks .wpcf7 select.wpcf7-not-valid::placeholder {
  /* Others */
  color: #DE0C0A;
}
.contact .wpcf7 textarea,
.thanks .wpcf7 textarea {
  min-height: 100px;
  resize: vertical;
}
.contact .wpcf7 input[type=radio],
.thanks .wpcf7 input[type=radio] {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  position: relative;
  right: 0;
  bottom: 0;
  left: 0;
  height: 16px;
  width: 16px;
  vertical-align: -0.6rem;
  transition: all 0.15s ease-out 0s;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  margin: 0.4rem 2px;
  outline: none;
  border: 2px solid #000;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}
.contact .wpcf7 input[type=radio]:checked:before,
.thanks .wpcf7 input[type=radio]:checked:before {
  background: #000;
  transform: scale(1);
}
.contact .wpcf7 input[type=radio]:before,
.thanks .wpcf7 input[type=radio]:before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin: 2px;
  transform: scale(0);
  transition: all ease-out 0.25s;
}
.contact .wpcf7 button,
.contact .wpcf7 input[type=submit],
.thanks .wpcf7 button,
.thanks .wpcf7 input[type=submit] {
  height: 40px;
  padding: 5px 20px;
  margin: 0 10px;
  line-height: 1;
  color: #000;
  background-color: transparent;
  border: 1px solid #000;
  cursor: pointer;
  outline: none;
  appearance: none;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  box-sizing: border-box;
  transition: 0.3s ease-out;
}
.contact .wpcf7 button:hover,
.contact .wpcf7 input[type=submit]:hover,
.thanks .wpcf7 button:hover,
.thanks .wpcf7 input[type=submit]:hover {
  color: #fff;
  background-image: url(../images/icon/arrow-right-white.svg);
  background-color: #D7B98E;
  border: 1px solid #D7B98E;
}
.contact .wpcf7 button small,
.contact .wpcf7 input[type=submit] small,
.thanks .wpcf7 button small,
.thanks .wpcf7 input[type=submit] small {
  margin-top: 3px;
  line-height: 1;
  display: block;
}
.contact .wpcf7 .wpcf7-not-valid-tip,
.thanks .wpcf7 .wpcf7-not-valid-tip {
  display: none;
}
.contact .wpcf7 .wpcf7-response-output,
.thanks .wpcf7 .wpcf7-response-output {
  padding: 40px;
  margin-bottom: 60px;
  text-align: center;
  color: #DE0C0A;
  border: 1px solid #DE0C0A !important;
  background-color: rgba(222, 12, 10, 0.04);
}
@media (max-width: 859.98px) {
  .contact .wpcf7 .wpcf7-response-output,
.thanks .wpcf7 .wpcf7-response-output {
    width: 100%;
    padding: 30px 14px;
    margin: 2em 0 1em;
  }
}
.contact .wpcf7 .wpcf7-response-output .note,
.thanks .wpcf7 .wpcf7-response-output .note {
  font-size: 1.8rem;
}
@media (max-width: 859.98px) {
  .contact .wpcf7 .wpcf7-response-output .note,
.thanks .wpcf7 .wpcf7-response-output .note {
    font-size: 1.4rem;
    line-height: 1.4;
  }
}
.contact .wpcf7 .wpcf7-response-output .wpcf7-response-output-ul,
.thanks .wpcf7 .wpcf7-response-output .wpcf7-response-output-ul {
  width: 370px;
  padding: 0;
  margin: auto;
  text-align: left;
  list-style: none;
}
@media (max-width: 859.98px) {
  .contact .wpcf7 .wpcf7-response-output .wpcf7-response-output-ul,
.thanks .wpcf7 .wpcf7-response-output .wpcf7-response-output-ul {
    width: auto;
  }
}
.contact .wpcf7 .wpcf7-response-output .wpcf7-response-output-ul li,
.thanks .wpcf7 .wpcf7-response-output .wpcf7-response-output-ul li {
  padding-left: 20px;
}
@media (max-width: 859.98px) {
  .contact .wpcf7 .wpcf7-response-output .wpcf7-response-output-ul li,
.thanks .wpcf7 .wpcf7-response-output .wpcf7-response-output-ul li {
    padding-left: 5px;
    font-size: 1.2rem;
  }
}
.contact .wpcf7 .wpcf7-response-output .wpcf7-response-output-ul li:before,
.thanks .wpcf7 .wpcf7-response-output .wpcf7-response-output-ul li:before {
  content: "";
  width: 16px;
  height: 14px;
  margin-right: 10px;
  background-image: url(../images/icon/caution.svg);
  background-position: center left;
  background-repeat: no-repeat;
  display: inline-block;
}
.contact .wpcf7 .custom-wpcf7c-confirmed .wpcf7-response-output,
.thanks .wpcf7 .custom-wpcf7c-confirmed .wpcf7-response-output {
  display: none;
}
.contact .wpcf7 .custom-wpcf7c-confirmed textarea,
.contact .wpcf7 .custom-wpcf7c-confirmed input[type=text],
.contact .wpcf7 .custom-wpcf7c-confirmed input[type=email],
.thanks .wpcf7 .custom-wpcf7c-confirmed textarea,
.thanks .wpcf7 .custom-wpcf7c-confirmed input[type=text],
.thanks .wpcf7 .custom-wpcf7c-confirmed input[type=email] {
  outline: none;
  border: none;
}
.contact .wpcf7 .custom-wpcf7c-confirmed textarea::-webkit-input-placeholder,
.contact .wpcf7 .custom-wpcf7c-confirmed input[type=text]::-webkit-input-placeholder,
.contact .wpcf7 .custom-wpcf7c-confirmed input[type=email]::-webkit-input-placeholder,
.thanks .wpcf7 .custom-wpcf7c-confirmed textarea::-webkit-input-placeholder,
.thanks .wpcf7 .custom-wpcf7c-confirmed input[type=text]::-webkit-input-placeholder,
.thanks .wpcf7 .custom-wpcf7c-confirmed input[type=email]::-webkit-input-placeholder {
  /* WebKit, Blink, Edge */
  color: transparent;
}
.contact .wpcf7 .custom-wpcf7c-confirmed textarea:-ms-input-placeholder,
.contact .wpcf7 .custom-wpcf7c-confirmed input[type=text]:-ms-input-placeholder,
.contact .wpcf7 .custom-wpcf7c-confirmed input[type=email]:-ms-input-placeholder,
.thanks .wpcf7 .custom-wpcf7c-confirmed textarea:-ms-input-placeholder,
.thanks .wpcf7 .custom-wpcf7c-confirmed input[type=text]:-ms-input-placeholder,
.thanks .wpcf7 .custom-wpcf7c-confirmed input[type=email]:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: transparent;
}
.contact .wpcf7 .custom-wpcf7c-confirmed textarea::placeholder,
.contact .wpcf7 .custom-wpcf7c-confirmed input[type=text]::placeholder,
.contact .wpcf7 .custom-wpcf7c-confirmed input[type=email]::placeholder,
.thanks .wpcf7 .custom-wpcf7c-confirmed textarea::placeholder,
.thanks .wpcf7 .custom-wpcf7c-confirmed input[type=text]::placeholder,
.thanks .wpcf7 .custom-wpcf7c-confirmed input[type=email]::placeholder {
  /* Others */
  color: transparent;
}
.contact .wpcf7 .custom-wpcf7c-confirmed textarea,
.thanks .wpcf7 .custom-wpcf7c-confirmed textarea {
  padding: 15px 20px;
}
.contact .wpcf7 .custom-wpcf7c-confirmed .wpcf7-select,
.thanks .wpcf7 .custom-wpcf7c-confirmed .wpcf7-select {
  border: none;
  background-image: none;
}
.contact .wpcf7 .custom-wpcf7c-confirmed .require,
.thanks .wpcf7 .custom-wpcf7c-confirmed .require {
  display: none;
}
.contact .wpcf7 .custom-wpcf7c-confirmed .contact-note,
.thanks .wpcf7 .custom-wpcf7c-confirmed .contact-note {
  display: none;
}
.contact .wpcf7 .wpcf7-confirm,
.thanks .wpcf7 .wpcf7-confirm {
  padding: 2px 35px 0 10px;
  background-image: url(../images/icon/arrow-right.svg);
  background-position: center right 10px;
  background-repeat: no-repeat;
}
.contact .wpcf7 .wpcf7-back,
.thanks .wpcf7 .wpcf7-back {
  padding: 2px 10px 0 35px;
  background-image: url(../images/icon/arrow-left.svg);
  background-position: center left 10px;
  background-repeat: no-repeat;
}
.contact .wpcf7 .wpcf7-back:hover,
.thanks .wpcf7 .wpcf7-back:hover {
  background-image: url(../images/icon/arrow-left-white.svg);
}
.contact .wpcf7 .wpcf7-submit,
.thanks .wpcf7 .wpcf7-submit {
  background-color: #D7B98E !important;
  border: 1px solid #D7B98E !important;
  transition: 0.3s;
}
.contact .wpcf7 .wpcf7-submit:hover,
.thanks .wpcf7 .wpcf7-submit:hover {
  color: #fff;
  background-image: none !important;
  opacity: 0.7;
}
.contact .wpcf7 .require,
.thanks .wpcf7 .require {
  padding: 3px 5px;
  margin-left: 5px;
  font-size: 1.4rem;
  color: #fff;
  background-color: #DE0C0A;
}
@media (max-width: 859.98px) {
  .contact .wpcf7 .require,
.thanks .wpcf7 .require {
    font-size: 1.1rem;
    vertical-align: middle;
  }
}
.contact .wpcf7-spinner,
.thanks .wpcf7-spinner {
  display: none;
}

.contact .step ul {
  list-style: none;
}
.contact .step ul li {
  float: left;
}
.contact .step-1 {
  margin: auto;
  text-align: center;
  display: table;
}
.contact .step-2 {
  display: none;
}
.contact .custom-wpcf7c-confirmed .step-1 {
  display: none;
}
.contact .custom-wpcf7c-confirmed .step-2 {
  margin: auto;
  text-align: center;
  display: table;
}

.contact.stay-child .wpcf7 button,
.contact.stay-child .wpcf7 input[type=submit] {
  line-height: 1;
  cursor: pointer;
  outline: none;
  appearance: none;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  box-sizing: border-box;
  transition: 0.3s ease-out;
}
.contact.stay-child .wpcf7 button small,
.contact.stay-child .wpcf7 input[type=submit] small {
  display: block;
}
.contact.stay-child .wpcf7-confirm {
  width: 162px;
  height: 55px;
  padding: 12px 12px;
  text-align: left;
  background-image: url(../images/icon/arrow-right.svg);
}
.contact.stay-child .wpcf7-confirm:hover {
  color: #fff;
  background-image: url(../images/icon/arrow-right-white.svg);
  background-color: #E9C46A;
  border: 1px solid #E9C46A;
}
.contact.stay-child .wpcf7-back {
  width: 162px;
  height: 55px;
  padding: 12px 12px;
  text-align: right;
  background-image: url(../images/icon/arrow-left.svg);
  background-position: center left 10px;
  background-repeat: no-repeat;
}
.contact.stay-child .wpcf7-back:hover {
  background-image: url(../images/icon/arrow-left-white.svg);
  background-color: #E9C46A;
}
.contact.stay-child .wpcf7-submit {
  height: 55px;
  color: #fff;
  background-color: #E9C46A !important;
  background-repeat: no-repeat;
  border: 1px solid #E9C46A !important;
}
.contact.stay-child .wpcf7-submit:hover {
  color: #fff;
  background-image: none !important;
}

.home {
  /*
  .first-view {
      height: 100vh;
      @include media-breakpoint-down(md) {
          height: auto;
      }
  }
  */
}
.home-visual {
  width: 100%;
  height: 652px;
  background-size: cover;
  background-position: bottom center;
  background-repeat: no-repeat;
}
@media (max-width: 859.98px) {
  .home-visual {
    height: 70vh;
  }
}
.home-title {
  font-family: "Times New Roman", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 35px;
  font-weight: 400;
  text-align: center;
  letter-spacing: 0.1em;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.7);
  color: #fff;
  vertical-align: middle;
}
@media (max-width: 859.98px) {
  .home-title {
    font-size: 1.6rem;
  }
}
.home-title span {
  margin-top: 20px;
  font-size: 23px;
  letter-spacing: 0;
  display: block;
}
@media (max-width: 859.98px) {
  .home-title span {
    margin-top: 5px;
    font-size: 1.4rem;
  }
}
.home-scroll {
  height: 135px;
  margin: 60px 0 0;
  text-align: center;
  position: relative;
}
@media (max-width: 859.98px) {
  .home-scroll {
    height: 90px;
    margin: 40px 0 0;
  }
}
.home-scroll-down {
  height: 50px;
  position: absolute;
  left: 50%;
}
.home-scroll-down span {
  position: absolute;
  left: -12px;
  top: -15px;
  color: #000;
  font-family: "Times New Roman", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 1rem;
  letter-spacing: 0.05em;
}
.home-scroll-down:before {
  content: "";
  width: 36px;
  height: 10px;
  margin-left: -17px;
  background-image: url(../images/common/arrow-bottom.svg);
  background-position: center bottom;
  background-repeat: no-repeat;
  position: absolute;
  left: 50%;
  bottom: -2px;
}
.home-scroll-down:after {
  content: "";
  /*線の形状*/
  width: 1px;
  height: 30px;
  background: #000;
  /*描画位置*/
  position: absolute;
  top: 0;
  /*線の動き1.4秒かけて動く。永遠にループ*/
  animation: pathmove 1.4s ease-in-out infinite;
  opacity: 0;
}
.home-news {
  padding-bottom: 87px;
  /*
  .label {
      &-li {
          &:nth-child(2) {
              @include media-breakpoint-down(md) {
                  display: none;
              }
          }
      }
  }
  */
}
.home-news-header h2 {
  margin-bottom: 30px;
  font-family: "Times New Roman", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-weight: 400;
  font-size: 2.4rem;
  letter-spacing: 0.03em;
}
@media (max-width: 859.98px) {
  .home-news-header h2 {
    margin-bottom: 15px;
    font-size: 2rem;
    line-height: 1;
  }
}
.home-news-box {
  padding: 40px 60px;
  border: 1px solid #888;
}
@media (max-width: 859.98px) {
  .home-news-box {
    padding: 24px 15px;
    margin: 0 36px;
  }
}
.home-news-footer {
  text-align: right;
}
@media (max-width: 859.98px) {
  .home-news-footer {
    margin-top: 20px;
  }
}
.home-about {
  margin-bottom: 60px;
  overflow: hidden;
}
@media (max-width: 859.98px) {
  .home-about {
    margin-bottom: 40px;
  }
}
.home-about .container-m {
  position: relative;
}
.home-about-bg {
  width: 9999px;
  height: 100%;
  background-color: #f2e8d9;
  position: absolute;
  right: 0;
  z-index: -1;
}
.home-about-symbol {
  width: 589px;
  position: absolute;
  top: 57px;
  left: 600px;
}
@media (max-width: 859.98px) {
  .home-about-symbol {
    width: 100%;
    position: static;
  }
}
.home-about-symbol-image {
  width: 100%;
  height: auto;
}
.home-about-content {
  width: 530px;
  padding: 110px 0 90px;
}
@media (max-width: 859.98px) {
  .home-about-content {
    width: 100%;
    padding: 30px 0;
    position: relative;
  }
}
.home-about-content h2 {
  margin-bottom: 30px;
  font-family: "Times New Roman", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 38px;
  font-weight: 400;
  letter-spacing: 0.03em;
}
@media (max-width: 859.98px) {
  .home-about-content h2 {
    font-size: 2rem;
    text-align: center;
  }
}
@media (max-width: 859.98px) {
  .home-about-content p {
    height: 384px;
    padding: 0 36px;
    margin-bottom: 80px;
    font-size: 1.6rem;
    text-align: justify;
    overflow: hidden;
    position: relative;
  }
}
@media (max-width: 859.98px) {
  .home-about-content-more {
    content: "";
    width: 30px;
    height: 30px;
    margin-left: -15px;
    background-image: url(../images/common/more.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    left: 50%;
    bottom: 40px;
    display: block;
  }
}
.home-bnr {
  padding-bottom: 140px;
}
@media (max-width: 859.98px) {
  .home-bnr {
    padding: 0 36px 50px;
  }
}
.home-bnr-ul {
  text-align: center;
}
.home-bnr-li {
  padding: 0 5px;
  display: inline-block;
}
@media (max-width: 859.98px) {
  .home-bnr-li {
    padding: 0;
    margin-bottom: 10px;
  }
}
.home-bnr-li a {
  transition: 0.3s;
  display: block;
}
.home-bnr-li a:hover {
  opacity: 0.7;
}
.home-facility-header h2 {
  margin-bottom: 120px;
  font-family: "Times New Roman", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 38px;
  font-weight: 300;
  text-align: center;
}
@media (max-width: 859.98px) {
  .home-facility-header h2 {
    margin-bottom: 47px;
    font-size: 20px;
  }
}
.home-facility .container-m {
  height: 100%;
  position: relative;
}
.home-facility-section {
  height: 460px;
  margin-bottom: 160px;
  background-color: whitesmoke;
  position: relative;
}
@media (max-width: 859.98px) {
  .home-facility-section {
    height: auto;
    margin: 0;
    display: inline-block;
  }
}
.home-facility-section:last-of-type {
  margin-bottom: 0;
}
.home-facility-box {
  width: 400px;
  min-height: 366px;
  padding: 30px 20px;
  background-color: rgba(255, 255, 255, 0.9);
  -moz-box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.16);
  -webkit-box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.16);
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.16);
  position: absolute;
  top: 40px;
  left: 0;
  z-index: 5;
  transform: translate(0, 100px);
  transition: 2s;
  opacity: 0;
  filter: alpha(opacity=0);
}
@media (max-width: 859.98px) {
  .home-facility-box {
    width: auto;
    margin: 0 36px 36px;
    position: static;
  }
}
.home-facility-box.effect-scroll {
  opacity: 1;
  filter: alpha(opacity=100);
  transform: translate(0, 0);
}
.home-facility-box h3 {
  margin-bottom: 15px;
  font-family: "Times New Roman", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.2;
}
@media (max-width: 859.98px) {
  .home-facility-box h3 {
    font-size: 22px;
  }
}
.home-facility-box h3 span {
  font-size: 1.8rem;
  color: #BA9843;
  display: block;
}
@media (max-width: 859.98px) {
  .home-facility-box h3 span {
    font-size: 1.6rem;
  }
}
.home-facility-box p {
  margin-bottom: 40px;
  font-size: 1.5rem;
}
@media (max-width: 859.98px) {
  .home-facility-box p {
    margin-bottom: 20px;
  }
}
.home-facility-box .btn-more {
  font-family: "Times New Roman", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 1.4rem;
  letter-spacing: 0.06em;
}
.home-facility-thumbnail {
  width: 736px;
  position: absolute;
  top: -60px;
  right: 0;
}
@media (max-width: 859.98px) {
  .home-facility-thumbnail {
    width: 100%;
    margin-bottom: 20px;
    position: static;
  }
}
.home-facility-image {
  width: 100%;
  height: auto;
}
.home-facility-footer {
  width: 100%;
  text-align: right;
  position: absolute;
  right: 30px;
  bottom: 30px;
}
@media (max-width: 859.98px) {
  .home-facility-footer {
    position: static;
  }
}
.home-facility-community .home-facility-thumbnail {
  left: 0;
  right: auto;
}
.home-facility-community .home-facility-box {
  left: auto;
  right: 0;
}

/*高さ・位置・透過が変化して線が上から下に動く*/
@keyframes pathmove {
  0% {
    height: 0;
    top: 0;
    opacity: 0;
  }
  30% {
    height: 30px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 50px;
    opacity: 0;
  }
}
@media (max-width: 859.98px) {
  .hall-child.guide .page-nav {
    margin-bottom: 40px;
  }
}
@media (max-width: 859.98px) {
  .hall-child.guide .page-nav ul {
    text-align: center;
  }
}
@media (max-width: 859.98px) {
  .hall-child.guide .page-nav ul li {
    width: 50%;
    margin-bottom: 10px;
    float: none;
    display: inline-block;
  }
}
@media (max-width: 859.98px) {
  .hall-child.guide .page-nav ul li:last-child {
    width: auto;
  }
  .hall-child.guide .page-nav ul li:last-child a {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.hall-child.guide .page-content {
  margin-bottom: 160px;
}
.hall-child.guide .page-content h2 {
  margin-bottom: 20px;
  font-family: "Times New Roman", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 2.4rem;
  font-weight: 400;
}
@media (max-width: 859.98px) {
  .hall-child.guide .page-content h2 {
    margin-bottom: 15px;
    font-size: 2rem;
  }
}
.hall-child.guide .page-content h3 {
  margin-bottom: 20px;
  font-family: "Times New Roman", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 2.4rem;
  font-weight: 400;
  border-bottom: 1px solid #ccc;
}
@media (max-width: 859.98px) {
  .hall-child.guide .page-content h3 {
    padding-bottom: 10px;
    font-size: 2rem;
    line-height: 1.6;
    letter-spacing: 0.03em;
  }
}
.hall-child.guide .page-content p {
  font-size: 1.5rem;
}
.hall-child.guide .hall-use-table,
.hall-child.guide .rehearsal-use-table {
  margin-bottom: 80px;
  border: 1px solid #ccc;
}
@media (max-width: 859.98px) {
  .hall-child.guide .hall-use-table,
.hall-child.guide .rehearsal-use-table {
    font-size: 1.5rem;
    border-top: none;
  }
}
.hall-child.guide .hall-use-table tbody td,
.hall-child.guide .rehearsal-use-table tbody td {
  padding: 20px;
  border-top: 1px solid #ccc;
}
@media (max-width: 859.98px) {
  .hall-child.guide .hall-use-table tbody td,
.hall-child.guide .rehearsal-use-table tbody td {
    width: 100%;
    padding: 8px 15px;
    display: block;
  }
}
.hall-child.guide .hall-use-table tbody td > br,
.hall-child.guide .rehearsal-use-table tbody td > br {
  display: none;
}
.hall-child.guide .hall-use-table tbody td p:last-of-type,
.hall-child.guide .rehearsal-use-table tbody td p:last-of-type {
  margin-bottom: 0;
}
.hall-child.guide .hall-use-table tbody .column-1,
.hall-child.guide .rehearsal-use-table tbody .column-1 {
  background-color: #F9F7F2;
}
@media (max-width: 859.98px) {
  .hall-child.guide .hall-use-table tbody .column-1,
.hall-child.guide .rehearsal-use-table tbody .column-1 {
    border-bottom: none;
  }
}
@media (max-width: 859.98px) {
  .hall-child.guide .hall-use-table tbody .column-2,
.hall-child.guide .rehearsal-use-table tbody .column-2 {
    border-top: none;
  }
}
.hall-child.guide .hall-use-table {
  margin-bottom: 80px;
}
.hall-child.guide .rehearsal-use-table {
  margin-bottom: 40px;
}
.hall-child.guide .btn-wrap {
  margin-bottom: 80px;
}

.stay-child.guide .page-content {
  margin-bottom: 160px;
}
@media (max-width: 859.98px) {
  .stay-child.guide .page-content {
    margin-bottom: 40px;
  }
}
.stay-child.guide .price-section:first-of-type {
  padding-top: 0;
}

.stay-child.guide .headline01 {
  text-align: center;
}

.access-map {
  padding-bottom: 40px;
}
@media (max-width: 859.98px) {
  .access-map {
    padding: 0 36px 20px;
  }
}
.access-map .googlemap {
  margin-bottom: 40px;
}
@media (max-width: 859.98px) {
  .access-map .googlemap {
    width: 100%;
    padding-top: 75%;
    margin-bottom: 30px;
    position: relative;
  }
}
@media (max-width: 859.98px) {
  .access-map .googlemap iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
  }
}
.access-map .address-cell {
  vertical-align: top;
  display: inline-block;
}
.access-map .address-cell:last-of-type {
  padding-left: 50px;
}
@media (max-width: 859.98px) {
  .access-map .address-cell:last-of-type {
    display: none;
  }
}
.access-map .address-cell strong {
  width: 250px;
  display: block;
}
@media (max-width: 859.98px) {
  .access-map .address-cell strong {
    width: 100%;
  }
}
@media (max-width: 859.98px) {
  .access-map .address-cell p {
    font-size: 1.5rem;
  }
}
.access-map-en .address-cell:last-of-type {
  padding: 0;
}
.access-map-en .address-cell strong {
  width: auto;
  margin-right: 40px;
  margin-bottom: 20px;
  display: inline-block;
}
.access-traffic {
  padding-top: 40px;
}
@media (max-width: 859.98px) {
  .access-traffic {
    padding: 40px 36px 0;
  }
}
.access-traffic-title {
  padding: 10px 20px;
  margin-bottom: 47px;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.03em;
  background-color: #d8ba90;
}
.access-traffic-subtitle {
  margin-bottom: 20px;
}
.access-traffic .traffic-wrap {
  padding: 0 20px;
  margin-bottom: 60px;
}
@media (max-width: 859.98px) {
  .access-traffic .traffic-wrap {
    padding: 0;
  }
}
.access-traffic .traffic-ul {
  padding: 0 0 0 10px;
  margin: 0;
  list-style: none;
}
@media (max-width: 859.98px) {
  .access-traffic .traffic-li {
    padding-left: 30px;
    margin-bottom: 10px;
    line-height: 1.6;
    position: relative;
  }
}
.access-traffic .traffic-li:before {
  content: "";
  width: 20px;
  height: 20px;
  margin-top: -5px;
  margin-right: 15px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  border-radius: 20px;
  vertical-align: middle;
  display: inline-block;
}
@media (max-width: 859.98px) {
  .access-traffic .traffic-li:before {
    margin-top: 5px;
    margin-right: 20px;
    position: absolute;
    top: 0;
    left: 0;
  }
}
.access-traffic .traffic-li:nth-child(1):before {
  background-color: #FFD400;
}
.access-traffic .traffic-li:nth-child(2):before {
  background-color: #6CBB5A;
}
.access-traffic .traffic-li:nth-child(3):before {
  background-color: #C1A470;
}
.access-traffic .traffic-li:nth-child(4):before {
  background-color: #00AC9B;
}
.access-traffic .traffic-li strong {
  width: 250px;
  display: inline-block;
}
@media (max-width: 859.98px) {
  .access-traffic .traffic-li strong {
    width: 100%;
    display: block;
  }
}
.access-traffic .traffic-text {
  padding-left: 20px;
}
.access-traffic .icon {
  width: 40px;
  height: 40px;
  margin-right: 20px;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  -ms-border-radius: 40px;
  border-radius: 40px;
}
.access-traffic .icon-train {
  background-size: 22px;
  background-color: #91B1BC;
}
.access-traffic .icon-car {
  background-size: 23px;
  background-color: #A8B3A0;
}

@media (max-width: 859.98px) {
  .access.stay-child .access-map-en .address-cell:last-of-type {
    display: block;
  }
}

.news-navigation {
  margin-bottom: 80px;
}
@media (max-width: 859.98px) {
  .news-navigation {
    margin-bottom: 40px;
  }
}
.news-navigation-ul {
  padding: 0;
  margin: 0;
  text-align: center;
  list-style: none;
}
@media (max-width: 859.98px) {
  .news-navigation-ul {
    padding: 0 36px;
    margin-left: -5px;
    margin-right: -5px;
  }
}
.news-navigation-li {
  padding: 0 5px;
  display: inline-block;
}
@media (max-width: 859.98px) {
  .news-navigation-li {
    width: 32%;
  }
}
.news-navigation-li a {
  width: 142px;
  font-size: 1.4rem;
  letter-spacing: 0.02em;
  color: #fff;
  background-color: rgba(112, 112, 112, 0.2);
  transition: 0.3s;
  display: inline-block;
}
@media (max-width: 859.98px) {
  .news-navigation-li a {
    width: 100%;
    font-size: 1.3rem;
    background-color: rgba(112, 112, 112, 0.2);
    display: block;
  }
}
.news-navigation-li a:hover {
  opacity: 0.8;
  filter: alpha(opacity=80);
}
.archive-news-box {
  padding: 0 36px;
}
.archive-news-li {
  padding: 5px 0;
}
.archive-news-li time {
  width: 135px;
  vertical-align: middle;
  display: inline-block;
}
@media (max-width: 859.98px) {
  .archive-news-li time {
    width: auto;
    font-size: 1.4rem;
  }
}
.archive-news-title {
  font-size: 1.6rem;
  font-weight: 400;
  display: inline-block;
}
@media (max-width: 859.98px) {
  .archive-news-title {
    margin-top: 0;
    display: block;
  }
}

.event-header {
  margin-top: 170px;
  margin-bottom: 86px;
}
@media (max-width: 859.98px) {
  .event-header {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}
.event-row {
  margin-left: -15px;
  margin-right: -15px;
  align-items: center;
  flex-wrap: wrap;
  display: flex;
}
@media (max-width: 859.98px) {
  .event-row {
    margin: 0;
  }
}
.event-col {
  padding: 0 15px;
}
@media (max-width: 859.98px) {
  .event-col {
    padding: 0;
  }
}
.event-col:first-of-type {
  width: 60%;
}
@media (max-width: 859.98px) {
  .event-col:first-of-type {
    width: 100%;
    order: 2;
  }
}
.event-col:last-of-type {
  width: 40%;
}
@media (max-width: 859.98px) {
  .event-col:last-of-type {
    width: 100%;
    order: 1;
  }
}
.event-title {
  font-size: 21px;
}
@media (max-width: 859.98px) {
  .event-title {
    padding: 0 36px;
    margin-bottom: 10px;
    font-size: 1.6rem;
    line-height: 1.6;
  }
}
@media (max-width: 859.98px) {
  .event-schedule {
    padding: 0 36px;
  }
}
@media (max-width: 859.98px) {
  .event-date {
    font-size: 1.7rem;
    font-weight: 500;
    line-height: 1.6;
    display: block;
  }
}
@media (max-width: 859.98px) {
  .event-open, .event-start {
    font-size: 1.5rem;
    font-weight: 500;
  }
}
.event-thumbnail {
  padding: 20px;
  background-color: #F9F7F2;
}
@media (max-width: 859.98px) {
  .event-thumbnail {
    margin-bottom: 20px;
  }
}
.event-image {
  margin: auto;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
}
@media (max-width: 859.98px) {
  .event-image {
    width: 128px;
  }
}
.event-file {
  margin-top: 30px;
}
@media (max-width: 859.98px) {
  .event-file {
    padding: 0 36px;
  }
}
.event-file ul {
  margin-left: -10px;
  margin-right: -10px;
  list-style: none;
  flex-wrap: wrap;
  display: flex;
}
.event-file li {
  width: 33%;
  padding: 0 10px;
}
@media (max-width: 859.98px) {
  .event-file li {
    width: 70%;
    margin-bottom: 10px;
  }
}
.event-file a {
  width: 100%;
  padding: 15px 15px 15px 60px;
  line-height: 1;
  color: #fff;
  background-image: url(../images/icon/pdf-white.svg);
  background-position: center left 15px;
  background-repeat: no-repeat;
  background-color: #930E0E;
  transition: 0.5s;
  display: inline-block;
}
.event-file a small {
  margin-top: 5px;
  font-size: 1.4rem;
  line-height: 1;
  display: block;
}
.event-file a:hover {
  opacity: 0.7;
}
.event-table {
  width: 100%;
  border-left: 1px solid #d7d7d7;
  border-right: 1px solid #d7d7d7;
  border-bottom: 1px solid #d7d7d7;
  display: table;
}
@media (max-width: 859.98px) {
  .event-table {
    width: 100%;
  }
}
@media (max-width: 859.98px) {
  .event-table-wrap {
    padding: 0 36px;
  }
}
.event-table-row {
  display: table-row;
}
@media (max-width: 859.98px) {
  .event-table-row {
    display: block;
  }
}
.event-table-cell {
  display: table-cell;
}
@media (max-width: 859.98px) {
  .event-table-cell {
    width: 100%;
    display: block;
  }
}
.event-table-th, .event-table-td {
  padding: 40px;
  vertical-align: top;
  border-top: 1px solid #d7d7d7;
}
@media (max-width: 859.98px) {
  .event-table-th, .event-table-td {
    padding: 8px 15px;
    border: none;
  }
}
.event-table-th {
  width: 230px;
  background-color: #F9F7F2;
}
@media (max-width: 859.98px) {
  .event-table-th {
    width: 100%;
    border-top: 1px solid #d7d7d7;
  }
}
.event-table .event-date,
.event-table .event-start,
.event-table .event-open {
  font-size: 1.6rem;
  font-weight: 400;
}
.event-footer {
  padding: 80px 0 160px;
  text-align: center;
}
@media (max-width: 859.98px) {
  .event-footer {
    padding: 50px 0 100px;
  }
}

.single-post .breadcrumb {
  margin-top: 58px;
  margin-bottom: 118px;
}
@media (max-width: 859.98px) {
  .single-post .breadcrumb {
    margin-top: 37px;
    margin-bottom: 62px;
  }
}
.single-post .entry-header {
  margin-bottom: 60px;
}
@media (max-width: 859.98px) {
  .single-post .entry-header {
    padding: 0 36px;
    margin-bottom: 40px;
  }
}
.single-post .entry-date {
  margin-bottom: 20px;
  letter-spacing: 0.03em;
  display: block;
}
.single-post .entry-title {
  padding-bottom: 30px;
  font-size: 2.2rem;
  line-height: 1.5;
  border-bottom: 2px solid;
}
.single-post .entry-content {
  margin-bottom: 80px;
}
@media (max-width: 859.98px) {
  .single-post .entry-content {
    padding: 0 36px;
    margin-bottom: 50px;
  }
}
.single-post .entry-content h2 {
  padding-left: 12px;
  margin-top: 20px;
  margin-bottom: 30px;
  border-left: 8px solid;
  line-height: 1.5;
}
.single-post .entry-content p {
  margin-bottom: 60px;
}
.single-post .entry-file-wrap {
  margin-top: 10px;
  margin-right: 10px;
  display: inline;
}
@media (max-width: 859.98px) {
  .single-post .entry-file-wrap {
    margin-right: 0;
    text-align: center;
    display: block;
  }
}
.single-post .entry-file-wrap:first-of-type {
  margin-top: 60px;
}
@media (max-width: 859.98px) {
  .single-post .entry-file-wrap:first-of-type {
    margin-top: 40px;
  }
}
.single-post .entry-footer {
  margin-bottom: 199px;
  text-align: center;
}
@media (max-width: 859.98px) {
  .single-post .entry-footer {
    margin-bottom: 60px;
  }
}
.single-post.hall-child .entry-content h2 {
  color: #930E0E;
}
.single-post.community-child .entry-content h2 {
  color: #006284;
}
.single-post.stay-child .entry-content h2 {
  color: #E9C46A;
}

.community-child.price .page-content,
.stay-child.price .page-content,
.hall-child.price .page-content {
  margin-bottom: 160px;
}
@media (max-width: 859.98px) {
  .community-child.price .page-content,
.stay-child.price .page-content,
.hall-child.price .page-content {
    margin-bottom: 40px;
  }
}
.community-child .price-pdf,
.stay-child .price-pdf,
.hall-child .price-pdf {
  padding: 10px 40px 10px 80px;
  font-size: 2.6rem;
  line-height: 1.6;
  text-align: center;
  color: #930E0E;
  background-image: url(../images/icon/pdf.svg);
  background-position: center left 20px;
  background-repeat: no-repeat;
  border: 1px solid #930E0E;
  transition: 0.3s;
  display: inline-block;
}
@media (max-width: 859.98px) {
  .community-child .price-pdf,
.stay-child .price-pdf,
.hall-child .price-pdf {
    width: 100%;
    font-size: 2.3rem;
    letter-spacing: 0.06em;
    background-position: center left 40px;
  }
}
.community-child .price-pdf:hover,
.stay-child .price-pdf:hover,
.hall-child .price-pdf:hover {
  opacity: 0.7;
}
.community-child .price-pdf small,
.stay-child .price-pdf small,
.hall-child .price-pdf small {
  font-size: 1.4rem;
  line-height: 1.2;
  display: block;
}
.community-child .price-pdf-wrap,
.stay-child .price-pdf-wrap,
.hall-child .price-pdf-wrap {
  padding-top: 20px;
  margin-bottom: 80px;
  text-align: center;
}
@media (max-width: 859.98px) {
  .community-child .price-pdf-wrap,
.stay-child .price-pdf-wrap,
.hall-child .price-pdf-wrap {
    margin-bottom: 40px;
  }
}
.community-child .price-section,
.stay-child .price-section,
.hall-child .price-section {
  padding: 40px 0;
}
.community-child .price-section .tax,
.stay-child .price-section .tax,
.hall-child .price-section .tax {
  margin-bottom: 20px;
  font-size: 1.4rem;
}
.community-child .price-headline,
.stay-child .price-headline,
.hall-child .price-headline {
  margin-bottom: 30px;
  font-family: "Times New Roman", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 2.4rem;
  font-weight: 400;
  background-image: url(../images/icon/plus.svg);
  background-position: center right 10px;
  background-repeat: no-repeat;
  border-bottom: 1px solid;
  cursor: pointer;
}
@media (max-width: 859.98px) {
  .community-child .price-headline,
.stay-child .price-headline,
.hall-child .price-headline {
    margin-bottom: 5px;
    font-size: 2rem;
  }
}
.community-child .price-headline.open,
.stay-child .price-headline.open,
.hall-child .price-headline.open {
  background-image: url(../images/icon/minus.svg);
}
.community-child .price-headline.noicon,
.stay-child .price-headline.noicon,
.hall-child .price-headline.noicon {
  background-image: none !important;
}
.community-child .price-headline small,
.stay-child .price-headline small,
.hall-child .price-headline small {
  margin-left: 20px;
  font-family: "游ゴシック", "游ゴシック体", "Yu Gothic", YuGothic, "Yu Gothic medium", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.4rem;
}
@media (max-width: 859.98px) {
  .community-child .price-headline small,
.stay-child .price-headline small,
.hall-child .price-headline small {
    display: none;
  }
}
.community-child .price-content-wrap h3,
.stay-child .price-content-wrap h3,
.hall-child .price-content-wrap h3 {
  padding: 0 10px;
  margin-bottom: 15px;
  font-size: 1.4rem;
  font-weight: 400;
  background-color: #ccc;
}
.community-child .price-content-wrap > p,
.stay-child .price-content-wrap > p,
.hall-child .price-content-wrap > p {
  font-size: 1.4rem;
}
@media (max-width: 859.98px) {
  .community-child .price-content-wrap > p,
.stay-child .price-content-wrap > p,
.hall-child .price-content-wrap > p {
    font-size: 1.3rem;
    line-height: 1.8;
  }
}
.community-child .price-content-wrap > p a,
.stay-child .price-content-wrap > p a,
.hall-child .price-content-wrap > p a {
  text-decoration: underline;
}
.community-child .price-content-wrap .community-content-headline,
.stay-child .price-content-wrap .community-content-headline,
.hall-child .price-content-wrap .community-content-headline {
  text-align: center;
  color: #fff;
}
.community-child .price-content-wrap .community-content-headline.weekday,
.stay-child .price-content-wrap .community-content-headline.weekday,
.hall-child .price-content-wrap .community-content-headline.weekday {
  background-color: #006284;
}
.community-child .price-content-wrap .community-content-headline.holiday,
.stay-child .price-content-wrap .community-content-headline.holiday,
.hall-child .price-content-wrap .community-content-headline.holiday {
  background-color: #d7b98e;
}
.community-child .price-content-headline,
.stay-child .price-content-headline,
.hall-child .price-content-headline {
  text-align: center;
}
.community-child .price-content-headline.weekday,
.stay-child .price-content-headline.weekday,
.hall-child .price-content-headline.weekday {
  color: #fff;
  background-color: #930E0E;
}
.community-child .price-content-headline.holiday, .community-child .price-content-headline.sunday,
.stay-child .price-content-headline.holiday,
.stay-child .price-content-headline.sunday,
.hall-child .price-content-headline.holiday,
.hall-child .price-content-headline.sunday {
  color: #fff;
  background-color: #DCCCA3;
}
.community-child .price-content-row,
.stay-child .price-content-row,
.hall-child .price-content-row {
  margin-left: -21px;
  margin-right: -21px;
  flex-wrap: wrap;
  display: flex;
}
.community-child .price-content-col,
.stay-child .price-content-col,
.hall-child .price-content-col {
  flex: 0 0 50%;
  padding: 0 21px;
}
@media (max-width: 859.98px) {
  .community-child .price-content-col,
.stay-child .price-content-col,
.hall-child .price-content-col {
    flex: 0 0 100%;
  }
}
.community-child .price-content-col:last-of-type .rehearsal-price-holiday-table,
.stay-child .price-content-col:last-of-type .rehearsal-price-holiday-table,
.hall-child .price-content-col:last-of-type .rehearsal-price-holiday-table {
  margin-bottom: 60px;
}
.community-child .price-content-mb,
.stay-child .price-content-mb,
.hall-child .price-content-mb {
  margin-bottom: 80px;
}
@media (max-width: 859.98px) {
  .community-child .price-content-mb,
.stay-child .price-content-mb,
.hall-child .price-content-mb {
    margin-bottom: 40px;
  }
}
.community-child .price-content-site,
.stay-child .price-content-site,
.hall-child .price-content-site {
  padding: 25px 0;
  font-size: 1.4rem;
  text-align: center;
  background-color: #E5E5E5;
}
@media (max-width: 859.98px) {
  .community-child .price-content-site,
.stay-child .price-content-site,
.hall-child .price-content-site {
    padding: 20px 20px;
    margin-bottom: 20px;
  }
}
.community-child .price-content-site p,
.stay-child .price-content-site p,
.hall-child .price-content-site p {
  margin-bottom: 10px;
}
.community-child .price-content .nav,
.stay-child .price-content .nav,
.hall-child .price-content .nav {
  margin-left: -3px;
  margin-right: -3px;
  margin-bottom: 15px;
}
.community-child .price-content .nav-item,
.stay-child .price-content .nav-item,
.hall-child .price-content .nav-item {
  padding: 0 3px;
}
.community-child .price-content .nav-link,
.stay-child .price-content .nav-link,
.hall-child .price-content .nav-link {
  padding: 4px 0 3px;
  font-size: 1.4rem;
  color: #000;
  background-color: #E5E5E5;
  border-radius: 0;
}
.community-child .price-content .nav-link.active,
.stay-child .price-content .nav-link.active,
.hall-child .price-content .nav-link.active {
  color: #fff;
  background-color: #707070;
}
.community-child .price-btn,
.stay-child .price-btn,
.hall-child .price-btn {
  padding: 7px 10px;
  color: #fff;
  background-color: #707070;
}
.community-child .price-footer,
.stay-child .price-footer,
.hall-child .price-footer {
  margin-bottom: 160px;
  text-align: center;
}
@media (max-width: 859.98px) {
  .community-child .price-footer,
.stay-child .price-footer,
.hall-child .price-footer {
    margin-bottom: 40px;
  }
}
.community-child .price-footer-right,
.stay-child .price-footer-right,
.hall-child .price-footer-right {
  text-align: right;
}

.stay-child .price-headline {
  background-image: none;
  cursor: normal;
}

.hall-campaign {
  padding: 45px 20px;
  margin-top: 80px;
  border: 2px solid #930E0E;
}
@media (max-width: 859.98px) {
  .hall-campaign {
    padding: 33px 15px 20px;
  }
}
.hall-campaign-title {
  font-size: 1.6rem;
  line-height: 1.6;
  color: #930E0E;
  text-align: center;
}
.hall-campaign-label {
  padding: 3px 4px;
  margin: 20px auto 60px;
  line-height: 1;
  color: #930E0E;
  border: 1px solid #930E0E;
  display: table;
}
@media (max-width: 859.98px) {
  .hall-campaign-label {
    width: 100%;
    padding: 8px;
    margin-bottom: 24px;
    line-height: 1.6;
    text-align: center;
  }
}
.hall-campaign-subtitle {
  margin-bottom: 30px;
  font-size: 1.4rem;
  font-weight: 400;
  text-align: center;
  color: #fff;
  background-color: #930E0E;
}
@media (max-width: 859.98px) {
  .hall-campaign-subtitle {
    margin-bottom: 15px;
  }
}
.hall-campaign-subtitle span {
  color: #000;
  background-color: #EBE5D3;
  display: block;
}
.hall-campaign-row {
  margin-left: -11px;
  margin-right: -11px;
  flex-wrap: wrap;
  display: flex;
}
.hall-campaign-col {
  flex: 0 0 50%;
  padding: 0 11px;
}
@media (max-width: 859.98px) {
  .hall-campaign-col {
    flex: 0 0 100%;
  }
}
.hall-campaign-wrap > p {
  font-size: 1.4rem;
  line-height: 1.6;
  letter-spacing: 0;
}
@media (max-width: 859.98px) {
  .hall-campaign .price-content-headline {
    margin-bottom: 15px;
    font-size: 1.4rem;
    font-weight: 400;
  }
}

.stay-child.price .headline01 {
  text-align: center;
}

.privacy .page-content h2 {
  padding: 5px 20px;
  margin-bottom: 40px;
  font-size: 1.6rem;
  font-weight: 400;
  color: #fff;
  background-color: #707070;
  display: inline-block;
}

.hall-child.instrument .page-content {
  margin-bottom: 160px;
}
.hall-child .instrument-row {
  margin-left: -20px;
  margin-right: -20px;
  flex-wrap: wrap;
  display: flex;
}
@media (max-width: 859.98px) {
  .hall-child .instrument-row {
    margin: 0;
  }
}
.hall-child .instrument-col {
  width: 48%;
  padding: 0 20px;
}
@media (max-width: 859.98px) {
  .hall-child .instrument-col {
    width: 100%;
    padding: 0;
  }
}
.hall-child .instrument-col:last-of-type {
  width: 52%;
}
@media (max-width: 859.98px) {
  .hall-child .instrument-col:last-of-type {
    width: 100%;
  }
}
.hall-child .instrument-col > p {
  font-size: 1.5rem;
}
.hall-child .instrument-col > p small {
  font-size: 1.4rem;
  line-height: 1.5;
  display: block;
}
@media (max-width: 859.98px) {
  .hall-child .instrument-col .btn-wrap {
    text-align: right;
  }
}
.hall-child .instrument-section.piporgan .instrument-slider {
  margin-bottom: 80px;
}
.hall-child .instrument-headline {
  margin-bottom: 100px;
  font-family: "Times New Roman", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 2.4rem;
  font-weight: 400;
  text-align: center;
  color: #fff;
  background-color: #930E0E;
}
@media (max-width: 859.98px) {
  .hall-child .instrument-headline {
    margin-bottom: 33px;
    font-size: 1.6rem;
    letter-spacing: 0.03em;
  }
}
.hall-child .instrument-box {
  margin-bottom: 80px;
  font-size: 1.5rem;
}
@media (max-width: 859.98px) {
  .hall-child .instrument-box {
    margin-bottom: 60px;
  }
}
.hall-child .instrument-box h4 {
  margin-bottom: 15px;
}
.hall-child .instrument-box h4 span {
  padding-bottom: 10px;
  font-size: 1.8rem;
  font-weight: 400;
  border-bottom: 1px solid;
}
.hall-child .instrument-box > p {
  font-size: 1.4rem;
}
.hall-child .instrument-tag p {
  font-size: 1.6rem;
}
@media (max-width: 859.98px) {
  .hall-child .instrument-slider {
    margin-bottom: 50px;
  }
}
.hall-child .instrument-slider .slick-slide img {
  width: 100%;
  height: auto;
}
@media (max-width: 859.98px) {
  .hall-child .instrument-slider .slick-slide img {
    width: 100%;
    height: auto;
  }
}
.hall-child .instrument-slider .slick-dots li {
  width: auto;
  height: auto;
  padding: 0 5px;
}
.hall-child .instrument-slider .slick-dots li button {
  width: auto;
  height: auto;
  padding: 0;
}
.hall-child .instrument-slider .slick-dots li button:before {
  content: "";
  width: 10px;
  height: 10px;
  background-color: transparent;
  border: 1px solid #930E0E;
  border-radius: 10px;
  opacity: 1;
  display: block;
}
@media (max-width: 859.98px) {
  .hall-child .instrument-slider .slick-dots li button:before {
    width: 8px;
    height: 8px;
  }
}
.hall-child .instrument-slider .slick-dots li.slick-active button:before {
  background-color: #930E0E;
}
.hall-child .instrument-slider .slick-prev {
  display: none !important;
}
.hall-child .instrument-slider .slick-next {
  right: 10px;
  background-image: url("../images/icon/slick-right.svg");
  background-size: 13px;
  background-position: center;
  background-repeat: no-repeat;
}
.hall-child .instrument-slider .slick-next:before {
  content: none;
}
.hall-child .instrument-title {
  margin-bottom: 15px;
  font-size: 1.8rem;
  font-weight: 400;
}
@media (max-width: 859.98px) {
  .hall-child .instrument-title {
    margin-bottom: 10px;
  }
}
.hall-child .instrument-spec {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid;
}
.hall-child .instrument-spec p {
  margin-bottom: 0;
  font-size: 1.4rem;
}
.hall-child .instrument-btn {
  padding: 7px 10px;
  color: #fff;
  background-color: #707070;
  transition: 0.3s;
}
.hall-child .instrument-btn:hover {
  opacity: 0.7;
}
.hall-child .instrument-footer {
  padding: 40px 0;
  margin-bottom: 160px;
  text-align: center;
}
@media (max-width: 859.98px) {
  .hall-child .instrument-footer {
    padding: 0;
    margin-bottom: 80px;
  }
}

.vacancy-note {
  padding: 3px 8px;
  margin-bottom: 15px;
  border: 2px solid #DE0C0A;
}
@media (max-width: 859.98px) {
  .vacancy-note {
    display: none;
  }
}
.vacancy-note p {
  font-size: 1.4rem;
  line-height: 1.6;
  color: #DE0C0A;
}
.vacancy .calendar-month {
  margin-bottom: 160px;
}
@media (max-width: 999.98px) {
  .vacancy .calendar-month {
    margin-bottom: 80px;
  }
}

.room-ul {
  padding: 0;
  margin: 0 0 10px;
  list-style: none;
}
@media (max-width: 859.98px) {
  .room-ul {
    display: none;
  }
}
.room-ul li {
  margin-right: 20px;
  display: inline-block;
}
.room-label {
  padding: 0 4px;
  margin-right: 10px;
  font-size: 1.4rem;
  line-height: 1.6;
  color: #fff;
  display: inline-block;
}
.room-label-small {
  background-color: #ECA400;
}
.room-label-medium {
  background-color: #67B362;
}
.room-label-large {
  background-color: #4A5F82;
}

.hall-child .headline02 {
  color: #930E0E;
}

.hall-schedule-row {
  flex-wrap: wrap;
  display: flex;
}
.hall-schedule-col {
  width: 55%;
}
@media (max-width: 859.98px) {
  .hall-schedule-col {
    width: 100%;
    order: 2;
  }
}
.hall-schedule-col:last-of-type {
  width: 45%;
  padding-left: 40px;
}
@media (max-width: 859.98px) {
  .hall-schedule-col:last-of-type {
    width: 100%;
    padding: 0;
    order: 1;
  }
}
.hall-schedule-list {
  margin-bottom: 30px;
}
@media (max-width: 859.98px) {
  .hall-schedule-list {
    padding: 0 36px;
  }
}
.hall-schedule-list-row {
  display: flex;
}
.hall-schedule-list-col {
  width: 137px;
}
@media (max-width: 859.98px) {
  .hall-schedule-list-col {
    width: 79px;
  }
}
.hall-schedule-list-col:last-of-type {
  width: calc( 100% - 137px );
  padding-left: 30px;
}
@media (max-width: 859.98px) {
  .hall-schedule-list-col:last-of-type {
    width: calc( 100% - 79px );
    padding-left: 25px;
  }
}
.hall-schedule-list-image {
  width: 100%;
  height: auto;
  display: block;
}
.hall-schedule-list-title {
  padding-bottom: 10px;
  margin-bottom: 10px;
  font-size: 1.8rem;
  line-height: 1.6;
  border-bottom: 1px solid;
}
@media (max-width: 859.98px) {
  .hall-schedule-list-title {
    font-size: 1.4rem;
    letter-spacing: 0.03em;
  }
}
.hall-schedule-list-link {
  padding: 5px 10px;
  font-size: 1.2rem;
  color: #930E0E;
  border: 1px solid #930E0E;
}
@media (max-width: 859.98px) {
  .hall-schedule-list-link {
    padding: 5px 15px;
  }
}
.hall-schedule-list-datetime {
  font-size: 1.2rem;
}
@media (max-width: 859.98px) {
  .hall-schedule-list-datetime {
    font-size: 1.4rem;
  }
}
.hall-schedule-list-date {
  font-size: 1.6rem;
}
@media (max-width: 859.98px) {
  .hall-schedule-list-date {
    font-size: 1.4rem;
  }
}
.hall .calendar-section {
  padding: 25px 40px;
  background-color: #F9F7F2;
}
@media (max-width: 859.98px) {
  .hall .calendar-section {
    padding: 25px 36px;
    margin-bottom: 40px;
  }
}
.hall .calendar-box {
  padding: 18px 20px;
  margin-bottom: 30px;
  background-color: #fff;
}
@media (max-width: 859.98px) {
  .hall .calendar-box {
    margin-bottom: 15px;
  }
}
.hall .calendar-box header h2 {
  margin-bottom: 10px;
  text-align: center;
}
.hall .calendar-today-headline {
  border-bottom: 1px solid;
  font-family: "Times New Roman", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 2rem;
  font-weight: 400;
}
@media (max-width: 859.98px) {
  .hall .calendar-today-headline {
    font-size: 1.7rem;
  }
}
.hall .calendar-today-headline span {
  margin-left: 20px;
  font-family: "游ゴシック", "游ゴシック体", "Yu Gothic", YuGothic, "Yu Gothic medium", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.5rem;
}
@media (max-width: 859.98px) {
  .hall .calendar-today-headline span {
    font-size: 1.4rem;
  }
}
.hall .calendar-today-li {
  border-bottom: 1px solid #ccc;
}
.hall .calendar-today-li a {
  padding: 20px 0;
  display: block;
}
.hall .calendar-today-li a:hover .calendar-today-title {
  color: #930E0E;
  text-decoration: underline;
}
.hall .calendar-today-li:last-of-type {
  border-bottom: none;
}
.hall .calendar-today-row {
  display: flex;
}
.hall .calendar-today-col {
  width: 70%;
}
.hall .calendar-today-col:last-of-type {
  width: 30%;
}
.hall .calendar-today-title {
  font-size: 1.6rem;
  line-height: 1.5;
}
.hall .calendar-today-date {
  font-size: 1.4rem;
  line-height: 1.8;
  color: #888;
}
.hall .calendar-today-none {
  padding: 15px 0;
  text-align: center;
}
.hall .section-footer {
  text-align: center;
}


/* 予約専用フォームボタン（Bパターン） */
.icon-calendar {
  background-image: url(https://lutheran.cona.biz/wp-content/uploads/2026/07/iconmonstr-calendar-4-240.png);
}

.footer-reserve-kanji {
  width: 474px;       /* btn-contact 242px + margin-left 20px + btn-faq 212px */
  margin-top: 12px;
  margin-left: 54px;  /* 右詰めにして、幅を1行目と揃えることで左端を一致させる */
  text-align: left;   /* center → left */
}

.btn-reserve-kanji {
  display: inline-block;
  padding: 9px 24px 5px;
  text-align: center;
  color: #fff;
  border: 1px solid #E8920D;
}
#colophon .btn-reserve-kanji,
.btn-reserve-kanji.btn-reserve-kanji {
  background-color: #E8920D !important;
}
.btn-reserve-kanji .icon {
  margin-top: -6px;
  margin-right: 10px;
}

.footer-reserve-note {
  margin-top: 4px;
  font-size: 1.2rem;
  line-height: 1.3;
  color: #fff;
}
.footer-reserve-kanji .footer-reserve-note {
  text-align: left;
}

/* SP：センター揃えに戻す */
.footer-obi.sp .footer-reserve-kanji {
  width: auto;
  margin-top: 15px;
  margin-left: 0;
  text-align: center;
}
.footer-obi.sp .footer-reserve-kanji .footer-reserve-note {
  text-align: center;
}








/*# sourceMappingURL=sass */