@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
@import url("https://fonts.googleapis.com/css2?family=Spectral:wght@300&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;700&display=swap");
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  text-decoration: none;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before, blockquote:after {
  content: "";
  content: none;
}

q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
}

input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}

input[type=submit]::focus,
input[type=button]::focus {
  outline-offset: -2px;
}

.dspPc {
  display: block;
}
@media (max-width: 769px) {
  .dspPc {
    display: none;
  }
}

.dspSp {
  display: none;
}
@media (max-width: 769px) {
  .dspSp {
    display: block;
  }
}

img {
  width: 100%;
  height: auto;
}

a {
  -webkit-transition: 0.15s ease-in-out;
  transition: 0.15s ease-in-out;
  -webkit-transition-property: opacity, background, color;
  transition-property: opacity, background, color;
}
a:hover {
  opacity: 0.7;
  cursor: pointer;
}

.wrapper {
  margin: 0 auto;
  max-width: 1000px;
}
@media (max-width: 1000px) {
  .wrapper {
    width: 92%;
  }
}

.wrapper800 {
  margin: 0 auto;
  max-width: 800px;
}
@media (max-width: 1000px) {
  .wrapper800 {
    width: 92%;
  }
}

.section {
  padding: 120px 0;
}
@media (max-width: 769px) {
  .section {
    padding: 50px 0;
  }
}

table.simpleGrayTable {
  width: 100%;
}
table.simpleGrayTable tr {
  width: 100%;
  border-top: 1px solid #cccccc;
  text-align: left;
}
table.simpleGrayTable tr:last-child {
  border-bottom: 1px solid #cccccc;
}
table.simpleGrayTable tr th {
  white-space: nowrap;
  padding: 1.2em;
}
table.simpleGrayTable tr td {
  padding: 1.2em;
}
@media (max-width: 769px) {
  table.simpleGrayTable tr th,
  table.simpleGrayTable tr td {
    width: 100%;
    display: block;
  }
  table.simpleGrayTable tr th {
    padding: 1em 0 0.5em;
    font-weight: bold;
  }
  table.simpleGrayTable tr td {
    padding: 0 0 1em 0;
  }
}

table.boxStyleTable {
  width: 70%;
  border-collapse: collapse;
  line-height: 1.7em;
  margin: 30px 0 5px;
}
@media (max-width: 769px) {
  table.boxStyleTable {
    width: 100%;
    margin: 30px 0 10px;
  }
}
table.boxStyleTable tr {
  width: 100%;
  background: #ffffff;
  text-align: center;
}
table.boxStyleTable tr th {
  border: 1px solid #cccccc;
  padding: 1em 1em;
}
table.boxStyleTable tr th:first-child {
  background-color: rgba(129, 150, 127, 0.3);
}
table.boxStyleTable tr td {
  border: 1px solid #cccccc;
  padding: 1em 1em;
}
table.boxStyleTable tr td:first-child {
  background-color: rgba(129, 150, 127, 0.3);
}
@media (max-width: 769px) {
  table.boxStyleTable tr:last-child {
    border-bottom: 1px solid #cccccc;
  }
  table.boxStyleTable tr tr {
    font-size: 10px;
  }
  table.boxStyleTable tr th {
    padding: 0.2em 1%;
  }
  table.boxStyleTable tr td {
    padding: 0.2em 1%;
  }
}

ul.dotsList li {
  padding: 0 0 0.1em 20px;
}
ul.dotsList li:before {
  content: "・";
  display: inline-block;
  text-indent: -20px;
}

ul.notesList li {
  padding: 0 0 0.1em 20px;
}
ul.notesList li:before {
  content: "※";
  display: inline-block;
  text-indent: -20px;
}

ol.numList {
  counter-reset: item;
}
ol.numList li {
  padding: 0 0 0.1em 20px;
  list-style-type: none;
}
ol.numList li:before {
  counter-increment: item;
  content: counter(item) ".";
  display: inline-block;
  text-indent: -20px;
}

ol.numBraList {
  counter-reset: item;
}
ol.numBraList li {
  padding: 0 0 0.1em 30px;
  list-style-type: none;
}
ol.numBraList li:before {
  counter-increment: item;
  content: "(" counter(item) ") ";
  display: inline-block;
  text-indent: -30px;
}

a {
  color: #1B1B1B;
}

body {
  font-family: noto-sans-cjk-jp, sans-serif;
  font-size: 15px;
  font-style: normal;
  color: #1B1B1B;
  letter-spacing: 0.08em;
  line-height: 1.7em;
}

/* IE表示用のCSS　*/
@media all and (-ms-high-contrast: none) {
  body {
    font-family: "メイリオ", Meiryo, sans-serif !important;
  }
}
h1 {
  font-size: 24px;
  font-weight: bold;
}

h1,
h2,
h3,
h4,
h5 {
  line-height: 1.7em;
  font-family: "Noto serif JP", sans-serif;
  font-size: 24px;
  font-weight: bold;
}

a {
  -webkit-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}
a:hover {
  opacity: 0.7;
  cursor: pointer;
}

.bold {
  font-weight: bold;
}

.center {
  text-align: center;
}

.notoserif {
  font-family: "Noto serif JP", sans-serif;
}

.spectral {
  font-family: "Spectral", serif;
}

.small {
  font-size: 12px;
  margin-top: 10px;
  line-height: 1.6em;
}

.header {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: space-between;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  margin: 0 auto;
  height: 90px;
  z-index: 1000;
  position: absolute;
  width: 100%;
}
@media (max-width: 769px) {
  .header {
    height: 60px;
  }
}
.header .logoArea {
  position: absolute;
  top: 20px;
  left: 5%;
  display: block;
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: space-between;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
}
.header .logoArea h1.logo a {
  width: 174px;
  height: 40px;
  display: inline-block;
}
.header .logoArea h1.logo img {
  width: 100%;
}
.header .logoArea h1.logo span {
  display: inline-block;
  vertical-align: bottom;
  margin-left: 20px;
  font-size: 13px;
  color: #ffffff;
  line-height: 1.7em;
}
@media (max-width: 769px) {
  .header .logoArea {
    top: 10px;
    left: 4%;
  }
  .header .logoArea h1.logo a {
    width: 95px;
    height: 40px;
  }
  .header .logoArea h1.logo span {
    display: none;
  }
  .header .logoArea h1.logo::after {
    content: "";
    display: none;
  }
}
.header .logoArea .snsArea {
  margin-left: 30px;
}
.header .logoArea .snsArea a {
  margin-right: 15px;
}
.header .logoArea .snsArea a img {
  vertical-align: middle;
  width: 20px;
}
@media (max-width: 769px) {
  .header .logoArea .snsArea {
    display: none;
  }
}
.header .logoArea .languageSelect {
  margin-left: 15px;
  position: relative;
  height: 30px;
  width: 120px;
  z-index: 1;
}
@media (max-width: 769px) {
  .header .logoArea .languageSelect {
    display: none;
  }
}
.header .logoArea .languageSelect:after {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  border-bottom: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  z-index: -1;
}
.header .logoArea .languageSelect select {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background: none;
  border: none;
  padding: 0 10px;
  width: 100%;
  height: 100%;
  color: #ffffff;
}
.header .logoArea .languageSelect select option {
  color: #1B1B1B;
}
.header .navArea {
  text-align: right;
}
.header .navArea .btn-gnavi {
  display: block;
  position: absolute;
  top: 35px;
  right: 3%;
  height: 15px;
  line-height: 15px;
  z-index: 2000;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #ffffff;
  font-weight: bold;
  font-family: "Spectral", serif;
}
@media (max-width: 769px) {
  .header .navArea .btn-gnavi {
    top: 28px;
  }
}
.header .navArea .btn-gnavi:before {
  content: "";
  background: url(../img/common/humbarger.svg) no-repeat;
  display: inline-block;
  vertical-align: middle;
  width: 25px;
  height: 15px;
  background-size: contain;
  margin-right: 10px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header .navArea .btn-gnavi:hover {
  opacity: 0.7;
}
.header .navArea .globalMenu {
  position: fixed;
  top: 0;
  right: -30%;
  width: 30%;
  height: 100vh;
  padding: 80px 40px 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  z-index: 500;
  background-color: #81967F;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  opacity: 0;
}
@media (max-width: 769px) {
  .header .navArea .globalMenu {
    right: 1000px;
    width: 300px;
    padding: 20px;
  }
}
.header .navArea .globalMenu .nav {
  display: block;
  width: 100%;
  margin: 40px 0 0;
}
.header .navArea .globalMenu .nav li {
  display: block;
  margin: 0;
}
.header .navArea .globalMenu .nav li a {
  padding: 15px 0;
  height: auto;
  font-size: 15px;
  display: block;
  color: #ffffff;
  text-align: left;
  margin: 0;
}
.header .navArea .globalMenu .nav li a span {
  display: block;
  font-size: 28px;
  font-weight: normal;
  margin-bottom: 15px;
}
@media (max-width: 769px) {
  .header .navArea .globalMenu .nav li a span {
    margin-bottom: 5px;
  }
}
.header .navArea .white-bg {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 100;
  background-color: #ffffff;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  cursor: pointer;
}

.open .header .navArea .btn-gnavi {
  color: #ffffff;
  position: fixed;
}
.open .header .navArea .btn-gnavi:before {
  content: "";
  background: url(../img/common/humbarger.svg) no-repeat;
  display: inline-block;
  vertical-align: middle;
  width: 25px;
  height: 15px;
  background-size: contain;
  margin-right: 10px;
}
.open .header .navArea .globalMenu {
  opacity: 1;
  right: 0;
}
.open .header .navArea .white-bg {
  opacity: 0.5;
  visibility: visible;
}

.home .navArea .btn-gnavi {
  color: #ffffff;
}
.home .navArea .btn-gnavi:before {
  content: "";
  background: url(../img/common/humbergar-white.svg) no-repeat;
  display: inline-block;
  vertical-align: middle;
  width: 22px;
  height: 15px;
  background-size: contain;
  margin-right: 5px;
}

.footer {
  padding: 60px 0 20px;
  text-align: center;
}
@media (max-width: 769px) {
  .footer {
    padding: 40px 0 20px;
  }
}
.footer .logoArea {
  margin-bottom: 20px;
}
.footer .logoArea h1 {
  width: 220px;
  display: inline-block;
}
.footer .logoArea h1 img {
  width: 100%;
}
.footer .logoArea p {
  font-size: 13px;
  margin-top: 20px;
  font-family: "Noto serif JP", sans-serif;
}
.footer .snsArea a {
  margin: 0 5px;
}
.footer .snsArea a img {
  width: 20px;
}
.footer .footerNavi {
  padding: 30px 0;
}
.footer .footerNavi li {
  display: inline-block;
}
.footer .footerNavi li a {
  padding: 0 12px;
  font-weight: bold;
  font-family: "Noto serif JP", sans-serif;
  font-size: 13px;
}
@media (max-width: 769px) {
  .footer .footerNavi li a {
    padding: 0 8px;
  }
}
.footer .languageSelect {
  margin: 0 auto 30px;
  position: relative;
  height: 30px;
  width: 120px;
  z-index: 1;
}
@media (max-width: 769px) {
  .footer .languageSelect {
    display: none;
  }
}
.footer .languageSelect:after {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  right: 20px;
  top: 40%;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  border-bottom: 1px solid #1B1B1B;
  border-right: 1px solid #1B1B1B;
  z-index: -1;
}
.footer .languageSelect select {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background: none;
  border: none;
  padding: 0 10px;
  width: 100%;
  height: 100%;
  color: #1B1B1B;
}
.footer .languageSelect select:checked {
  border: 3px solid #95BDD0;
}
.footer .agreement {
  margin-bottom: 15px;
  font-size: 12px;
}
.footer .agreement a::after {
  content: "";
  background: url(../img/common/blankicon.svg) no-repeat;
  background-size: contain;
  width: 10px;
  height: 10px;
  display: inline-block;
  vertical-align: middle;
  margin-left: 5px;
}
.footer p.copyright {
  font-size: 11px;
}

.fadein {
  opacity: 0;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
}

.fadein.active {
  opacity: 1;
}

a.topBtn {
  font-size: 15px;
  font-family: "Spectral", serif;
  position: relative;
  margin-top: 50px;
}
a.topBtn::after {
  content: url(../../assets/img/common/btn_arrow.svg);
  position: absolute;
  top: 40%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  margin-left: 10px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
a.topBtn:hover::after {
  margin-left: 30px;
}
@media (max-width: 769px) {
  a.topBtn {
    margin-top: 12px;
  }
}

a.googleBtn {
  color: #EF8667;
  font-weight: bold;
  margin-top: 20px;
  position: relative;
}
a.googleBtn::before {
  content: url(../../assets/img/common/icon-map.svg);
  margin-right: 10px;
}

a.bookingBtn {
  z-index: 100;
  color: #ffffff;
  font-size: 15px;
  font-family: "Spectral", serif;
  width: 200px;
  padding: 20px 35px;
  border: 1px solid #ffffff;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 50px auto 0;
}
a.bookingBtn::after {
  content: url(../../assets/img/common/btn_arrow_white.svg);
  display: inline-block;
  vertical-align: middle;
  margin-left: 20px;
  padding-bottom: 3px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

a.contactBtn {
  z-index: 100;
  color: #ffffff;
  font-size: 15px;
  font-family: "Spectral", serif;
  width: 200px;
  padding: 20px 35px;
  border: 1px solid #ffffff;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 769px) {
  a.contactBtn {
    margin: 0 auto;
  }
}
a.contactBtn::after {
  content: url(../../assets/img/common/btn_arrow_white.svg);
  display: inline-block;
  vertical-align: middle;
  margin-left: 20px;
  padding-bottom: 3px;
}

a.toppageBtn {
  z-index: 100;
  color: #81967F;
  font-size: 15px;
  font-family: "Spectral", serif;
  width: 200px;
  padding: 20px 35px;
  border: 1px solid #81967F;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
}
a.toppageBtn::after {
  content: url(../../assets/img/common/btn_arrow_green.svg);
  display: inline-block;
  vertical-align: middle;
  margin-left: 20px;
  padding-bottom: 3px;
}

.pageTtlArea {
  background-image: url(../img/common/pageTtlbg.png);
  background-size: cover;
  background-repeat: no-repeat;
  height: 400px;
  width: 100%;
  color: #ffffff;
}
@media (max-width: 769px) {
  .pageTtlArea {
    background-image: url(../img/common/pageTtlbg_sp.png);
  }
}
.pageTtlArea.subHeight {
  height: 300px;
}
.pageTtlArea.subHeight .wrapper {
  height: 300px;
}
.pageTtlArea.subHeight .wrapper .contents {
  bottom: 20px;
}
.pageTtlArea .wrapper {
  position: relative;
  height: 400px;
}
.pageTtlArea .wrapper .contents {
  position: absolute;
  bottom: 80px;
}
.pageTtlArea .wrapper .contents .pageTtl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 50px;
}
.pageTtlArea .wrapper .contents .pageTtl h2 {
  font-size: 48px;
  margin-right: 50px;
}
.pageTtlArea .wrapper .contents .pageTtl p {
  font-family: "Noto serif JP", sans-serif;
}
.pageTtlArea .wrapper .contents p {
  line-height: 2.5em;
}
@media (max-width: 769px) {
  .pageTtlArea .wrapper .contents {
    position: absolute;
    bottom: 30px;
  }
  .pageTtlArea .wrapper .contents .pageTtl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 20px;
  }
  .pageTtlArea .wrapper .contents .pageTtl h2 {
    font-size: 38px;
    margin-right: 30px;
  }
  .pageTtlArea .wrapper .contents .pageTtl p {
    font-family: "Noto serif JP", sans-serif;
  }
  .pageTtlArea .wrapper .contents p {
    line-height: 2.5em;
  }
}

.topTtl {
  margin-bottom: 50px;
}
@media (max-width: 769px) {
  .topTtl {
    margin-bottom: 30px;
  }
}
.topTtl.ttlRoom {
  margin-bottom: 30px;
}
.topTtl .egArea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 25px;
  font-family: "Spectral", serif;
}
.topTtl .egArea p {
  font-size: 18px;
}
.topTtl .egArea .bd {
  border-top: 1px solid #ccc;
  width: 60px;
  margin-left: 20px;
}
@media (max-width: 769px) {
  .topTtl .egArea {
    margin-bottom: 10px;
  }
}

.subTtl {
  text-align: center;
  margin-bottom: 50px;
}
@media (max-width: 769px) {
  .subTtl {
    margin-bottom: 30px;
  }
}
.subTtl h3 {
  display: inline-block;
  padding: 0 10px 20px;
  border-bottom: 1px solid #1B1B1B;
}
@media (max-width: 769px) {
  .subTtl h3 {
    padding: 0 10px 10px;
  }
}

.thitdTtl {
  text-align: center;
  margin-bottom: 50px;
}
@media (max-width: 769px) {
  .thitdTtl {
    margin-bottom: 30px;
  }
}
.thitdTtl .sub_eg {
  margin-bottom: 10px;
  font-family: "Spectral", serif;
}

.bookingArea {
  width: 100%;
  position: relative;
  text-align: center;
  padding: 100px 0;
}
.bookingArea:before {
  content: "";
  position: absolute;
  background: url("../img/common/img-bookingbg_pc.jpg") no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
@media (max-width: 769px) {
  .bookingArea:before {
    background: url("../img/common/img-bookingbg_sp.jpg") no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 100%;
  }
}
.bookingArea:after {
  content: "";
  position: absolute;
  background-color: #1B1B1B;
  opacity: 0.8;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.bookingArea h3 {
  color: #ffffff;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}
.bookingArea h3:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -20px;
  display: inline-block;
  width: 60px;
  height: 2px;
  -webkit-transform: translateX(-50%);
  transform: translate(-50%);
  background-color: #cccccc;
}

/* 非表示 */
.is-hide {
  display: none;
  z-index: -9999;
}

/* LOADING */
#loader-bg {
  background: #81967F;
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9998;
}

#loader {
  position: fixed;
  left: 50%;
  top: 50%;
  margin-left: -67px;
  margin-top: -76px;
  background: url(../img/common/onsen.gif) no-repeat center center;
  display: inline-block;
  background-size: contain;
  -webkit-transition: 1.5s ease-in-out;
  transition: 1.5s ease-in-out;
  width: 140px;
  height: 140px;
  z-index: 9999;
}

#HOME .kv {
  background-image: url(../../assets/img/home/kv_pc.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 100vh;
  width: 100%;
}
@media (max-width: 769px) {
  #HOME .kv {
    background-image: url(../../assets/img/home/kv_sp.jpg);
  }
}
#HOME .message h1 {
  text-align: center;
  margin-bottom: 50px;
}
@media (max-width: 769px) {
  #HOME .message h1 {
    margin-bottom: 30px;
  }
}
#HOME .message .txt {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: space-between;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  align-items: top;
  -webkit-box-align: top;
  -ms-flex-align: top;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
}
#HOME .message .txt p {
  width: 47%;
  line-height: 2.5em;
}
@media (max-width: 769px) {
  #HOME .message .txt p {
    width: 100%;
  }
}
#HOME .message .notes {
  font-size: 12px;
}
#HOME .topAbout .flexArea {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: space-between;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
}
@media (max-width: 769px) {
  #HOME .topAbout .flexArea {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
#HOME .topAbout .flexArea .imgArea {
  width: 50%;
}
@media (max-width: 769px) {
  #HOME .topAbout .flexArea .imgArea {
    margin-top: 30px;
  }
}
#HOME .topAbout .flexArea .imgArea p {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: calc(100% - 50vw);
}
@media (max-width: 769px) {
  #HOME .topAbout .flexArea .imgArea p {
    margin-right: calc(50% - 50vw);
  }
}
#HOME .topAbout .flexArea .txtArea {
  width: 40%;
}
@media (max-width: 769px) {
  #HOME .topAbout .flexArea .txtArea {
    width: 100%;
  }
}
#HOME .topAbout .flexArea .txtArea .messageTxt {
  margin-bottom: 50px;
  line-height: 2.5em;
}
@media (max-width: 769px) {
  #HOME .topAbout .flexArea .txtArea .messageTxt {
    margin-bottom: 20px;
  }
}
#HOME .topAccess .flexArea {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: space-between;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  align-items: top;
  -webkit-box-align: top;
  -ms-flex-align: top;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
}
#HOME .topAccess .flexArea .txtArea {
  width: 40%;
}
@media (max-width: 769px) {
  #HOME .topAccess .flexArea .txtArea {
    width: 100%;
  }
}
#HOME .topAccess .flexArea .txtArea .name {
  margin: 30px 0 10px;
}
#HOME .topAccess .flexArea .txtArea a {
  display: block;
}
#HOME .topAccess .flexArea .imgArea {
  width: 50%;
}
#HOME .topAccess .flexArea .imgArea.dspSp {
  width: 70%;
  margin: 0 auto 30px;
}
#HOME .topCustomervoices {
  background-color: rgba(129, 150, 127, 0.1);
}
#HOME .topCustomervoices h3 {
  text-align: center;
}
#HOME .topCustomervoices .voicesList {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: space-between;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  align-items: top;
  -webkit-box-align: top;
  -ms-flex-align: top;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
}
#HOME .topCustomervoices .voicesList li {
  width: 48%;
  border-bottom: 1px solid #cccccc;
}
#HOME .topCustomervoices .voicesList li:nth-child(1), #HOME .topCustomervoices .voicesList li:nth-child(2) {
  border-top: 1px solid #cccccc;
}
@media (max-width: 769px) {
  #HOME .topCustomervoices .voicesList li {
    width: 100%;
  }
  #HOME .topCustomervoices .voicesList li:nth-child(2) {
    border-top: none;
  }
}
#HOME .topCustomervoices .voicesList li .inner {
  padding: 20px 4%;
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: space-between;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  align-items: top;
  -webkit-box-align: top;
  -ms-flex-align: top;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
}
#HOME .topCustomervoices .voicesList li .txtArea {
  width: 100%;
}
#HOME .topCustomervoices .voicesList li .txtArea .icons {
  margin-bottom: 0.7em;
}
#HOME .topCustomervoices .voicesList li .txtArea .icons .group:before {
  content: "";
  background: url("../img/home/icon-people.svg") no-repeat;
  width: 20px;
  height: 20px;
  background-size: contain;
  background-position: center center;
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
}
#HOME .topOwner .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 769px) {
  #HOME .topOwner .inner {
    display: block;
  }
}
@media (max-width: 769px) {
  #HOME .topOwner .inner .imgArea {
    margin: 0 auto;
    text-align: center;
  }
}
#HOME .topOwner .inner .imgArea img {
  width: 260px;
  height: 360px;
  margin-right: 50px;
}
@media (max-width: 1000px) {
  #HOME .topOwner .inner .imgArea img {
    width: 195px;
    height: 270px;
  }
}
@media (max-width: 769px) {
  #HOME .topOwner .inner .imgArea img {
    margin-right: 0px;
    margin-bottom: 20px;
  }
}
#HOME .topOwner .inner .txtArea {
  width: 40%;
}
@media (max-width: 769px) {
  #HOME .topOwner .inner .txtArea {
    width: 100%;
  }
}
#HOME .topOwner .inner .txtArea h3 {
  font-size: 18px;
  text-align: left;
  margin: 0 0 30px;
}
@media (max-width: 769px) {
  #HOME .topOwner .inner .txtArea h3 {
    text-align: center;
  }
}
#HOME .topOwner .inner .txtArea .name {
  font-weight: bold;
  margin-bottom: 20px;
}
#HOME .topOwner .inner .txtArea .name span {
  font-size: 22px;
  line-height: 1.5em;
}
@media (max-width: 769px) {
  #HOME .topOwner .inner .txtArea .name {
    text-align: center;
  }
}
#HOME .gallery {
  width: 100%;
}
#HOME .gallery .sliderGallery li img {
  width: 100%;
}

#ABOUT .room section {
  margin-bottom: 120px;
}
@media (max-width: 769px) {
  #ABOUT .room section {
    margin-bottom: 50px;
  }
}
#ABOUT .room section .flexArea {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: space-between;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
}
@media (max-width: 769px) {
  #ABOUT .room section .flexArea {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
#ABOUT .room section .flexArea .imgArea {
  width: 55%;
}
#ABOUT .room section .flexArea .imgArea.dspSp {
  margin-bottom: 20px;
}
@media (max-width: 769px) {
  #ABOUT .room section .flexArea .imgArea {
    width: 100%;
  }
}
#ABOUT .room section .flexArea .txtArea {
  width: 38%;
}
@media (max-width: 769px) {
  #ABOUT .room section .flexArea .txtArea {
    width: 100%;
  }
}
#ABOUT .room section .flexArea .txtArea .roomDetail {
  margin-bottom: 30px;
}
@media (max-width: 769px) {
  #ABOUT .room section .flexArea .txtArea .roomDetail {
    font-size: 13px;
  }
}
#ABOUT .room section .flexArea .txtArea .roomDetail .icons {
  color: #81967F;
  margin-bottom: 5px;
}
#ABOUT .room section .flexArea .txtArea .roomDetail .icons:before {
  content: "";
  background: url("../img/home/icon-bed.svg") no-repeat;
  width: 20px;
  height: 20px;
  background-size: contain;
  background-position: center;
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
}
#ABOUT .room section .imggallery {
  margin-top: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 769px) {
  #ABOUT .room section .imggallery {
    margin-top: 20px;
  }
}
#ABOUT .room section .imggallery .imgLeft {
  width: 34%;
  margin-right: 50px;
}
@media (max-width: 769px) {
  #ABOUT .room section .imggallery .imgLeft {
    width: 40%;
    margin-right: 30px;
  }
}
#ABOUT .room section .imggallery .imgRight {
  width: 45%;
  padding-top: 60px;
}
@media (max-width: 769px) {
  #ABOUT .room section .imggallery .imgRight {
    width: 50%;
    padding-top: 30px;
  }
}
#ABOUT .room section .imgSecond {
  margin-top: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 769px) {
  #ABOUT .room section .imgSecond {
    margin-top: 20px;
  }
}
#ABOUT .room section .imgSecond .imgLeft {
  width: 45%;
  padding-top: 60px;
  margin-right: 50px;
}
@media (max-width: 769px) {
  #ABOUT .room section .imgSecond .imgLeft {
    width: 50%;
    padding-top: 30px;
    margin-right: 30px;
  }
}
#ABOUT .room section .imgSecond .imgRight {
  width: 34%;
}
#ABOUT .room section .imgSecond .imgRight img:nth-child(2) {
  margin-top: 20px;
}
@media (max-width: 769px) {
  #ABOUT .room section .imgSecond .imgRight {
    width: 40%;
  }
}
#ABOUT .room .other {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: space-between;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  align-items: top;
  -webkit-box-align: top;
  -ms-flex-align: top;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
}
#ABOUT .room .other li {
  width: 32%;
}
@media (max-width: 769px) {
  #ABOUT .room .other li {
    width: 48%;
    margin-bottom: 20px;
  }
  #ABOUT .room .other li:nth-child(3) {
    margin-bottom: 0;
  }
}
#ABOUT .room .other li .txt {
  margin-top: 20px;
}
@media (max-width: 769px) {
  #ABOUT .room .other li .txt {
    margin-top: 0px;
  }
}
#ABOUT .room .other li .txt h5 {
  font-size: 18px;
  margin-bottom: 15px;
}
@media (max-width: 769px) {
  #ABOUT .room .other li .txt h5 {
    font-size: 15px;
    margin-bottom: 5px;
  }
}
#ABOUT .room .amenities {
  margin-top: 120px;
}
@media (max-width: 769px) {
  #ABOUT .room .amenities {
    margin-top: 50px;
  }
}
#ABOUT .room .amenities p {
  padding-top: 30px;
}
#ABOUT .option .optionbox.mgT {
  margin-top: 120px;
}
@media (max-width: 769px) {
  #ABOUT .option .optionbox.mgT {
    margin-top: 50px;
  }
}
#ABOUT .option .optionbox .flexArea {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: space-between;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  align-items: top;
  -webkit-box-align: top;
  -ms-flex-align: top;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
}
#ABOUT .option .optionbox .flexArea .imgArea {
  width: 55%;
}
@media (max-width: 769px) {
  #ABOUT .option .optionbox .flexArea .imgArea {
    width: 100%;
  }
}
#ABOUT .option .optionbox .flexArea .txtArea {
  width: 38%;
  margin-top: 30px;
}
@media (max-width: 769px) {
  #ABOUT .option .optionbox .flexArea .txtArea {
    width: 100%;
    margin-top: 0px;
  }
}
#ABOUT .option .optionbox .otherimg {
  margin-top: 30px;
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: space-between;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
}
#ABOUT .option .optionbox .otherimg li {
  width: 30%;
}
@media (max-width: 769px) {
  #ABOUT .option .optionbox .otherimg li {
    width: 32%;
  }
}
#ABOUT .option .optionbox .optiontxt {
  margin-top: 20px;
}
#ABOUT .option .optionbox .optiontxt .optionTtl {
  font-size: 18px;
  color: #81967F;
  margin-bottom: 10px;
}

#ACCESS .accessIntro .flexArea {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: space-between;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
}
#ACCESS .accessIntro .flexArea .imgArea {
  width: 50%;
}
#ACCESS .accessIntro .flexArea .imgArea.dspSp {
  width: 70%;
  margin: 30px auto 0;
}
#ACCESS .accessIntro .flexArea .txtArea {
  width: 40%;
}
@media (max-width: 769px) {
  #ACCESS .accessIntro .flexArea .txtArea {
    width: 100%;
  }
}
#ACCESS .accessIntro .flexArea .txtArea .name {
  margin-bottom: 15px;
}
#ACCESS .accessIntro .flexArea .txtArea .adress {
  margin-bottom: 15px;
}
#ACCESS .accessIntro .flexArea .txtArea .institution {
  margin-top: 50px;
}
@media (max-width: 769px) {
  #ACCESS .accessIntro .flexArea .txtArea .institution {
    margin-top: 20px;
  }
}
#ACCESS .accessWay {
  background-color: #F5F3EF;
  padding: 80px 0;
}
@media (max-width: 769px) {
  #ACCESS .accessWay {
    padding: 40px 0;
  }
}
#ACCESS .accessWay .flexArea {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: space-between;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
#ACCESS .accessWay .flexArea .txtbox {
  width: 40%;
  height: 30%;
}
#ACCESS .accessWay .flexArea .txtbox h5 {
  font-size: 36px;
  color: #81967F;
  margin-bottom: 30px;
}
#ACCESS .accessWay .flexArea .txtbox .sub {
  font-weight: bold;
  margin-bottom: 20px;
}
@media (max-width: 769px) {
  #ACCESS .accessWay .flexArea .txtbox {
    width: 100%;
  }
  #ACCESS .accessWay .flexArea .txtbox h5 {
    margin-bottom: 10px;
  }
  #ACCESS .accessWay .flexArea .txtbox.spPd {
    padding-top: 20px;
  }
}
#ACCESS .accessWay .flexArea .txtbox a.pdf {
  color: #EF8667;
  font-weight: bold;
  display: inline-block;
  padding-top: 5px;
  margin-top: 10px;
}
#ACCESS .accessWay .flexArea .txtbox a.pdf:before {
  content: "";
  background: url(../img/access/icon-pdf.svg) no-repeat;
  background-size: contain;
  width: 13px;
  height: 18px;
  display: inline-block;
  margin-right: 5px;
  vertical-align: middle;
}
#ACCESS .nearbyArea .bigArea {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: space-between;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  align-items: top;
  -webkit-box-align: top;
  -ms-flex-align: top;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  margin-bottom: 50px;
}
@media (max-width: 769px) {
  #ACCESS .nearbyArea .bigArea {
    margin-bottom: 0;
  }
}
#ACCESS .nearbyArea .bigArea li {
  width: 32%;
}
@media (max-width: 769px) {
  #ACCESS .nearbyArea .bigArea li {
    width: 100%;
    margin-bottom: 20px;
  }
}
#ACCESS .nearbyArea .bigArea li img {
  width: 100%;
}
#ACCESS .nearbyArea .bigArea li p {
  margin-top: 10px;
}
#ACCESS .nearbyArea .otherArea {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: space-between;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
}
#ACCESS .nearbyArea .otherArea li {
  width: 32%;
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: space-between;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  border-bottom: 1px solid #CCCCCC;
  padding-bottom: 30px;
  margin-top: 30px;
  position: relative;
}
@media (max-width: 769px) {
  #ACCESS .nearbyArea .otherArea li {
    width: 100%;
    padding-bottom: 15px;
    margin-top: 15px;
  }
  #ACCESS .nearbyArea .otherArea li.suvExarea {
    margin-top: 30px;
  }
  #ACCESS .nearbyArea .otherArea li:last-child {
    margin-bottom: 0;
  }
}
#ACCESS .nearbyArea .otherArea li p {
  width: 80%;
}
#ACCESS .nearbyArea .otherArea li p.distance {
  width: 17%;
  text-align: right;
}
#ACCESS .nearbyArea .otherArea li .subEx {
  position: absolute;
  font-size: 11px;
  color: #81967F;
  font-weight: bold;
  top: -20px;
}

#GALLERY .gallery .galleryList {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: space-between;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  align-items: top;
  -webkit-box-align: top;
  -ms-flex-align: top;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
}
#GALLERY .gallery .galleryList .galleryImg {
  width: 32%;
  display: block;
  margin-bottom: 20px;
}
@media (max-width: 769px) {
  #GALLERY .gallery .galleryList .galleryImg {
    width: 48%;
    margin-bottom: 10px;
  }
}
#GALLERY .gallery .galleryList::after {
  content: "";
  display: block;
  width: 32%;
  height: 0;
}

#FAQ .faqList li {
  margin-bottom: 40px;
}
@media (max-width: 769px) {
  #FAQ .faqList li {
    margin-bottom: 30px;
  }
}
#FAQ .faqList li:last-child {
  margin-bottom: 0;
}
#FAQ .faqList li .faqBox {
  width: calc(100% - 40px);
  padding: 10px 20px;
  background-color: rgba(129, 150, 127, 0.3);
}
#FAQ .faqList li .faqBox.answer {
  background-color: #fff;
}
#FAQ .faqList li .faqBox .qArea,
#FAQ .faqList li .faqBox .aArea {
  padding: 10px 0;
  padding-left: 58px;
  position: relative;
}
#FAQ .faqList li .faqBox .qArea:before,
#FAQ .faqList li .faqBox .aArea:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 38px;
  height: 38px;
  display: block;
  background-size: contain;
  margin-right: 20px;
}
@media (max-width: 769px) {
  #FAQ .faqList li .faqBox .qArea,
  #FAQ .faqList li .faqBox .aArea {
    padding: 5px 0;
    padding-left: 38px;
  }
  #FAQ .faqList li .faqBox .qArea:before,
  #FAQ .faqList li .faqBox .aArea:before {
    width: 28px;
    height: 28px;
  }
}
#FAQ .faqList li .faqBox .qArea:before {
  background: url("../img/faq/icon-q.svg") no-repeat;
  background-size: contain;
}
#FAQ .faqList li .faqBox .aArea:before {
  background: url("../img/faq/icon-a.svg") no-repeat;
  background-size: contain;
}

#BOOKING .beds24Area {
  position: relative;
  height: 0px;
  padding-top: 46%;
  margin-top: 90px;
}
@media (max-width: 769px) {
  #BOOKING .beds24Area {
    padding-top: 150%;
    margin-top: 40px;
  }
}
#BOOKING .beds24Area iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#BOOKING .priceList h4 {
  font-size: 18px;
  margin-bottom: 20px;
  position: relative;
  padding-left: 15px;
  display: inline-block;
}
#BOOKING .priceList h4:before {
  content: "";
  position: absolute;
  left: 0;
  width: 5px;
  height: 100%;
  display: block;
  margin-right: 10px;
}
#BOOKING .priceList h4.blueLine:before {
  background-color: #5695B3;
}
#BOOKING .priceList h4.redLine {
  margin-top: 30px;
}
#BOOKING .priceList h4.redLine:before {
  background-color: #EF8667;
}
#BOOKING .priceList p {
  margin: 20px 0 5px;
}
#BOOKING .priceList .boxStyleTable {
  width: auto;
}
@media (max-width: 769px) {
  #BOOKING .priceList .boxStyleTable {
    width: 100%;
  }
}
#BOOKING .priceList .boxStyleTable tr th {
  background-color: rgba(129, 150, 127, 0.3);
  width: 200px;
}
#BOOKING .priceList .boxStyleTable tr td {
  width: 200px;
  font-size: 16px;
  font-weight: bold;
}
@media (max-width: 769px) {
  #BOOKING .priceList .boxStyleTable tr th,
  #BOOKING .priceList .boxStyleTable tr td {
    width: auto;
  }
}
#BOOKING .conpactBtnArea {
  background-color: rgb(129, 150, 127);
  padding: 40px 0;
  text-align: center;
}
#BOOKING .conpactBtnArea .flexWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 769px) {
  #BOOKING .conpactBtnArea .flexWrap {
    display: block;
  }
}
#BOOKING .conpactBtnArea .flexWrap .txtArea {
  font-weight: bold;
  margin-right: 100px;
  display: inline-block;
  vertical-align: middle;
  color: #ffffff;
  font-family: "Noto serif JP", sans-serif;
  text-align: left;
  font-size: 18px;
  line-height: 1.8em;
}
@media (max-width: 769px) {
  #BOOKING .conpactBtnArea .flexWrap .txtArea {
    text-align: center;
    margin-right: 0;
    font-size: 16px;
    margin-bottom: 20px;
  }
}

#CONTACT {
  border-bottom: 1px solid #1B1B1B;
}
#CONTACT .FAQBtnArea {
  background-color: rgb(129, 150, 127);
  padding: 40px 0;
  text-align: center;
}
#CONTACT .FAQBtnArea .flexWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 769px) {
  #CONTACT .FAQBtnArea .flexWrap {
    display: block;
  }
}
#CONTACT .FAQBtnArea .flexWrap .txtArea {
  font-weight: bold;
  margin-right: 100px;
  display: inline-block;
  vertical-align: middle;
  color: #ffffff;
  font-family: "Noto serif JP", sans-serif;
  text-align: left;
  line-height: 1.8em;
}
@media (max-width: 769px) {
  #CONTACT .FAQBtnArea .flexWrap .txtArea {
    text-align: center;
    margin-right: 0;
    margin-bottom: 20px;
  }
}
#CONTACT .contactForm {
  margin-top: 60px;
}
#CONTACT .contactForm dl {
  max-width: 700px;
  margin: 0 auto 30px;
  display: block;
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: flex-start;
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
}
@media (max-width: 1000px) {
  #CONTACT .contactForm dl {
    width: 100%;
    margin: 0 auto 20px;
  }
}
#CONTACT .contactForm dl span.required,
#CONTACT .contactForm dl span.optional {
  display: none;
}
#CONTACT .contactForm dl dt {
  font-size: 15px;
  width: 180px;
  text-align: right;
  margin-right: 20px;
}
#CONTACT .contactForm dl dt.required:before {
  content: "必須";
  font-size: 12px;
  background-color: #1B1B1B;
  border-radius: 2px;
  color: #fff;
  padding: 2px 4px 2px 4px;
  display: inline-block;
  margin-right: 10px;
}
@media (max-width: 769px) {
  #CONTACT .contactForm dl dt {
    width: 100%;
    text-align: left;
    margin-bottom: 10px;
  }
}
#CONTACT .contactForm dl dd input[type=text],
#CONTACT .contactForm dl dd input[type=email],
#CONTACT .contactForm dl dd input[type=tel] {
  height: 38px;
  width: 420px;
  border: 1px solid #777777;
  border-radius: 3px;
  font-size: 16px;
  padding: 0 10px;
}
#CONTACT .contactForm dl dd input[type=text]:focus,
#CONTACT .contactForm dl dd input[type=email]:focus,
#CONTACT .contactForm dl dd input[type=tel]:focus {
  outline: none;
  background-color: #f8f8f8;
}
#CONTACT .contactForm dl dd textarea {
  width: 420px;
  border: 1px solid #777777;
  font-size: 16px;
  padding: 10px;
  border-radius: 3px;
}
#CONTACT .contactForm dl dd textarea:focus {
  outline: none;
  background-color: #f8f8f8;
}
@media (max-width: 769px) {
  #CONTACT .contactForm dl dd {
    width: 100%;
  }
  #CONTACT .contactForm dl dd input[type=text],
  #CONTACT .contactForm dl dd input[type=email],
  #CONTACT .contactForm dl dd input[type=tel] {
    width: calc(100% - 22px);
  }
  #CONTACT .contactForm dl dd textArea {
    width: calc(100% - 22px);
  }
}
#CONTACT .contactForm .sendbtn .form_submit {
  margin: 0 auto;
  text-align: center;
  cursor: pointer;
}
#CONTACT .contactForm .sendbtn .form_submit input[type=button] {
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.08em;
  background-color: #81967F;
  width: 170px;
  height: 50px;
}
#CONTACT .contactForm .sendbtn .form_submit:hover {
  color: #81967F;
}
@media (max-width: 1000px) {
  #CONTACT .contactForm {
    margin-top: 40px;
  }
}

#THANKS {
  border-bottom: 1px solid #1B1B1B;
}
#THANKS .thanks a {
  margin-top: 40px;
}