@charset "UTF-8";
html,
body {
  margin: 0px;
  padding: 0px;
  font-family: "ten-mincho", serif;
  background-color: #ffffff;
  color: #232323;
}

section {
  margin: 0px;
  padding: 0px;
}

/* 共通部品 */
@media screen and (max-width: 540px) {
  .pc {
    display: none;
  }
}

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

.sp-inline {
  display: none;
}
@media screen and (max-width: 540px) {
  .sp-inline {
    display: inline;
  }
}

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

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

@media screen and (max-width: 540px) {
  .mobile-right {
    display: block;
    text-align: right;
  }
}

@media screen and (max-width: 540px) {
  .mobile-margin {
    margin-right: 30px;
    margin-left: 30px;
  }
}

/*/共通部品*/
.main-visual {
  position: relative;
  z-index: 1;
  width: 100%;
}
@media screen and (max-width: 540px) {
  .main-visual {
    /*スマホのメインビジュアル気にしながら*/
    background-size: cover;
  }
}
.main-visual .main-visual-img {
  right: 0;
  top: 0;
  min-width: 100%;
  height: auto;
  z-index: -1;
}
.rv-monochrome-logo {
  height: 79px;
  -o-object-fit: contain;
     object-fit: contain;
  padding: 10px 5px;
}
@media screen and (max-width: 540px) {
  .rv-monochrome-logo {
    padding: 5px 5px;
    height: auto;
    display: block;
  }
}

@media screen and (max-width: 540px) {
  .kirara-logo {
    width: 89px;
  }
}

@media screen and (max-width: 540px) {
  .rv-logo {
    width: 60px;
    margin: auto;
    padding: 5px 10px;
  }
}

header nav {
  position: absolute;
  top: 15px;
  left: 10px;
  right: 25px;
  display: flex;
}

header nav ul {
  margin: auto;
  margin-right: 0;
  display: flex;
  list-style: none;
}

header nav li {
  padding-left: 35px;
}
@media screen and (max-width: 950px) {
  header nav li {
    display: none;
  }
}

header nav li a {
  text-decoration: none;
  font-size: 20px;
  text-shadow: #282828;
  color: #fff;
  font-family: "Cormorant Garamond";
}

/*バーガーメニュー*/
.globalMenu .burger-switch {
  position: absolute;
  right: 0;
  top: 0;
  padding-right: 25px;
  padding-top: 15px;
}

.menu-trigger,
.menu-trigger span {
  display: inline-block;
  transition: all 0.4s;
  box-sizing: border-box;
}
@media screen and (min-width: 950px) {
  .menu-trigger,
.menu-trigger span {
    display: none;
  }
}

.menu-trigger {
  position: relative;
  margin-top: 15px;
  width: 31px;
  height: 24.2px;
  background: none;
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  z-index: 151;
}

.menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #ccc;
  border-radius: 4px;
}

.menu-trigger span:nth-of-type(1) {
  top: 0;
}

.menu-trigger span:nth-of-type(2) {
  top: 11px;
}

.menu-trigger span:nth-of-type(3) {
  bottom: 0;
}

.menu-trigger span:nth-of-type(1) {
  -webkit-animation: menu-bar01 0.75s forwards;
          animation: menu-bar01 0.75s forwards;
}

@-webkit-keyframes menu-bar01 {
  0% {
    transform: translateY(11px) rotate(45deg);
  }
  50% {
    transform: translateY(11px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}

@keyframes menu-bar01 {
  0% {
    transform: translateY(11px) rotate(45deg);
  }
  50% {
    transform: translateY(11px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
.menu-trigger span:nth-of-type(2) {
  transition: all 0.25s 0.25s;
  opacity: 1;
}

.menu-trigger span:nth-of-type(3) {
  -webkit-animation: menu-bar02 0.75s forwards;
          animation: menu-bar02 0.75s forwards;
}

@-webkit-keyframes menu-bar02 {
  0% {
    transform: translateY(-11px) rotate(-45deg);
  }
  50% {
    transform: translateY(-11px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}

@keyframes menu-bar02 {
  0% {
    transform: translateY(-11px) rotate(-45deg);
  }
  50% {
    transform: translateY(-11px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
.menu-trigger.active {
  width: 30px;
}

.menu-trigger.active span:nth-of-type(1) {
  -webkit-animation: active-menu-bar01 0.75s forwards;
          animation: active-menu-bar01 0.75s forwards;
}

@-webkit-keyframes active-menu-bar01 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(11px) rotate(0);
  }
  100% {
    transform: translateY(11px) rotate(45deg);
  }
}

@keyframes active-menu-bar01 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(11px) rotate(0);
  }
  100% {
    transform: translateY(11px) rotate(45deg);
  }
}
.menu-trigger.active span:nth-of-type(2) {
  opacity: 0;
}

.menu-trigger.active span:nth-of-type(3) {
  -webkit-animation: active-menu-bar03 0.75s forwards;
          animation: active-menu-bar03 0.75s forwards;
}

@-webkit-keyframes active-menu-bar03 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-11px) rotate(0);
  }
  100% {
    transform: translateY(-11px) rotate(-45deg);
  }
}

@keyframes active-menu-bar03 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-11px) rotate(0);
  }
  100% {
    transform: translateY(-11px) rotate(-45deg);
  }
}
nav.globalMenu {
  background-color: #fff;
  z-index: 150;
  position: fixed;
  height: 100%;
  width: 100%;
  top: 0;
}

nav.globalMenu {
  position: fixed;
  transform: translateY(100%);
  transition: all 0.4s;
  padding: 23px 36px 0 36px;
  right: 0;
}
@media screen and (max-width: 540px) {
  nav.globalMenu {
    padding: 45px 18px 0 18px;
    width: 100%;
  }
}
nav.globalMenu ul {
  padding: 0;
  width: 100%;
  list-style-type: none;
}
nav.globalMenu ul li {
  margin-top: 30px;
  list-style-type: none;
  padding: 0;
  width: 100%;
  color: #232323;
}
nav.globalMenu ul li a {
  text-decoration: none;
}
nav.globalMenu .batsu-btn {
  padding: 7px 0 40px 40px;
  position: absolute;
  top: 0;
  right: 0;
  background-color: #282828;
}

nav.globalMenu.active {
  transform: translateX(0%);
}

/*バーガーメニュー閉じ*/
.intro-rv-logo {
  height: 69px;
  margin-top: 115px;
  margin-bottom: 75px;
}
@media screen and (max-width: 540px) {
  .intro-rv-logo {
    margin-top: 75px;
    margin-bottom: 40px;
    height: 45px;
  }
}

.intro-text {
  font-size: 15px;
  line-height: 3.53;
  max-width: 850px;
  margin-right: 30px;
  margin-left: 30px;
}
@media screen and (min-width: 840px) {
  .intro-text {
    margin: auto;
  }
}

.carousel-container {
  margin-top: 115px;
}
@media screen and (max-width: 540px) {
  .carousel-container {
    margin-top: 75px;
  }
}

.carousel-image {
  width: 256px;
  height: 256px;
}
@media screen and (max-width: 540px) {
  .carousel-image {
    width: 175px;
    height: 175px;
  }
}

.description-container {
  max-width: 1080px;
  height: 746px;
  margin: auto;
  margin-top: 115px;
  position: relative;
}
@media screen and (max-width: 991px) {
  .description-container {
    position: static;
    display: block;
    height: auto;
    margin-top: 75px;
  }
}

.description-head {
  display: flex;
}
@media screen and (max-width: 991px) {
  .description-head {
    display: block;
  }
}

.description-image {
  margin-right: 0;
  max-width: 600px;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 991px) {
  .description-image {
    width: 100%;
    height: auto;
  }
}

.description-title-container {
  display: inline-block;
  width: 100vw;
  margin-top: 20px;
  margin-right: 32px;
  margin-left: 32px;
}
@media screen and (max-width: 991px) {
  .description-title-container {
    display: block;
    width: auto;
    max-width: 540px;
  }
}

.description-title {
  width: 50%;
  font-family: "Cormorant Garamond";
  font-size: 49px;
  vertical-align: top;
}
.rv-color-logo {
  width: 104.4px;
  height: 62px;
  -o-object-fit: contain;
     object-fit: contain;
  float: right;
}
@media screen and (max-width: 991px) {
  .rv-color-logo {
    width: 101px;
    height: 59px;
    top: 20px;
    flex: 1;
  }
}

.description-details {
  max-width: 630px;
  min-height: 494px;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 10;
  background-color: #fff;
}
@media screen and (max-width: 991px) {
  .description-details {
    position: static;
    z-index: inherit;
  }
}

dl {
  display: flex;
  flex-wrap: wrap;
  padding-top: 40px;
  padding-bottom: 22px;
  padding-left: 30px;
  padding-right: 30px;
  font-size: 14px;
}

dt {
  width: 30%;
  height: 20px;
  padding-right: 22px;
  border-right: solid 4px #3c3c3c;
  margin-bottom: 28px;
}
@media screen and (max-width: 540px) {
  dt {
    padding-right: 15px;
  }
}

dd {
  width: 70%;
  padding-left: 30px;
}
@media screen and (max-width: 540px) {
  dd {
    padding-left: 15px;
  }
}

@media screen and (max-width: 540px) {
  .description-details dt {
    width: 45%;
  }
  .description-details dd {
    width: 55%;
  }
}

.reserveBtn {
  padding: 11px 20px;
  background-color: #282828;
  color: #fff;
  font-size: 12px;
  font-family: YuGo;
  font-weight: 500;
  text-decoration: none;
}
.reserveBtn :active {
  transform: translateY(3px);
}

/*アクティビティ*/
.activities-container {
  margin-top: 115px;
  margin-bottom: 115px;
}
@media screen and (max-width: 540px) {
  .activities-container {
    margin-top: 75px;
    margin-bottom: 75px;
  }
}

.activities-title {
  font-family: "Cormorant Garamond";
  font-size: 40px;
  margin-bottom: 75px;
}
@media screen and (max-width: 540px) {
  .activities-title {
    margin-bottom: 40px;
  }
}

.activities-head {
  position: relative;
  max-width: 1080px;
  height: 513px;
  margin: auto;
}
@media screen and (max-width: 540px) {
  .activities-head {
    position: static;
    height: auto;
  }
}

.activities-main-image {
  width: 100%;
  max-width: 960px;
  height: 513px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 540px) {
  .activities-main-image {
    height: auto;
  }
}

.activities-description {
  max-width: 283px;
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  z-index: 10;
  background-color: #fff;
}
@media screen and (max-width: 540px) {
  .activities-description {
    position: static;
    max-width: 100%;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    transform: inherit;
  }
}

.activities-description-title {
  font-family: "Cormorant Garamond";
  font-size: 35px;
  padding: 30px 30px 0;
}

.activities-description-content {
  font-size: 14px;
  padding: 30px;
  line-height: 1.71;
  background-color: #fff;
}

.activities-grid-images-container {
  max-width: 960px;
  margin: auto;
  margin-top: 75px;
  display: grid;
  grid-template-rows: 217px 217px;
  grid-template-columns: 263px 283px 263px;
  grid-row-gap: 15px;
  grid-column-gap: 15px;
}
@media screen and (max-width: 840px) {
  .activities-grid-images-container {
    display: block;
    margin-top: 40px;
  }
}

.grid-child-1 {
  grid-column-start: 1;
  grid-column-end: 2;
  grid-row-start: 1;
  grid-row-end: 3;
  width: 263px;
  height: 449px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 840px) {
  .grid-child-1 {
    margin-bottom: 10px;
    width: 100%;
    height: auto;
    padding-right: 30px;
  }
}

.grid-child-2 {
  grid-column-start: 2;
  grid-column-end: 3;
  grid-row-start: 1;
  grid-row-end: 2;
  width: 284px;
  height: 217px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 840px) {
  .grid-child-2 {
    display: block;
    margin-bottom: 15px;
    width: 100%;
    height: auto;
    padding-right: 30px;
    padding-left: 30px;
  }
}

.grid-child-3 {
  grid-column-start: 2;
  grid-column-end: 3;
  grid-row-start: 2;
  grid-row-end: 3;
  width: 284px;
  height: 217px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 840px) {
  .grid-child-3 {
    display: block;
    margin-bottom: 15px;
    width: 100%;
    height: auto;
    padding-right: 30px;
    padding-left: 30px;
  }
}

.grid-child-4 {
  grid-column-start: 3;
  grid-column-end: 4;
  grid-row-start: 1;
  grid-row-end: 3;
  width: 263px;
  height: 449px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 840px) {
  .grid-child-4 {
    width: 100%;
    height: auto;
    padding-left: 30px;
  }
}

@media screen and (max-width: 840px) {
  .grid-block-1 {
    text-align: left;
  }
}

@media screen and (max-width: 540px) {
  .grid-block-4 {
    text-align: right;
  }
}

.quote {
  max-width: 960px;
  margin: auto;
  margin-top: 10px;
  text-align: right;
  padding-right: 122px;
  font-size: 12px;
}
@media screen and (max-width: 840px) {
  .quote {
    padding-right: 0;
  }
}
@media screen and (max-width: 540px) {
  .quote {
    margin-right: 10px;
  }
}

.caution-container {
  max-width: 1080px;
  margin: auto;
  margin-top: 115px;
  margin-bottom: 115px;
  padding: 40px 30px;
  background-color: #f4f4f4;
}
@media screen and (max-width: 540px) {
  .caution-container {
    margin-top: 75px;
    margin-bottom: 75px;
  }
}

.caution-title {
  font-size: 18px;
}

.caution-content {
  margin: 40px 0 0;
  font-size: 14px;
  line-height: 2.29;
  list-style: none;
}

.googlemaps iframe,
.googlemaps object,
.googlemaps embed {
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
  transition: all 0.7s ease;
}

.googlemaps iframe:hover,
.googlemaps object:hover,
.googlemaps embed:hover {
  -moz-filter: grayscale(0%);
  -ms-filter: grayscale(0%);
  -o-filter: grayscale(0%);
  filter: grayscale(0%);
}

.info-container {
  padding: 40px 130px;
  background-color: #282828;
  color: #fff;
}
@media screen and (max-width: 540px) {
  .info-container {
    padding: 40px 0;
  }
}

.info-title {
  font-size: 40px;
  text-align: center;
  font-family: "Cormorant Garamond";
}

.info-content {
  font-size: 14px;
  max-width: 1060px;
  margin: auto;
}
.info-content dt {
  height: 20px;
  border-right: solid 4px #fff;
  margin-bottom: 15px;
  width: 15%;
}
@media screen and (max-width: 540px) {
  .info-content dt {
    width: 20%;
  }
}
.info-content dd {
  width: 85%;
}
@media screen and (max-width: 540px) {
  .info-content dd {
    width: 80%;
  }
}
@media screen and (max-width: 540px) {
  .info-content {
    padding-right: 30px;
    padding-left: 30px;
  }
}

.inquiry-container {
  max-width: 312px;
  margin: 115px auto 135px;
}

.inquiry-tel {
  margin-bottom: 60px;
}
@media screen and (max-width: 540px) {
  .inquiry-tel {
    margin-bottom: 40px;
  }
}

.inquiry-tel-image {
  width: 15px;
  height: 28px;
  margin-right: 15px;
}

.inquiry-tel-content {
  font-size: 28px;
  text-align: center;
  vertical-align: bottom;
  text-decoration: none;
  color: #232323;
}

.inquiry-reserve-btn {
  background-color: #282828;
  color: #fff;
  font-size: 20px;
  padding: 20px 103px;
  text-decoration: none;
  font-family: "Cormorant Garamond";
}
.inquiry-reserve-btn :active {
  transform: translateY(3px);
}

footer {
  padding-top: 39px;
  padding-bottom: 10px;
  background-color: #282828;
  color: #fff;
  text-align: center;
}
footer img {
  height: 69px;
  padding: 10px 5px;
  background-color: #fff;
  border-radius: 5px;
}
footer nav {
  display: flex;
}
footer nav ul {
  margin: auto;
  margin-top: 40px;
  display: flex;
  list-style: none;
}
@media screen and (max-width: 540px) {
  footer nav ul {
    display: block;
  }
}
footer nav ul li {
  padding-left: 35px;
}
@media screen and (max-width: 540px) {
  footer nav ul li {
    padding-left: 0;
    margin-bottom: 30px;
  }
}
footer nav ul li a {
  text-decoration: none;
  font-size: 20px;
  font-family: "Cormorant Garamond";
  color: #fff;
}
footer .footer-line {
  height: 1px;
  margin: 40px 10% 10px;
  border: solid 1px #ffffff;
}
@media screen and (max-width: 540px) {
  footer .footer-line {
    margin-top: 10px;
  }
}
footer .customer ul {
  margin: auto;
  margin-top: 40px;
  list-style: none;
}
footer .customer ul li {
  padding-left: 35px;
}
@media screen and (max-width: 540px) {
  footer .customer ul li {
    padding-left: 0;
    margin-bottom: 30px;
  }
}
footer .customer ul li a {
  text-decoration: none;
  font-size: 15px;
  color: #fff;
}
footer .copyright {
  font-size: 11px;
  margin-bottom: 10px;
}

.zekkei-text-only {
  font-family: "ten-mincho";
}

.arrow06 {
  position: relative;
  padding-left: 22px;
}

.arrow06::before {
  position: fixed;
  right: 0;
  bottom: 0;
  margin-right: 100px;
  width: 60px;
  height: 60px;
  background-color: #282828;
  z-index: 130;
  border-radius: 1px;
  content: "";
  background: #282828;
  margin-top: -7px;
}
@media screen and (max-width: 540px) {
  .arrow06::before {
    width: 45px;
    height: 45px;
    margin-right: 0;
  }
}

.arrow06::after {
  position: fixed;
  content: "";
  width: 16px;
  height: 16px;
  border-top: solid 1px #fff;
  border-left: solid 1px #fff;
  transform: rotate(45deg);
  bottom: 0;
  right: 0;
  margin-right: 122px;
  margin-bottom: 20px;
  z-index: 131;
}
@media screen and (max-width: 540px) {
  .arrow06::after {
    margin-right: 16px;
    margin-bottom: 12px;
    width: 12px;
    height: 12px;
  }
}

@media screen and (max-width: 540px) {
  .longText-margin-s {
    margin-top: 10px;
  }
}

.longText-margin-m {
  margin-top: 10px;
}

.longText-margin-l {
  margin-top: 20px;
}

.guideMap-container {
  max-width: 1080px;
  margin: auto;
  margin-top: 95px;
  margin-bottom: 115px;
}
@media screen and (max-width: 540px) {
  .guideMap-container {
    max-width: 375px;
    margin-top: 55px;
    margin-bottom: 75px;
  }
}

.grassArea {
  border: 0;
  text-align: center;
}

@media screen and (min-width: 991px) {
  #rate, #rate-750, #rate-900 {
    height: 624px;
  }
}
@media screen and (min-width: 541px) {
  #rate .description-details, #rate-750 .description-details, #rate-900 .description-details {
    bottom: 0px;
    min-height: 376px;
  }
}

@media screen and (max-width: 991px) {
  .rate-margin-t-0 {
    margin-top: 0% !important;
  }
}

.reserveBtn-container {
  padding-top: 15px;
}

.placeholder {
  height: 100px; /* 絶対位置指定の要素と同じ高さ */
  visibility: hidden; /* 見えないようにする */
}/*# sourceMappingURL=style.css.map */