@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=Lato:wght@700&family=Noto+Sans+JP:wght@400;500;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: 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;
  width: 90%;
}

.section {
  padding: 80px 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: 10px 0 5px;
}
@media (max-width: 769px) {
  table.boxStyleTable {
    width: 100%;
  }
}
table.boxStyleTable tr {
  width: 80%;
  background: #ffffff;
  text-align: center;
}
table.boxStyleTable tr th {
  border: 1px solid #cccccc;
  padding: 1em 1.5em;
}
table.boxStyleTable tr th:first-child {
  background-color: #f8f8f8;
}
table.boxStyleTable tr td {
  border: 1px solid #cccccc;
  padding: 1em 1.5em;
}
table.boxStyleTable tr td:first-child {
  background-color: #f8f8f8;
}
@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;
}

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;
}

ul.asterisk li {
  padding: 0 0 0.1em 10px;
}
ul.asterisk li:before {
  content: "※";
  display: inline-block;
  text-indent: -20px;
}

ul.dot li {
  padding: 0 0 0.1em 10px;
}
ul.dot li:before {
  content: "𓏸";
  display: inline-block;
  text-indent: -20px;
}

a {
  color: #0F0F0F;
}

.blue {
  color: #5695B3;
}

body {
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #5B5B5B;
  letter-spacing: 0.08em;
  line-height: 1.5em;
}

/* IE表示用のCSS　*/
@media all and (-ms-high-contrast: none) {
  body {
    font-family: "メイリオ", Meiryo, sans-serif !important;
  }
}
.europa {
  font-family: europa, sans-serif;
  font-weight: normal;
}

.adorn {
  font-family: adorn-garland, sans-serif;
  font-weight: normal;
}

h1,
h2,
h3,
h4,
h5 {
  font-weight: normal;
  line-height: 1.5em;
}

h2 {
  text-align: center;
  font-size: 55px;
  color: #5695B3;
}
@media (max-width: 769px) {
  h2 {
    font-size: 36px;
  }
}

h3 {
  font-size: 24px;
  font-weight: bold;
}

p {
  line-height: 1.5em;
  font-size: 15px;
}

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;
}

.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;
  position: relative;
  margin: 0 auto;
  height: 90px;
  z-index: 1000;
}
@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: 134px;
  height: 57px;
  display: inline-block;
}
.header .logoArea h1.logo img {
  width: 100%;
}
.header .logoArea h1.logo span {
  display: inline-block;
  vertical-align: bottom;
  margin-left: 20px;
}
.header .logoArea h1.logo::after {
  content: "";
  background-color: #95BDD0;
  height: 38px;
  width: 1px;
  display: inline-block;
  vertical-align: bottom;
  margin-left: 40px;
}
@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: inline-block;
    vertical-align: bottom;
    margin-left: 10px;
    font-size: 12px;
  }
  .header .logoArea h1.logo::after {
    content: "";
    display: none;
  }
}
.header .logoArea .snsArea {
  margin-top: 24px;
  margin-left: 20px;
}
.header .logoArea .snsArea a {
  margin-right: 5px;
}
.header .logoArea .snsArea a img {
  vertical-align: middle;
}
@media (max-width: 769px) {
  .header .logoArea .snsArea {
    display: none;
  }
}
.header .logoArea .languageSelect {
  margin-top: 24px;
  margin-left: 20px;
  position: relative;
  height: 30px;
  width: 120px;
  z-index: 1;
  border: 1px solid #95BDD0;
  border-radius: 3px;
}
@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 #5695B3;
  border-right: 2px solid #5695B3;
  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: #5695B3;
}
.header .logoArea .languageSelect select:checked {
  border: 3px solid #95BDD0;
}
.header .navArea {
  text-align: right;
}
.header .navArea .btn-gnavi {
  display: block;
  position: absolute;
  top: 40px;
  right: 3%;
  height: 15px;
  line-height: 15px;
  z-index: 2000;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #5695B3;
  font-weight: bold;
}
@media (max-width: 769px) {
  .header .navArea .btn-gnavi {
    top: 28px;
  }
}
.header .navArea .btn-gnavi:before {
  content: "";
  background: url(../img/common/humbergar-blue.svg) no-repeat;
  display: inline-block;
  vertical-align: middle;
  width: 22px;
  height: 15px;
  background-size: contain;
  margin-right: 5px;
  -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: 100%;
  padding: 80px 40px 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  z-index: 500;
  background-color: #5695B3;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  opacity: 0;
}
@media (max-width: 769px) {
  .header .navArea .globalMenu {
    right: 1000px;
    width: 300px;
  }
}
.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: 20px 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;
}
.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/humbergar-white.svg) no-repeat;
  display: inline-block;
  vertical-align: middle;
  width: 22px;
  height: 15px;
  background-size: contain;
  margin-right: 5px;
}
.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: 134px;
  display: inline-block;
}
.footer .logoArea h1 img {
  width: 100%;
}
.footer .logoArea p {
  font-size: 13px;
  margin-top: 20px;
}
.footer .snsArea a {
  margin: 0 5px;
}
.footer .footerNavi {
  padding: 30px 0;
}
.footer .footerNavi li {
  display: inline-block;
}
.footer .footerNavi li a {
  padding: 0 12px;
  font-weight: bold;
}
@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;
  border: 1px solid #95BDD0;
  border-radius: 3px;
}
@media (max-width: 769px) {
  .footer .languageSelect {
    display: none;
  }
}
.footer .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 #5695B3;
  border-right: 2px solid #5695B3;
  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: #5695B3;
}
.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.btn-blueBorder,
a.btn-whiteBorder {
  display: block;
  font-size: 15px;
  margin: 0 auto;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  text-align: center;
  width: 260px;
  height: 60px;
  line-height: 60px;
  position: relative;
  z-index: 1;
}
a.btn-blueBorder:hover,
a.btn-whiteBorder:hover {
  opacity: 1;
}

a.btn-blueBorder {
  color: #5695B3;
}
a.btn-blueBorder::before {
  content: "";
  background: url(../img/common/btn-blueBorder.svg) no-repeat;
  background-size: contain;
  display: block;
  width: 260px;
  height: 60px;
  position: absolute;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
a.btn-blueBorder:hover {
  color: #fff;
}
a.btn-blueBorder:hover::before {
  content: "";
  background: url(../img/common/btn-bluefilled.svg) no-repeat;
  background-size: contain;
  display: block;
  width: 260px;
  height: 60px;
  position: absolute;
  z-index: -1;
}

a.btn-whiteBorder {
  color: #ffffff;
}
a.btn-whiteBorder::before {
  content: "";
  background: url(../img/common/btn-whiteBorder.svg) no-repeat;
  background-size: contain;
  display: block;
  width: 260px;
  height: 60px;
  position: absolute;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
a.btn-whiteBorder:hover {
  color: #5695B3;
  opacity: 1;
}
a.btn-whiteBorder:hover::before {
  content: "";
  background: url(../img/common/btn-whitefilled.svg) no-repeat;
  background-size: contain;
  display: block;
  width: 260px;
  height: 60px;
  position: absolute;
  z-index: -1;
}

.pageTtl {
  background: url(../img/aboutus/tsubu-about.svg) no-repeat top right;
  background-size: 40% auto;
}
.pageTtl .txtWrapper {
  padding: 50px 0 40px;
}
.pageTtl .txtWrapper h2 {
  text-align: left;
}
.pageTtl .txtWrapper p {
  padding-top: 10px;
  font-size: 13px;
  line-height: 2em;
}
@media (max-width: 769px) {
  .pageTtl .txtWrapper {
    padding: 30px 0 30px;
  }
  .pageTtl .txtWrapper h2 {
    margin-bottom: 10px;
  }
}
.pageTtl .pagettlImg {
  margin-right: 10%;
}
.pageTtl .pagettlImg img {
  width: 100%;
}

.pageTtlSimple {
  text-align: center;
  padding-top: 40px;
}
@media (max-width: 769px) {
  .pageTtlSimple {
    padding-top: 20px;
  }
}
.pageTtlSimple p {
  padding-top: 10px;
}

.conpactBtnArea {
  background-color: #F4F8FA;
  padding: 40px 0;
  text-align: center;
}
.conpactBtnArea p {
  font-weight: bold;
  margin-right: 40px;
  display: inline-block;
  vertical-align: middle;
}
@media (max-width: 769px) {
  .conpactBtnArea p {
    display: block;
    text-align: center;
    margin-right: auto;
    margin-bottom: 20px;
  }
}
.conpactBtnArea a {
  display: inline-block;
}

.bookingArea {
  width: 100%;
  position: relative;
  text-align: center;
}
.bookingArea:before {
  content: "";
  position: absolute;
  background: url("../img/common/img-bookingbg.jpg") no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.bookingArea:after {
  content: "";
  position: absolute;
  background-color: #5695B3;
  opacity: 0.8;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.bookingArea h3 {
  color: #ffffff;
  font-size: 36px;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}
.bookingArea h3::before {
  content: "";
  background: url("../img/home/accent03.svg") no-repeat;
  width: 90px;
  height: 32px;
  background-size: contain;
  display: block;
  margin: 0 auto 20px;
}

/* 非表示 */
.is-hide {
  display: none;
  z-index: -9999;
}

/* LOADING */
#loader-bg {
  background: #95BDD0;
  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: -36px;
  -webkit-animation: fuwafuwa 0.5s infinite ease-in-out 0.3s alternate;
          animation: fuwafuwa 0.5s infinite ease-in-out 0.3s alternate;
  background: url(../img/common/logo-white.svg) no-repeat center center;
  display: inline-block;
  background-size: contain;
  -webkit-transition: 1.5s ease-in-out;
  transition: 1.5s ease-in-out;
  width: 134px;
  height: 52px;
  z-index: 9999;
}
@-webkit-keyframes fuwafuwa {
  0% {
    -webkit-transform: translate(0, 0) rotate(-7deg);
            transform: translate(0, 0) rotate(-7deg);
  }
  25% {
    -webkit-transform: translate(0, 0) rotate(-3.5deg);
            transform: translate(0, 0) rotate(-3.5deg);
  }
  50% {
    -webkit-transform: translate(0, 0) rotate(0deg);
            transform: translate(0, 0) rotate(0deg);
  }
  75% {
    -webkit-transform: translate(0, 0) rotate(3.5deg);
            transform: translate(0, 0) rotate(3.5deg);
  }
  100% {
    -webkit-transform: translate(0, 0) rotate(7deg);
            transform: translate(0, 0) rotate(7deg);
  }
}
@keyframes fuwafuwa {
  0% {
    -webkit-transform: translate(0, 0) rotate(-7deg);
            transform: translate(0, 0) rotate(-7deg);
  }
  25% {
    -webkit-transform: translate(0, 0) rotate(-3.5deg);
            transform: translate(0, 0) rotate(-3.5deg);
  }
  50% {
    -webkit-transform: translate(0, 0) rotate(0deg);
            transform: translate(0, 0) rotate(0deg);
  }
  75% {
    -webkit-transform: translate(0, 0) rotate(3.5deg);
            transform: translate(0, 0) rotate(3.5deg);
  }
  100% {
    -webkit-transform: translate(0, 0) rotate(7deg);
            transform: translate(0, 0) rotate(7deg);
  }
}

#HOME .kv {
  position: relative;
  width: 90%;
  margin: 0 auto;
}
#HOME .kv .slider {
  width: 100%;
  margin: 0 auto;
}
#HOME .kv .slider img {
  width: 100%;
  margin: 0 auto;
}
#HOME .kv .bookingBtn {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 180px;
  height: 152px;
  -webkit-transition: -webkit-transform 0.2s ease-out;
  transition: -webkit-transform 0.2s ease-out;
  transition: transform 0.2s ease-out;
  transition: transform 0.2s ease-out, -webkit-transform 0.2s ease-out;
  z-index: 100;
  display: block;
  font-size: 16px;
}
#HOME .kv .bookingBtn img {
  width: 100%;
}
@media (max-width: 1000px) {
  #HOME .kv .bookingBtn {
    width: 150px;
    height: 127px;
  }
}
@media (max-width: 769px) {
  #HOME .kv .bookingBtn {
    width: 120px;
    height: 102px;
    bottom: -20px;
  }
}
#HOME .kv .bookingBtn:hover {
  opacity: 1;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}
#HOME .kv .bookingBtn span {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 100;
  color: #ffffff;
  font-weight: bold;
  width: 100%;
  text-align: center;
}
#HOME .backgroundMaruBig {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  overflow: hidden;
  width: 30%;
  text-align: right;
}
#HOME .backgroundMaruBig img {
  width: 100%;
}
@media (max-width: 769px) {
  #HOME .backgroundMaruBig {
    width: 35%;
  }
}
#HOME .message {
  width: 100%;
  position: relative;
  text-align: center;
}
#HOME .message h4 {
  color: #95BDD0;
  font-size: 55px;
  margin-bottom: 30px;
  line-height: 1.2em;
}
#HOME .message p {
  line-height: 2.2em;
}
@media (max-width: 769px) {
  #HOME .message p {
    text-align: left;
    line-height: 1.7em;
  }
}
#HOME .message .backgroundTsubu {
  position: absolute;
  top: -150px;
  left: 20px;
  z-index: -1;
  /***************************************************
  * Generated by SVG Artista on 6/9/2021, 10:25:59 AM
  * MIT license (https://opensource.org/licenses/MIT)
  * W. https://svgartista.net
  **************************************************/
}
@media (max-width: 1000px) {
  #HOME .message .backgroundTsubu {
    top: -270px;
    left: -10px;
  }
}
@media (max-width: 769px) {
  #HOME .message .backgroundTsubu {
    top: -270px;
    left: -10px;
  }
  #HOME .message .backgroundTsubu svg {
    width: 100%;
  }
}
@-webkit-keyframes animate-svg-fill-1 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(149, 189, 208);
  }
}
@keyframes animate-svg-fill-1 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(149, 189, 208);
  }
}
#HOME .message .backgroundTsubu .svg-elem-1 {
  -webkit-animation: animate-svg-fill-1 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.1s both;
  animation: animate-svg-fill-1 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.1s both;
}
@-webkit-keyframes animate-svg-fill-2 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(149, 189, 208);
  }
}
@keyframes animate-svg-fill-2 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(149, 189, 208);
  }
}
#HOME .message .backgroundTsubu .svg-elem-2 {
  -webkit-animation: animate-svg-fill-2 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.2s both;
  animation: animate-svg-fill-2 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.2s both;
}
@-webkit-keyframes animate-svg-fill-3 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(149, 189, 208);
  }
}
@keyframes animate-svg-fill-3 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(149, 189, 208);
  }
}
#HOME .message .backgroundTsubu .svg-elem-3 {
  -webkit-animation: animate-svg-fill-3 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.3s both;
  animation: animate-svg-fill-3 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.3s both;
}
@-webkit-keyframes animate-svg-fill-4 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(149, 189, 208);
  }
}
@keyframes animate-svg-fill-4 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(149, 189, 208);
  }
}
#HOME .message .backgroundTsubu .svg-elem-4 {
  -webkit-animation: animate-svg-fill-4 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.4s both;
  animation: animate-svg-fill-4 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.4s both;
}
@-webkit-keyframes animate-svg-fill-5 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(149, 189, 208);
  }
}
@keyframes animate-svg-fill-5 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(149, 189, 208);
  }
}
#HOME .message .backgroundTsubu .svg-elem-5 {
  -webkit-animation: animate-svg-fill-5 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.5s both;
  animation: animate-svg-fill-5 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.5s both;
}
@-webkit-keyframes animate-svg-fill-6 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(149, 189, 208);
  }
}
@keyframes animate-svg-fill-6 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(149, 189, 208);
  }
}
#HOME .message .backgroundTsubu .svg-elem-6 {
  -webkit-animation: animate-svg-fill-6 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.6s both;
  animation: animate-svg-fill-6 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.6s both;
}
@-webkit-keyframes animate-svg-fill-7 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(149, 189, 208);
  }
}
@keyframes animate-svg-fill-7 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(149, 189, 208);
  }
}
#HOME .message .backgroundTsubu .svg-elem-7 {
  -webkit-animation: animate-svg-fill-7 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.7s both;
  animation: animate-svg-fill-7 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.7s both;
}
@-webkit-keyframes animate-svg-fill-8 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(149, 189, 208);
  }
}
@keyframes animate-svg-fill-8 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(149, 189, 208);
  }
}
#HOME .message .backgroundTsubu .svg-elem-8 {
  -webkit-animation: animate-svg-fill-8 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.8s both;
  animation: animate-svg-fill-8 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.8s both;
}
@-webkit-keyframes animate-svg-fill-9 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(149, 189, 208);
  }
}
@keyframes animate-svg-fill-9 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(149, 189, 208);
  }
}
#HOME .message .backgroundTsubu .svg-elem-9 {
  -webkit-animation: animate-svg-fill-9 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.9s both;
  animation: animate-svg-fill-9 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.9s both;
}
@-webkit-keyframes animate-svg-fill-10 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(149, 189, 208);
  }
}
@keyframes animate-svg-fill-10 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(149, 189, 208);
  }
}
#HOME .message .backgroundTsubu .svg-elem-10 {
  -webkit-animation: animate-svg-fill-10 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1s both;
  animation: animate-svg-fill-10 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1s both;
}
@-webkit-keyframes animate-svg-fill-11 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(149, 189, 208);
  }
}
@keyframes animate-svg-fill-11 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(149, 189, 208);
  }
}
#HOME .message .backgroundTsubu .svg-elem-11 {
  -webkit-animation: animate-svg-fill-11 2s cubic-bezier(0.47, 0, 0.745, 0.715) 2s both;
  animation: animate-svg-fill-11 2s cubic-bezier(0.47, 0, 0.745, 0.715) 2s both;
}
#HOME .message .intro_maru01 {
  position: absolute;
  top: 240px;
  left: 8%;
  z-index: -1;
}
#HOME .message .intro_maru02 {
  position: absolute;
  top: 270px;
  right: 7%;
  z-index: -1;
}
#HOME .message .intro_maru03 {
  position: absolute;
  top: 80px;
  right: 5%;
  z-index: -1;
}
@media (max-width: 769px) {
  #HOME .message .intro_maru01,
  #HOME .message .intro_maru02,
  #HOME .message .intro_maru03 {
    display: none;
  }
}
#HOME .topAbout {
  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;
}
#HOME .topAbout .imgArea {
  width: 50%;
  position: relative;
}
#HOME .topAbout .imgArea img {
  width: 100%;
}
#HOME .topAbout .imgArea img.houseImg {
  position: absolute;
  transform: rotate(-2deg);
  -moz-transform: rotate(-2deg);
  -webkit-transform: rotate(-2deg);
  z-index: 1;
}
#HOME .topAbout .imgArea img.houseImgBg {
  transform: rotate(4deg);
  -moz-transform: rotate(4deg);
  -webkit-transform: rotate(4deg);
}
#HOME .topAbout .txtArea {
  width: 50%;
  text-align: center;
}
#HOME .topAbout .txtArea .inner {
  padding: 40px 20px 0 60px;
}
#HOME .topAbout .txtArea .inner h3 {
  text-align: center;
  color: #95BDD0;
  font-size: 36px;
  position: relative;
  display: inline-block;
}
#HOME .topAbout .txtArea .inner h3::before {
  content: "";
  position: absolute;
  background: url(../img/home/accent01.svg) no-repeat;
  width: 53px;
  height: 59px;
  background-size: contain;
  top: -30px;
  left: -50px;
}
#HOME .topAbout .txtArea .inner p {
  margin: 30px 0;
}
@media (max-width: 769px) {
  #HOME .topAbout {
    padding-top: 20px;
  }
  #HOME .topAbout .imgArea,
  #HOME .topAbout .txtArea {
    width: 100%;
  }
  #HOME .topAbout .txtArea {
    margin-top: 60px;
  }
  #HOME .topAbout .txtArea .inner {
    padding: 0;
  }
}
#HOME .topAccess {
  background-color: #e3edf2;
}
#HOME .topAccess .wrapper {
  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;
  max-width: 880px;
}
#HOME .topAccess .wrapper .txtArea {
  width: 40%;
}
#HOME .topAccess .wrapper .txtArea .inner {
  padding-right: 40px;
}
#HOME .topAccess .wrapper .txtArea .inner h3 {
  text-align: center;
  color: #95BDD0;
  font-size: 36px;
  position: relative;
  display: inline-block;
}
#HOME .topAccess .wrapper .txtArea .inner h3::before {
  content: "";
  position: absolute;
  background: url(../img/home/accent02.svg) no-repeat;
  width: 53px;
  height: 59px;
  background-size: contain;
  top: -30px;
  right: -50px;
}
#HOME .topAccess .wrapper .txtArea .inner h4 {
  font-weight: bold;
  font-size: 15px;
}
#HOME .topAccess .wrapper .txtArea .inner p {
  margin: 30px 0;
}
#HOME .topAccess .wrapper .txtArea .inner p.sml {
  margin: 10px 0;
  font-size: 13px;
}
#HOME .topAccess .wrapper .txtArea .inner a.googlemap {
  color: #EF8667;
  font-weight: bold;
}
#HOME .topAccess .wrapper .txtArea .inner a.googlemap:before {
  content: "";
  background: url(../img/common/icon-map.svg) no-repeat;
  background-size: contain;
  width: 12px;
  height: 16px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 7px;
}
#HOME .topAccess .wrapper .txtArea .inner a.btn-blueBorder {
  margin: 40px 0 0;
}
#HOME .topAccess .wrapper .imgArea {
  width: 60%;
}
#HOME .topAccess .wrapper .imgArea img {
  width: 100%;
}
@media (max-width: 769px) {
  #HOME .topAccess .wrapper .imgArea,
  #HOME .topAccess .wrapper .txtArea {
    width: 100%;
  }
  #HOME .topAccess .wrapper .txtArea {
    margin-top: 10px;
  }
  #HOME .topAccess .wrapper .txtArea .inner {
    padding: 0;
    text-align: center;
  }
  #HOME .topAccess .wrapper .txtArea .inner a.btn-blueBorder {
    margin: 40px auto;
  }
}
#HOME .topCustomervoices h3 {
  font-size: 18px;
  text-align: center;
  margin-bottom: 40px;
}
#HOME .topCustomervoices h3 span {
  font-size: 36px;
  color: #95BDD0;
  display: block;
  margin-bottom: 0.5em;
}
@media (max-width: 769px) {
  #HOME .topCustomervoices h3 span {
    font-size: 32px;
  }
}
#HOME .topCustomervoices h3::before {
  content: "";
  background: url("../img/home/accent04.svg") no-repeat;
  width: 90px;
  height: 32px;
  background-size: contain;
  margin: 0 auto 25px;
  display: block;
}
#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 #95BDD0;
}
#HOME .topCustomervoices .voicesList li:nth-child(1), #HOME .topCustomervoices .voicesList li:nth-child(2) {
  border-top: 1px solid #95BDD0;
}
@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%;
}
#HOME .topCustomervoices .voicesList li .txtArea .ttl {
  color: #5695B3;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 0.7em;
}
#HOME .topCustomervoices .voicesList li .txtArea .icons {
  font-weight: bold;
  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 {
  background-color: #F4F8FA;
  margin-bottom: 70px;
}
@media (max-width: 769px) {
  #HOME .topOwner {
    margin-bottom: 50px;
  }
}
#HOME .topOwner .inner {
  padding: 50px 10%;
  position: relative;
  min-height: 360px;
}
@media (max-width: 1000px) {
  #HOME .topOwner .inner {
    padding: 50px 5%;
    min-height: 270px;
  }
}
#HOME .topOwner .inner .txtArea {
  margin-left: 310px;
}
@media (max-width: 1000px) {
  #HOME .topOwner .inner .txtArea {
    margin-left: 225px;
  }
}
@media (max-width: 769px) {
  #HOME .topOwner .inner .txtArea {
    margin-left: 0;
    text-align: center;
  }
}
#HOME .topOwner .inner .txtArea h3 {
  font-size: 18px;
  text-align: left;
  margin: 30px 0;
  position: relative;
  display: inline-block;
}
@media (max-width: 769px) {
  #HOME .topOwner .inner .txtArea h3 {
    text-align: center;
  }
}
#HOME .topOwner .inner .txtArea h3 span {
  font-size: 36px;
  color: #95BDD0;
  display: block;
  margin-bottom: 0.5em;
}
@media (max-width: 769px) {
  #HOME .topOwner .inner .txtArea h3 span {
    font-size: 32px;
  }
}
#HOME .topOwner .inner .txtArea h3::after {
  content: "";
  position: absolute;
  background: url(http://test.himachica.jp/sora/assets/img/home/accent02.svg) no-repeat;
  width: 53px;
  height: 59px;
  background-size: contain;
  top: -30px;
  right: 0;
}
#HOME .topOwner .inner .txtArea .imgArea {
  position: absolute;
  width: 260px;
  height: 360px;
  left: 10%;
  top: 50px;
}
#HOME .topOwner .inner .txtArea .imgArea img {
  width: 100%;
}
@media (max-width: 1000px) {
  #HOME .topOwner .inner .txtArea .imgArea {
    width: 195px;
    height: 270px;
    left: 5%;
  }
}
@media (max-width: 769px) {
  #HOME .topOwner .inner .txtArea .imgArea {
    position: relative;
    left: auto;
    top: auto;
    margin: 0 auto 30px;
  }
}
#HOME .topOwner .inner .txtArea .name {
  font-weight: bold;
  margin-bottom: 20px;
}
#HOME .topOwner .inner .txtArea .name span {
  font-size: 22px;
  line-height: 1.5em;
}
#HOME .gallery {
  width: 100%;
}
#HOME .gallery .sliderGallery li img {
  width: 100%;
}

#ABOUTSORA .about_grp {
  padding-bottom: 100px;
}
#ABOUTSORA .about_grp.mt {
  margin-top: 100px;
}
#ABOUTSORA .about_grp h3 {
  padding-bottom: 40px;
  font-size: 32px;
  text-align: center;
}
#ABOUTSORA .about_grp h3 span {
  font-size: 15px;
  display: block;
  line-height: 1.2em;
}
@media (max-width: 769px) {
  #ABOUTSORA .about_grp {
    padding-bottom: 60px;
  }
  #ABOUTSORA .about_grp.mt {
    margin-top: 60px;
  }
  #ABOUTSORA .about_grp h3 {
    padding-bottom: 20px;
    font-size: 28px;
  }
  #ABOUTSORA .about_grp h3 span {
    font-size: 12px;
  }
}
#ABOUTSORA .madoriWrapper {
  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;
}
#ABOUTSORA .madoriWrapper .imgArea {
  width: 48%;
}
#ABOUTSORA .madoriWrapper .imgArea img {
  width: 100%;
}
@media (max-width: 769px) {
  #ABOUTSORA .madoriWrapper .imgArea {
    width: 100%;
  }
  #ABOUTSORA .madoriWrapper .imgArea.mb {
    margin-bottom: 30px;
  }
}
#ABOUTSORA .roomsGroup {
  position: relative;
  margin-bottom: 120px;
}
@media (max-width: 769px) {
  #ABOUTSORA .roomsGroup {
    margin-bottom: 60px;
  }
}
#ABOUTSORA .roomsGroup .flexWrap {
  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;
}
#ABOUTSORA .roomsGroup .flexWrap .img01 {
  width: 55%;
}
#ABOUTSORA .roomsGroup .flexWrap .img01 img {
  width: 100%;
}
#ABOUTSORA .roomsGroup .flexWrap .txtArea {
  width: 38%;
  padding-top: 150px;
}
#ABOUTSORA .roomsGroup .flexWrap .txtArea h4 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 25px;
}
#ABOUTSORA .roomsGroup .flexWrap .txtArea p {
  line-height: 1.7em;
}
#ABOUTSORA .roomsGroup .flexWrap .txtArea p span {
  font-size: 12px;
  display: inline-block;
  line-height: 1.5em;
  margin-top: 5px;
}
#ABOUTSORA .roomsGroup .flexWrap .txtArea.mb {
  margin-bottom: 30px;
}
@media (max-width: 769px) {
  #ABOUTSORA .roomsGroup .flexWrap .txtArea.mb {
    margin-bottom: 0;
  }
}
@media (max-width: 769px) {
  #ABOUTSORA .roomsGroup .flexWrap .img01,
  #ABOUTSORA .roomsGroup .flexWrap .txtArea {
    width: 100%;
  }
  #ABOUTSORA .roomsGroup .flexWrap .txtArea {
    padding-top: 20px;
  }
  #ABOUTSORA .roomsGroup .flexWrap .txtArea h4 {
    margin-bottom: 15px;
  }
}
#ABOUTSORA .roomsGroup .ttlAbsolute {
  position: absolute;
  color: #5695B3;
  opacity: 0.7;
  font-size: 72px;
  top: 50px;
  right: 0;
}
@media (max-width: 769px) {
  #ABOUTSORA .roomsGroup .ttlAbsolute {
    position: relative;
    font-size: 28px;
    top: 0;
    padding-bottom: 30px;
    text-align: center;
    margin-top: 20px;
  }
}
#ABOUTSORA .roomsGroup .moreImagesFlex {
  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;
  max-width: 832px;
  margin: 0 auto;
}
#ABOUTSORA .roomsGroup .moreImagesFlex .img02 {
  width: 35%;
}
#ABOUTSORA .roomsGroup .moreImagesFlex .img03 {
  width: 60%;
  margin-top: 50px;
}
#ABOUTSORA .roomsGroup .moreImagesFlex .img02 img,
#ABOUTSORA .roomsGroup .moreImagesFlex .img03 img {
  width: 100%;
}
@media (max-width: 769px) {
  #ABOUTSORA .roomsGroup .moreImagesFlex {
    margin-top: 30px;
  }
  #ABOUTSORA .roomsGroup .moreImagesFlex .img02 {
    width: 80%;
  }
  #ABOUTSORA .roomsGroup .moreImagesFlex .img03 {
    width: 100%;
    margin-top: 30px;
    text-align: right;
  }
  #ABOUTSORA .roomsGroup .moreImagesFlex .img03 img {
    width: 80%;
  }
}
#ABOUTSORA .roomsGroup.reverse .flexWrap {
  -ms-flex-wrap: wrap-reverse;
      flex-wrap: wrap-reverse;
}
#ABOUTSORA .roomsGroup.reverse .ttlAbsolute {
  position: absolute;
  right: auto;
  left: 0;
}
@media (max-width: 769px) {
  #ABOUTSORA .roomsGroup.reverse .ttlAbsolute {
    position: relative;
    font-size: 28px;
    top: 0;
    padding-bottom: 30px;
    text-align: center;
  }
}
#ABOUTSORA .roomsGroup.reverse .moreImagesFlex {
  -ms-flex-wrap: wrap-reverse;
      flex-wrap: wrap-reverse;
}
#ABOUTSORA .roomsGroupBed .ttl {
  color: #5695B3;
  opacity: 0.7;
  font-size: 72px;
  text-align: center;
  padding-bottom: 100px;
}
@media (max-width: 769px) {
  #ABOUTSORA .roomsGroupBed .ttl {
    font-size: 28px;
    padding-bottom: 20px;
  }
}
#ABOUTSORA .roomsGroupBed .flexWrap {
  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;
}
#ABOUTSORA .roomsGroupBed .flexWrap.reserve {
  -ms-flex-wrap: wrap-reverse;
      flex-wrap: wrap-reverse;
}
#ABOUTSORA .roomsGroupBed .flexWrap .img01,
#ABOUTSORA .roomsGroupBed .flexWrap .img03 {
  width: 55%;
}
#ABOUTSORA .roomsGroupBed .flexWrap .img01 img,
#ABOUTSORA .roomsGroupBed .flexWrap .img03 img {
  width: 100%;
}
@media (max-width: 769px) {
  #ABOUTSORA .roomsGroupBed .flexWrap .img01,
  #ABOUTSORA .roomsGroupBed .flexWrap .img03 {
    width: 100%;
  }
}
@media (max-width: 769px) {
  #ABOUTSORA .roomsGroupBed .flexWrap .img02 {
    width: 80%;
    margin-top: 20px;
  }
  #ABOUTSORA .roomsGroupBed .flexWrap .img02 img {
    width: 100%;
    vertical-align: top;
  }
}
#ABOUTSORA .roomsGroupBed .flexWrap .img03 {
  padding-top: 70px;
}
@media (max-width: 769px) {
  #ABOUTSORA .roomsGroupBed .flexWrap .img03 {
    width: 100%;
    padding-top: 30px;
    text-align: right;
  }
  #ABOUTSORA .roomsGroupBed .flexWrap .img03 img {
    width: 80%;
  }
  #ABOUTSORA .roomsGroupBed .flexWrap .img03.bedroom img {
    width: 100%;
  }
}
#ABOUTSORA .roomsGroupBed .flexWrap .txtArea {
  width: 40%;
}
@media (max-width: 769px) {
  #ABOUTSORA .roomsGroupBed .flexWrap .txtArea {
    width: 100%;
    margin-top: 30px;
  }
}
#ABOUTSORA .roomsGroupBed .flexWrap .txtArea h4 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 25px;
}
#ABOUTSORA .roomsGroupBed .flexWrap .txtArea h4.mt {
  margin-top: 40px;
}
@media (max-width: 769px) {
  #ABOUTSORA .roomsGroupBed .flexWrap .txtArea h4.mt {
    margin-top: 30px;
  }
}
#ABOUTSORA .roomsGroupBed .flexWrap .txtArea p {
  line-height: 1.7em;
}
#ABOUTSORA .roomsGroupBed .flexWrap .txtArea p span {
  font-size: 12px;
}
#ABOUTSORA .roomsGroupBed .flexWrap .txtArea .bedNum {
  margin-bottom: 20px;
}
#ABOUTSORA .roomsGroupBed .flexWrap .txtArea .bedNum li {
  display: inline-block;
  font-size: 13px;
  font-weight: bold;
  color: #5695B3;
  margin-right: 20px;
}
#ABOUTSORA .roomsGroupBed .flexWrap .txtArea .bedNum li:before {
  content: "";
  background: url(../img/aboutus/icon-bed.svg) no-repeat;
  background-size: contain;
  width: 20px;
  height: 12px;
  display: inline-block;
  margin-right: 10px;
}
#ABOUTSORA .roomsGroupBed .flexWrap .txtArea .txtWrap {
  margin-left: 40px;
  margin-bottom: 40px;
}
@media (max-width: 769px) {
  #ABOUTSORA .roomsGroupBed .flexWrap .txtArea .txtWrap {
    margin-left: 0;
    margin-bottom: 0;
  }
}
#ABOUTSORA .roomsGroupBed .flexWrap .txtArea .img02 {
  margin-right: 40px;
}
#ABOUTSORA .roomsGroupBed .flexWrap .txtArea .img02 img {
  width: 100%;
}
@media (max-width: 769px) {
  #ABOUTSORA .roomsGroupBed .flexWrap .txtArea .img02 {
    margin-right: 40px;
    width: 80%;
  }
}
#ABOUTSORA .amenityandroom {
  margin-top: 120px;
}
@media (max-width: 769px) {
  #ABOUTSORA .amenityandroom {
    margin-top: 60px;
  }
}
#ABOUTSORA .amenityandroom .flexWrap {
  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;
}
#ABOUTSORA .amenityandroom .flexWrap .otherArea {
  width: 48%;
}
@media (max-width: 769px) {
  #ABOUTSORA .amenityandroom .flexWrap .otherArea {
    width: 100%;
  }
  #ABOUTSORA .amenityandroom .flexWrap .otherArea.sectionSecond {
    margin-top: 40px;
  }
}
#ABOUTSORA .amenityandroom .flexWrap .otherArea .ttl {
  font-size: 36px;
  color: #5695B3;
}
#ABOUTSORA .amenityandroom .flexWrap .otherArea h4 {
  font-size: 18px;
  font-weight: bold;
  margin: 25px 0;
}
#ABOUTSORA .amenityandroom .flexWrap .otherArea ul li {
  margin-bottom: 20px;
}
#ABOUTSORA .amenityandroom .flexWrap .otherArea ul li .subttl {
  margin-bottom: 10px;
  font-size: 16px;
  margin-bottom: 5px;
  font-weight: bold;
  color: #5695B3;
}
#ABOUTSORA .amenityandroom .flexWrap .otherArea ul li .asterisk {
  font-size: 13px;
  margin-top: 5px;
  padding-left: 10px;
}
#ABOUTSORA .amenityandroom .flexWrap .otherArea ul li .asterisk li {
  margin-bottom: 0;
}

#ACCESS h4 {
  font-weight: bold;
  padding-bottom: 1em;
}
#ACCESS .addressMap {
  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;
}
#ACCESS .addressMap .imgArea {
  width: 57%;
}
#ACCESS .addressMap .imgArea img {
  width: 100%;
}
#ACCESS .addressMap .txtArea {
  width: 38%;
  padding-top: 40px;
}
#ACCESS .addressMap .txtArea p {
  margin-bottom: 1em;
}
#ACCESS .addressMap .txtArea a.googlemap {
  color: #EF8667;
  font-weight: bold;
}
#ACCESS .addressMap .txtArea a.googlemap:before {
  content: "";
  background: url(../img/common/icon-map.svg) no-repeat;
  background-size: contain;
  width: 12px;
  height: 16px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 7px;
}
#ACCESS .addressMap .txtArea .around {
  margin-top: 40px;
}
#ACCESS .addressMap .txtArea .around h5 {
  font-weight: bold;
  line-height: 1.7em;
  padding-bottom: 5px;
}
#ACCESS .addressMap .txtArea .around ol li {
  padding: 0.1em 0;
  text-indent: -1em;
  padding-left: 1em;
}
#ACCESS .addressMap .txtArea .around ol li:before {
  content: "・";
}
@media (max-width: 769px) {
  #ACCESS .addressMap .imgArea,
  #ACCESS .addressMap .txtArea {
    width: 100%;
  }
  #ACCESS .addressMap .txtArea {
    margin-top: 40px;
  }
}
#ACCESS .blueBg {
  background-color: #e3edf2;
}
#ACCESS .blueBg .wrapper {
  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 .blueBg .wrapper .txtArea {
  width: 38%;
}
#ACCESS .blueBg .wrapper .txtArea .grp.mt {
  margin-top: 40px;
}
#ACCESS .blueBg .wrapper .txtArea .grp h3 {
  color: #5695B3;
  font-size: 36px;
  padding-bottom: 20px;
}
#ACCESS .blueBg .wrapper .txtArea .grp a.pdf {
  color: #EF8667;
  font-weight: bold;
  display: inline-block;
  padding-top: 5px;
  margin-top: 10px;
}
#ACCESS .blueBg .wrapper .txtArea .grp 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 .blueBg .wrapper .imgArea {
  width: 50%;
}
#ACCESS .blueBg .wrapper .imgArea img {
  width: 100%;
}
@media (max-width: 769px) {
  #ACCESS .blueBg .wrapper .imgArea,
  #ACCESS .blueBg .wrapper .txtArea {
    width: 100%;
  }
  #ACCESS .blueBg .wrapper .txtArea {
    margin-bottom: 40px;
  }
}
#ACCESS .nearbyArea h3 {
  font-size: 28px;
  text-align: center;
  margin-bottom: 30px;
}
#ACCESS .nearbyArea h3 span {
  font-size: 15px;
  display: block;
  font-weight: bold;
}
#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: 10px;
  margin-top: 35px;
}
@media (max-width: 769px) {
  #ACCESS .nearbyArea .otherArea li {
    width: 100%;
    margin-top: 20px;
  }
  #ACCESS .nearbyArea .otherArea li:last-child {
    margin-bottom: 0;
  }
}
#ACCESS .nearbyArea .otherArea li p {
  width: 80%;
}
#ACCESS .nearbyArea .otherArea li p.rain {
  position: relative;
}
#ACCESS .nearbyArea .otherArea li p.rain:before {
  content: "雨の日もおすすめ！";
  position: absolute;
  top: -22px;
  left: 0;
  font-size: 11px;
  color: #5695B3;
}
@media (max-width: 769px) {
  #ACCESS .nearbyArea .otherArea li p.rain:before {
    position: inherit;
    top: auto;
    display: block;
  }
}
#ACCESS .nearbyArea .otherArea li p.supermarket {
  position: relative;
}
#ACCESS .nearbyArea .otherArea li p.supermarket:before {
  content: "スーパーマーケット";
  position: absolute;
  top: -22px;
  left: 0;
  font-size: 11px;
  color: #5695B3;
}
@media (max-width: 769px) {
  #ACCESS .nearbyArea .otherArea li p.supermarket:before {
    position: inherit;
    top: auto;
    display: block;
  }
}
#ACCESS .nearbyArea .otherArea li p.distance {
  width: 17%;
  text-align: right;
}

#GALLERY img {
  width: 100%;
}
#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 .kv {
  position: relative;
  width: 90%;
  margin: 0 auto;
}
#GALLERY .kv .slider {
  width: 100%;
  margin: 0 auto;
}
#GALLERY .kv .slider img {
  width: 100%;
  margin: 0 auto;
}
#GALLERY .kv .bookingBtn {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 180px;
  height: 152px;
  -webkit-transition: -webkit-transform 0.2s ease-out;
  transition: -webkit-transform 0.2s ease-out;
  transition: transform 0.2s ease-out;
  transition: transform 0.2s ease-out, -webkit-transform 0.2s ease-out;
  z-index: 100;
  display: block;
  font-size: 16px;
}
#GALLERY .kv .bookingBtn img {
  width: 100%;
}
@media (max-width: 1000px) {
  #GALLERY .kv .bookingBtn {
    width: 150px;
    height: 127px;
  }
}
@media (max-width: 769px) {
  #GALLERY .kv .bookingBtn {
    width: 120px;
    height: 102px;
    bottom: -20px;
  }
}
#GALLERY .kv .bookingBtn:hover {
  opacity: 1;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}
#GALLERY .kv .bookingBtn span {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 100;
  color: #ffffff;
  font-weight: bold;
  width: 100%;
  text-align: center;
}
#GALLERY .backgroundMaruBig {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  overflow: hidden;
  width: 30%;
  text-align: right;
}
#GALLERY .backgroundMaruBig img {
  width: 100%;
}
@media (max-width: 769px) {
  #GALLERY .backgroundMaruBig {
    width: 35%;
  }
}
#GALLERY .message {
  width: 100%;
  position: relative;
  text-align: center;
}
#GALLERY .message h4 {
  color: #95BDD0;
  font-size: 55px;
  margin-bottom: 30px;
  line-height: 1.2em;
}
#GALLERY .message p {
  line-height: 2.2em;
}
@media (max-width: 769px) {
  #GALLERY .message p {
    text-align: left;
    line-height: 1.7em;
  }
}
#GALLERY .message .backgroundTsubu {
  position: absolute;
  top: -150px;
  left: 20px;
  z-index: -1;
  /***************************************************
  * Generated by SVG Artista on 6/9/2021, 10:25:59 AM
  * MIT license (https://opensource.org/licenses/MIT)
  * W. https://svgartista.net
  **************************************************/
}
@media (max-width: 1000px) {
  #GALLERY .message .backgroundTsubu {
    top: -270px;
    left: -10px;
  }
}
@media (max-width: 769px) {
  #GALLERY .message .backgroundTsubu {
    top: -270px;
    left: -10px;
  }
  #GALLERY .message .backgroundTsubu svg {
    width: 100%;
  }
}
@-webkit-keyframes animate-svg-fill-1 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(149, 189, 208);
  }
}
@keyframes animate-svg-fill-1 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(149, 189, 208);
  }
}
#GALLERY .message .backgroundTsubu .svg-elem-1 {
  -webkit-animation: animate-svg-fill-1 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.1s both;
  animation: animate-svg-fill-1 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.1s both;
}
@-webkit-keyframes animate-svg-fill-2 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(149, 189, 208);
  }
}
@keyframes animate-svg-fill-2 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(149, 189, 208);
  }
}
#GALLERY .message .backgroundTsubu .svg-elem-2 {
  -webkit-animation: animate-svg-fill-2 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.2s both;
  animation: animate-svg-fill-2 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.2s both;
}
@-webkit-keyframes animate-svg-fill-3 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(149, 189, 208);
  }
}
@keyframes animate-svg-fill-3 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(149, 189, 208);
  }
}
#GALLERY .message .backgroundTsubu .svg-elem-3 {
  -webkit-animation: animate-svg-fill-3 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.3s both;
  animation: animate-svg-fill-3 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.3s both;
}
@-webkit-keyframes animate-svg-fill-4 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(149, 189, 208);
  }
}
@keyframes animate-svg-fill-4 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(149, 189, 208);
  }
}
#GALLERY .message .backgroundTsubu .svg-elem-4 {
  -webkit-animation: animate-svg-fill-4 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.4s both;
  animation: animate-svg-fill-4 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.4s both;
}
@-webkit-keyframes animate-svg-fill-5 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(149, 189, 208);
  }
}
@keyframes animate-svg-fill-5 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(149, 189, 208);
  }
}
#GALLERY .message .backgroundTsubu .svg-elem-5 {
  -webkit-animation: animate-svg-fill-5 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.5s both;
  animation: animate-svg-fill-5 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.5s both;
}
@-webkit-keyframes animate-svg-fill-6 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(149, 189, 208);
  }
}
@keyframes animate-svg-fill-6 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(149, 189, 208);
  }
}
#GALLERY .message .backgroundTsubu .svg-elem-6 {
  -webkit-animation: animate-svg-fill-6 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.6s both;
  animation: animate-svg-fill-6 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.6s both;
}
@-webkit-keyframes animate-svg-fill-7 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(149, 189, 208);
  }
}
@keyframes animate-svg-fill-7 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(149, 189, 208);
  }
}
#GALLERY .message .backgroundTsubu .svg-elem-7 {
  -webkit-animation: animate-svg-fill-7 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.7s both;
  animation: animate-svg-fill-7 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.7s both;
}
@-webkit-keyframes animate-svg-fill-8 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(149, 189, 208);
  }
}
@keyframes animate-svg-fill-8 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(149, 189, 208);
  }
}
#GALLERY .message .backgroundTsubu .svg-elem-8 {
  -webkit-animation: animate-svg-fill-8 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.8s both;
  animation: animate-svg-fill-8 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.8s both;
}
@-webkit-keyframes animate-svg-fill-9 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(149, 189, 208);
  }
}
@keyframes animate-svg-fill-9 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(149, 189, 208);
  }
}
#GALLERY .message .backgroundTsubu .svg-elem-9 {
  -webkit-animation: animate-svg-fill-9 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.9s both;
  animation: animate-svg-fill-9 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.9s both;
}
@-webkit-keyframes animate-svg-fill-10 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(149, 189, 208);
  }
}
@keyframes animate-svg-fill-10 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(149, 189, 208);
  }
}
#GALLERY .message .backgroundTsubu .svg-elem-10 {
  -webkit-animation: animate-svg-fill-10 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1s both;
  animation: animate-svg-fill-10 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1s both;
}
@-webkit-keyframes animate-svg-fill-11 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(149, 189, 208);
  }
}
@keyframes animate-svg-fill-11 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(149, 189, 208);
  }
}
#GALLERY .message .backgroundTsubu .svg-elem-11 {
  -webkit-animation: animate-svg-fill-11 2s cubic-bezier(0.47, 0, 0.745, 0.715) 2s both;
  animation: animate-svg-fill-11 2s cubic-bezier(0.47, 0, 0.745, 0.715) 2s both;
}
#GALLERY .message .intro_maru01 {
  position: absolute;
  top: 240px;
  left: 8%;
  z-index: -1;
}
#GALLERY .message .intro_maru02 {
  position: absolute;
  top: 270px;
  right: 7%;
  z-index: -1;
}
#GALLERY .message .intro_maru03 {
  position: absolute;
  top: 80px;
  right: 5%;
  z-index: -1;
}
@media (max-width: 769px) {
  #GALLERY .message .intro_maru01,
  #GALLERY .message .intro_maru02,
  #GALLERY .message .intro_maru03 {
    display: none;
  }
}
#GALLERY .topAbout {
  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;
}
#GALLERY .topAbout .imgArea {
  width: 50%;
  position: relative;
}
#GALLERY .topAbout .imgArea img {
  width: 100%;
}
#GALLERY .topAbout .imgArea img.houseImg {
  position: absolute;
  transform: rotate(-2deg);
  -moz-transform: rotate(-2deg);
  -webkit-transform: rotate(-2deg);
  z-index: 1;
}
#GALLERY .topAbout .imgArea img.houseImgBg {
  transform: rotate(4deg);
  -moz-transform: rotate(4deg);
  -webkit-transform: rotate(4deg);
}
#GALLERY .topAbout .txtArea {
  width: 50%;
  text-align: center;
}
#GALLERY .topAbout .txtArea .inner {
  padding: 40px 20px 0 60px;
}
#GALLERY .topAbout .txtArea .inner h3 {
  text-align: center;
  color: #95BDD0;
  font-size: 36px;
  position: relative;
  display: inline-block;
}
#GALLERY .topAbout .txtArea .inner h3::before {
  content: "";
  position: absolute;
  background: url(../img/home/accent01.svg) no-repeat;
  width: 53px;
  height: 59px;
  background-size: contain;
  top: -30px;
  left: -50px;
}
#GALLERY .topAbout .txtArea .inner p {
  margin: 30px 0;
}
@media (max-width: 769px) {
  #GALLERY .topAbout {
    padding-top: 20px;
  }
  #GALLERY .topAbout .imgArea,
  #GALLERY .topAbout .txtArea {
    width: 100%;
  }
  #GALLERY .topAbout .txtArea {
    margin-top: 60px;
  }
  #GALLERY .topAbout .txtArea .inner {
    padding: 0;
  }
}
#GALLERY .topAccess {
  background-color: #e3edf2;
}
#GALLERY .topAccess .wrapper {
  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;
  max-width: 880px;
}
#GALLERY .topAccess .wrapper .txtArea {
  width: 40%;
}
#GALLERY .topAccess .wrapper .txtArea .inner {
  padding-right: 40px;
}
#GALLERY .topAccess .wrapper .txtArea .inner h3 {
  text-align: center;
  color: #95BDD0;
  font-size: 36px;
  position: relative;
  display: inline-block;
}
#GALLERY .topAccess .wrapper .txtArea .inner h3::before {
  content: "";
  position: absolute;
  background: url(../img/home/accent02.svg) no-repeat;
  width: 53px;
  height: 59px;
  background-size: contain;
  top: -30px;
  right: -50px;
}
#GALLERY .topAccess .wrapper .txtArea .inner h4 {
  font-weight: bold;
  font-size: 15px;
}
#GALLERY .topAccess .wrapper .txtArea .inner p {
  margin: 30px 0;
}
#GALLERY .topAccess .wrapper .txtArea .inner p.sml {
  margin: 10px 0;
  font-size: 13px;
}
#GALLERY .topAccess .wrapper .txtArea .inner a.googlemap {
  color: #EF8667;
  font-weight: bold;
}
#GALLERY .topAccess .wrapper .txtArea .inner a.googlemap:before {
  content: "";
  background: url(../img/common/icon-map.svg) no-repeat;
  background-size: contain;
  width: 12px;
  height: 16px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 7px;
}
#GALLERY .topAccess .wrapper .txtArea .inner a.btn-blueBorder {
  margin: 40px 0 0;
}
#GALLERY .topAccess .wrapper .imgArea {
  width: 60%;
}
#GALLERY .topAccess .wrapper .imgArea img {
  width: 100%;
}
@media (max-width: 769px) {
  #GALLERY .topAccess .wrapper .imgArea,
  #GALLERY .topAccess .wrapper .txtArea {
    width: 100%;
  }
  #GALLERY .topAccess .wrapper .txtArea {
    margin-top: 10px;
  }
  #GALLERY .topAccess .wrapper .txtArea .inner {
    padding: 0;
    text-align: center;
  }
  #GALLERY .topAccess .wrapper .txtArea .inner a.btn-blueBorder {
    margin: 40px auto;
  }
}
#GALLERY .topCustomervoices h3 {
  font-size: 18px;
  text-align: center;
  margin-bottom: 40px;
}
#GALLERY .topCustomervoices h3 span {
  font-size: 36px;
  color: #95BDD0;
  display: block;
  margin-bottom: 0.5em;
}
@media (max-width: 769px) {
  #GALLERY .topCustomervoices h3 span {
    font-size: 32px;
  }
}
#GALLERY .topCustomervoices h3::before {
  content: "";
  background: url("../img/home/accent04.svg") no-repeat;
  width: 90px;
  height: 32px;
  background-size: contain;
  margin: 0 auto 25px;
  display: block;
}
#GALLERY .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;
}
#GALLERY .topCustomervoices .voicesList li {
  width: 48%;
  border-bottom: 1px solid #95BDD0;
}
#GALLERY .topCustomervoices .voicesList li:nth-child(1), #GALLERY .topCustomervoices .voicesList li:nth-child(2) {
  border-top: 1px solid #95BDD0;
}
@media (max-width: 769px) {
  #GALLERY .topCustomervoices .voicesList li {
    width: 100%;
  }
  #GALLERY .topCustomervoices .voicesList li:nth-child(2) {
    border-top: none;
  }
}
#GALLERY .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;
}
#GALLERY .topCustomervoices .voicesList li .imgArea {
  width: 100px;
}
#GALLERY .topCustomervoices .voicesList li .imgArea img {
  width: 100%;
}
@media (max-width: 769px) {
  #GALLERY .topCustomervoices .voicesList li .imgArea {
    width: 80px;
  }
}
#GALLERY .topCustomervoices .voicesList li .txtArea {
  width: calc(100% - 120px);
}
@media (max-width: 769px) {
  #GALLERY .topCustomervoices .voicesList li .txtArea {
    width: calc(100% - 100px);
  }
}
#GALLERY .topCustomervoices .voicesList li .txtArea .ttl {
  color: #5695B3;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 0.7em;
}
#GALLERY .topCustomervoices .voicesList li .txtArea .icons {
  font-weight: bold;
  margin-bottom: 0.7em;
}
#GALLERY .topCustomervoices .voicesList li .txtArea .icons .nights {
  margin-right: 15px;
}
#GALLERY .topCustomervoices .voicesList li .txtArea .icons .nights: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;
}
#GALLERY .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;
}
#GALLERY .topOwner {
  background-color: #F4F8FA;
  margin-bottom: 70px;
}
@media (max-width: 769px) {
  #GALLERY .topOwner {
    margin-bottom: 50px;
  }
}
#GALLERY .topOwner .inner {
  padding: 50px 10%;
  position: relative;
  min-height: 360px;
}
@media (max-width: 1000px) {
  #GALLERY .topOwner .inner {
    padding: 50px 5%;
    min-height: 270px;
  }
}
#GALLERY .topOwner .inner .txtArea {
  margin-left: 310px;
}
@media (max-width: 1000px) {
  #GALLERY .topOwner .inner .txtArea {
    margin-left: 225px;
  }
}
@media (max-width: 769px) {
  #GALLERY .topOwner .inner .txtArea {
    margin-left: 0;
    text-align: center;
  }
}
#GALLERY .topOwner .inner .txtArea h3 {
  font-size: 18px;
  text-align: left;
  margin: 30px 0;
  position: relative;
  display: inline-block;
}
@media (max-width: 769px) {
  #GALLERY .topOwner .inner .txtArea h3 {
    text-align: center;
  }
}
#GALLERY .topOwner .inner .txtArea h3 span {
  font-size: 36px;
  color: #95BDD0;
  display: block;
  margin-bottom: 0.5em;
}
@media (max-width: 769px) {
  #GALLERY .topOwner .inner .txtArea h3 span {
    font-size: 32px;
  }
}
#GALLERY .topOwner .inner .txtArea h3::after {
  content: "";
  position: absolute;
  background: url(http://test.himachica.jp/sora/assets/img/home/accent02.svg) no-repeat;
  width: 53px;
  height: 59px;
  background-size: contain;
  top: -30px;
  right: 0;
}
#GALLERY .topOwner .inner .txtArea .imgArea {
  position: absolute;
  width: 260px;
  height: 360px;
  left: 10%;
  top: 50px;
}
#GALLERY .topOwner .inner .txtArea .imgArea img {
  width: 100%;
}
@media (max-width: 1000px) {
  #GALLERY .topOwner .inner .txtArea .imgArea {
    width: 195px;
    height: 270px;
    left: 5%;
  }
}
@media (max-width: 769px) {
  #GALLERY .topOwner .inner .txtArea .imgArea {
    position: relative;
    left: auto;
    top: auto;
    margin: 0 auto 30px;
  }
}
#GALLERY .topOwner .inner .txtArea .name {
  font-weight: bold;
  margin-bottom: 20px;
}
#GALLERY .topOwner .inner .txtArea .name span {
  font-size: 22px;
  line-height: 1.5em;
}
#GALLERY .gallery {
  width: 100%;
}
#GALLERY .gallery .sliderGallery li img {
  width: 100%;
}

#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: #F4F8FA;
}
@media (max-width: 769px) {
  #FAQ .faqList li .faqBox {
    padding: 10px;
  }
}
#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 a,
#FAQ .faqList li .faqBox .aArea a {
  text-decoration: underline;
}
#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;
}
#FAQ .faqList li .asterisk {
  font-size: 13px;
  margin-top: 5px;
  padding-left: 65px;
}
@media (max-width: 769px) {
  #FAQ .faqList li .asterisk {
    padding-left: 50px;
  }
}
#FAQ .faqList li .asterisk li {
  margin-bottom: 0;
}

#BOOKING .beds24Area {
  position: relative;
  height: 0px;
  padding-top: 46%;
  margin-top: 60px;
}
@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 h3 {
  font-size: 28px;
  text-align: center;
  margin-bottom: 30px;
}
#BOOKING .priceList h3 span {
  font-size: 15px;
  display: block;
  font-weight: bold;
}
#BOOKING .priceList p {
  text-align: center;
}
#BOOKING .priceList h5 {
  font-size: 14px;
  margin-top: 10px;
}
#BOOKING .priceList .dotsList h5 {
  font-weight: bold;
  font-size: 18px;
}
#BOOKING .priceList .dotsList li .dot {
  padding-left: 15px;
}
@media (max-width: 769px) {
  #BOOKING .priceList .dotsList li .dot {
    padding-left: 10px;
  }
}

#CONTACT {
  border-bottom: 1px solid #95BDD0;
}
#CONTACT .pageTtlSimple {
  margin-bottom: 40px;
}
#CONTACT h3 {
  font-size: 28px;
  text-align: center;
  margin-bottom: 30px;
}
#CONTACT h3 span {
  font-size: 15px;
  display: block;
  font-weight: bold;
}
#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-weight: bold;
  font-size: 15px;
  width: 180px;
  text-align: right;
  margin-right: 20px;
}
#CONTACT .contactForm dl dt.required:before {
  content: "必須";
  font-size: 12px;
  background-color: #5695B3;
  border-radius: 2px;
  color: #fff;
  padding: 2px 2px 0 2px;
  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;
  width: 260px;
  height: 60px;
  cursor: pointer;
}
#CONTACT .contactForm .sendbtn .form_submit::before {
  content: "";
  background: url(../img/common/btn-blueBorder.svg) no-repeat;
  background-size: contain;
  display: block;
  width: 260px;
  height: 60px;
  position: absolute;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
#CONTACT .contactForm .sendbtn .form_submit input[type=button] {
  background: none;
  font-size: 15px;
  font-weight: 600;
  color: #5695B3;
  padding-top: 18px;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  letter-spacing: 0.08em;
}
#CONTACT .contactForm .sendbtn .form_submit:hover {
  color: #fff;
}
#CONTACT .contactForm .sendbtn .form_submit:hover::before {
  content: "";
  background: url(../img/common/btn-bluefilled.svg) no-repeat;
  background-size: contain;
  display: block;
  width: 260px;
  height: 60px;
  position: absolute;
  z-index: -1;
}
#CONTACT .contactForm .sendbtn .form_submit:hover input[type=button] {
  color: #fff;
}
@media (max-width: 1000px) {
  #CONTACT .contactForm {
    margin-top: 40px;
  }
}

#THANKS {
  border-bottom: 1px solid #95BDD0;
}
#THANKS .thanks a {
  margin-top: 40px;
}