@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Lilita+One&display=swap');
@import url(https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap);

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

:root {
  --color1: #48362d;
  --color2: #227446;
  --color3: #ede5d9;
  --color4: #604c3f;
  --color_red: #ae402e;
  --color5: #f5f3f1;
  --color6: #f3efe8;

  --media-width: 820;
  --media-sp-width: 480;
}

html {
  height: 100%;
  font-size: 62.5%;
  overflow-x: hidden;
  background: #fff
}

body {
  width: 100%;
  min-width: 1200px;
  min-height: 100%;
  margin: 0;
  padding: 0;
  background: #fff;
  font-size: 1.4rem;
  /**/
  font-family: "Noto Serif JP", serif;
  color: var(--color1);
  font-weight: 600;
  line-height: 1.8;
  position: relative
}

.pc {
  display: block
}

.pc_only {
  display: block
}

.sp {
  display: none
}

.blur {
  position: relative;
  -webkit-mask-image: radial-gradient(#fff 60%, rgba(255, 255, 255, 0) 100%);
  mask-image: radial-gradient(#fff 60%, rgba(255, 255, 255, 0) 100%)
}

.alpha {
  opacity: 0.2;
}

hr {
  height: 0;
  margin: 80px 0;
  border: 0;
  padding: 0;
  overflow: visible;
  border: 1px dashed #604c3f;
}

@media (max-width:820px) {
  body {
    min-width: 0;
    overflow-x: hidden
  }

  .pc_only {
    display: none
  }
}

@media (max-width:480px) {
  body {
    overflow-x: hidden;
    font-size: 1.5rem;
  }

  .pc {
    display: none
  }

  .sp {
    display: block
  }

  hr {
    margin: 60px 0;
  }
}

img {
  -ms-interpolation-mode: bicubic;
  vertical-align: bottom;
  border: none;
  max-width: 100%
}

a {
  outline: 0
}

a:focus {
  outline: 0
}

.a_tel {
  color: inherit;
  text-decoration: none
}

.anchor {
  color: #ae402e;
  text-decoration: underline;
}

.ac {
  text-align: center;
}

.marker {
  background: #f9f3ab
}

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

.spb {
  justify-content: space-between;
}

.reverse {
  flex-direction: row-reverse;
}

.red {
  color: var(--color_red)
}

.bb {
  font-weight: 700
}

.bigger {
  font-size: 1.2em
}

.aling_center {
  align-items: center
}

.postscript {
  font-size: 80%;
  margin: 5px 0 0 0;
}

.ma-5 {
  margin: 0 -5px;
}

.ma-15_sp {
  margin: 0 20px;
}

.clearfix:after {
  content: " ";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden
}

.ellipsis {
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis
}

.indent {
  text-indent: -1em;
  padding: 0 0 0 1em
}

#load {
  width: 100%;
  height: 100%;
  z-index: 999;
  position: fixed;
  top: 0;
  left: 0;
  background: var(--color2)
}

#loading {
  width: 200px;
  position: relative;
  text-align: center;
  color: #fff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%)
}

#loading .loading1 {
  margin: 0 0 10px 0
}

#loading .loading2 {
  animation: loading_act 2s infinite linear;
  font-size: 1rem
}

@keyframes loading_act {
  0% {
    opacity: 1
  }

  50% {
    opacity: .4
  }

  100% {
    opacity: 1
  }
}

#container {
  width: 120px;
  margin: 0 auto
}

.header {
  width: 100%;
  height: 55px;
  margin: 0;
  padding: 25px 50px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99
}

.header h1 {
  width: 240px
}

.header.active {
  position: fixed
}

.hamburger {
  display: block;
  position: fixed;
  right: 50px;
  top: 30px;
  width: 60px;
  padding: 0;
  color: #fff;
  cursor: pointer;
  opacity: 1;
  z-index: 100
}

.is-active {
  color: var(--color2)
}

.hamburger p {
  font-size: 1.2rem;
  margin: 0 0 5px 0
}

.hamburger div {
  width: 60px;
  height: 30px;
  position: relative;
  display: block
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  position: absolute;
  -webkit-transition: .3s ease-in-out;
  -moz-transition: .3s ease-in-out;
  transition: .3s ease-in-out
}

.is-active span {
  background: var(--color2)
}

.hamburger span:nth-child(1) {
  top: 0
}

.hamburger span:nth-child(2) {
  top: 12px
}

.hamburger span:nth-child(3) {
  top: 24px
}

.hamburger.active {
  color: #fff
}

.hamburger.active span:nth-child(1) {
  top: 15px;
  background: #fff;
  -webkit-transform: rotate(30deg);
  -moz-transform: rotate(30deg);
  transform: rotate(30deg)
}

.hamburger.active span:nth-child(2) {
  width: 0;
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  top: 15px;
  background: #fff;
  -webkit-transform: rotate(-390deg);
  -moz-transform: rotate(-390deg);
  transform: rotate(-390deg)
}

.modal {
  width: 100%;
  min-width: 1200px;
  min-height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  z-index: 50
}

.modal_bg {
  background: rgba(34, 116, 70, 1);
  height: 100vh;
  position: absolute;
  width: 100%
}

.modal_contents {
  padding: 100px 0 0 0;
  position: relative;
  z-index: 1;
  overflow: scroll-y;
}

.modal_contents .left {
  width: 50%;
  padding: 5%;
  float: left
}

.modal_contents .right {
  width: 50%;
  padding: 5%;
  text-align: center;
  float: right;
  position: relative;
  opacity: .8
}

.modal_contents .left .item {
  flex-basis: calc(100% / 1);
  padding: 0;
}

.modal_contents .left .item .nav {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}

.modal_contents .left .item .nav li {
  flex-basis: calc((100% - 60px) / 3);
  margin: 10px 20px 0 0;
  padding: 0 0 0 0;
  border-bottom: 1px solid var(--color3)
}

.modal_contents .left .item .nav li a {
  padding: 10px 0;
  color: var(--color3);
  text-decoration: none;
  display: block;
  transition: .2s;

}

.modal_contents .left .item .nav li a:hover {
  margin: 0 0 0 5px;
  color: #ffc37b;
}

.modal_contents .left .nav_info {
  padding: 40px 0 0 0
}

.modal_contents .left .address {
  color: var(--color3);
  float: left;
}

.modal_contents .left .tel {
  font-size: 3rem;
  margin: 0 0 20px 0
}

.modal_contents .left .tel span {
  font-size: 1.4rem;
  margin: 0 4px 0 0
}

.modal_contents .left .common_pic {
  float: right
}

.modal_contents .left .sns {
  margin: 20px 0 0 0
}

.modal_contents .left .sns a {
  margin: 0 10px 0 0
}

.earth_btn {
  margin: 40px 20px 0 0;
}

.earth_btn a {
  padding: 10px;
  color: var(--color2);
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  background: #fff;
  transition: .2s;
  border-radius: 4px 4px 0 0;
  display: block;

}

.oth_btn {
  margin: 5px 20px 0 0;
}

.oth_btn a {
  padding: 10px;
  color: var(--color2);
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  background: #fff;
  transition: .2s;
  display: block;

}

.oth_btn a.last {
  border-radius: 0 0 4px 4px;
}

.oth_btn a:hover,
.earth_btn a:hover {
  background: #ffc37b;
}

.nav_scroll {
  height: 95vh;
  overflow-y: scroll
}

@media (max-width:820px) {
  .header {
    padding: 25px 20px
  }

  .header h1 {
    width: 220px
  }

  .hamburger {
    right: 20px;
    top: 30px
  }

  .modal {
    min-width: 0
  }

  .modal_contents .left {
    width: 100%;
    padding: 5%;
    float: none
  }

  .modal_contents .right {
    display: none
  }
}

@media (max-width:480px) {
  .ma-15_sp {
    margin: 0 -15px;
  }

  .header {
    padding: 20px 10px;
  }

  .header h1 {
    width: 180px
  }

  .hamburger {
    right: 10px;
    top: 26px;
  }

  .nav_scroll {
    height: 95vh;
    overflow-y: scroll
  }

  .modal_contents .left {
    padding: 0 10px;
  }

  .modal_contents .left .item {
    flex-basis: calc(100% / 1);
    padding: 0
  }

  .modal_contents .left .item .nav li {
    flex-basis: calc((100% - 40px)/ 2);
    padding: 0;
    margin: 10px 10px 0 10px
  }

  .modal_contents .left .nav_info {
    padding: 40px 10px 0 10px
  }

  .modal_contents .left .address {
    width: 100%
  }

  .modal_contents .left .common_pic {
    width: 30%
  }

  .modal_contents .left .tel {
    font-size: 2.6rem;
    margin: 0 0 10px 0
  }

  .modal_contents .left .sns a img {
    width: 40px
  }

  .earth_btn {
    margin: 40px 10px 0 10px;
  }

  .oth_btn {
    margin: 5px 10px 0 10px;
  }
}

.footer {
  width: 100%;
}

#camp .footer,
#glamping .footer,
#rv .footer,
#rental .footer,
#qa .footer,
#guide .footer,
#access .footer,
#news .footer {
  background: url("../common/f_bg.jpg") center top repeat-x;
}

.footer .inner {
  width: 1000px;
  margin: 0 auto;
  padding: 100px 40px 60px 40px;
  /*border-top: 15px solid #ede5d9;
  border-top: 0 -2px 0 0 #412210;*/
  background: url("../common/f_bg.jpg") center top no-repeat;
  position: relative;
  /*box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);*/
}

.footer .inner .info {
  width: 50%;
  padding: 0 20px 0 0;
  color: #fff;
}

.footer .inner .links {
  width: 50%;
  padding: 0 0 0 20px;
}

.footer .inner .info .box {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  text-align: center;
  position: relative;
}

.footer .inner .info .box h4 {
  width: 280px;
  padding: 0 40px;
  background-image: linear-gradient(90deg, transparent 5%, #1a6a35 5% 95%, transparent 95%);
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
}

.footer .inner .info .box .ad {
  margin: 14px 0 0 0;
}

.footer .inner .info .box .tel {
  font-size: 3rem;
}

.footer .inner .info .box .tel span {
  font-size: 1.6rem;
}

.footer .inner .info .box .sns_f {
  margin: 14px 0 0 0;
}

.footer .inner .info .box .sns_f a {
  margin: 0 4px;
}

.footer .inner .info .box .sns_f a img {
  width: 30px;
}

.footer .inner .links .emp_btn {
  width: 100%;
  margin: 0 0 15px 0;
  padding: 18px 40px;
  text-align: center;
  text-decoration: none;

  color: #227446;
  background: #fff url("../common/icon3.png") right 20px center no-repeat;
  background-size: 8px;
  display: inline-block;
  transition: 0.3s;
}

.footer .inner .links .emp_btn:hover {
  background: #f36100 url("../common/icon3.png") right 10px center no-repeat;
  background-size: 12px;
  color: #fff;
}

.footer .inner .links .hanasaki {
  width: 50%;
  padding: 0 5px 0 0;
}

.footer .inner .links .hanasaki a {
  height: 160px;
  padding: 30px;
  display: block;
  color: #fff;
  text-align: center;
  text-decoration: none;
  background: #412210;
  position: relative;
}

.footer .inner .links .hanasaki a img {
  width: 100px;
  margin-bottom: 5px;
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
}

.footer .inner .links .hanasaki a p {
  width: 100%;
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%) rotateZ(0.03deg);
}

.footer .inner .links .mghs {
  width: 50%;
  padding: 0 0 0 5px;
}

.footer .inner .links .mghs a {
  height: 160px;
  padding: 30px;
  display: block;
  color: #fff;
  text-align: center;
  text-decoration: none;
  background: #c9a063;
  position: relative;
}

.footer .inner .links .mghs a img {
  width: 105px;
  margin-bottom: 5px;
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
}

.footer .inner .links .mghs a p {
  width: 100%;
  line-height: 1.2;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) rotateZ(0.03deg);
}

.f_comment {
  margin-top: 60px;
  text-align: center;
  color: #fff;
}

.copyrights {
  padding: 10px 0;
  text-align: center;
  width: 100%;
  background: #2d1f1b;
  color: #fff;
  font-size: 1.2rem;
  position: relative;
}

@media (max-width:820px) {
  .footer .inner {
    width: 100%;
    padding: 80px 40px;
  }
}

@media (max-width:480px) {
  .footer .inner {
    width: 100%;
    padding: 110px 25px 80px 25px;
  }

  .footer .inner .info {
    width: 100%;
    padding: 0 0 0 0;
  }

  .footer .inner .links {
    width: 100%;
    padding: 30px 0 0 0;
  }

  .footer .inner .links .emp_btn {
    margin: 0 0 30px 0;
  }

  .f_comment {
    margin-top: 40px;
    text-align: left;
    color: #fff;
  }
}

.main {
  width: 100%;
  min-width: 1200px;
  height: 100vh;
  min-height: 780px;
  position: relative;
  overflow: hidden
}

video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  min-width: 100vw;
  z-index: -1;
  height: auto;
  transform: translate(-50%, -50%)
}

.main picture {
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  min-width: 100%;
  height: auto;
  transform: translate(-50%, -50%);
}

.main picture img {
  min-width: 100%;
}

.main .inner {
  width: 581px;
  height: 584px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%)
}

.main .copy1 {
  width: 581px;
}

body.sub .main {
  height: 75vh;
  min-height: 600px
}

body.sub .main .main_pic {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: auto;
  transform: translate(-50%, -50%)
}

body.sub .main .main_copy {
  width: 500px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%)
}

@media (max-width:820px) {
  .main {
    height: 75vh;
    min-width: 0;
    min-height: 0
  }

  .main picture {
    width: auto;
    min-width: 100%;
    min-height: 100%;
  }

  .main .inner {
    width: 100%;
    height: auto;
    /* position: relative; video 採用時は 削除
    top:0;/* video 採用時は 削除
    transform: translate(-50%, 0);/* video 採用時は 削除*/
  }

  video {
    max-width: 300%
  }

  .main .copy1 {
    width: 50%;
    margin: 0 auto 0 auto;
  }

  body.sub .main {
    height: auto;
    min-width: auto;
    min-height: 0
  }

  body.sub .main .main_pic {
    position: static;
    transform: translateX(0)
  }

  body.sub .main .main_copy {
    width: 60%;
    max-width: none
  }
}

@media (max-width:480px) {
  .main .copy1 {
    width: 80%;
    margin: 0 auto 0 auto;
  }

  body.sub .main .main_pic {
    min-width: 200vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%)
  }

  body.sub .main .main_copy {
    width: 70%
  }
}

.news {
  width: 100%;
  padding: 80px 40px;
  background: #fff;
  position: relative;
  z-index: 1;
}

.news .inner {
  width: 1000px;
  margin: 0 auto;
}

.news h2 {
  margin-bottom: 40px;
  font-family: "Lilita One", sans-serif;
  font-size: 6rem;
  line-height: 1.2;
  position: relative;
}

.news h2 span {
  font-family: "Noto Serif JP", serif;
  display: block;
  font-size: 1.3rem;

}

.news h2:after {
  width: 450px;
  height: 84px;
  content: url("../img/news_bg.png");
  position: absolute;
  top: -10px;
  left: calc(45% - 225px);
}

.news .thumb {
  margin: 0 10px
}

.slick-initialized {
  opacity: 1
}

.slick-slider div {
  transition: none
}

.news figure,
.news_list figure {
  width: 100%;
  position: relative;
  overflow: hidden
}

.news figure img,
.news_list figure img {
  width: 100%;
  object-fit: cover
}

.news a {
  width: 100%;
  color: #fff;
  text-decoration: none;
  transition: .2s
}

.news .news_date,
.news_list .news_date {
  padding: 15px 0 10px 0;
  color: #c9a063;
  font-size: 1.2rem;
  line-height: 1;
}

.news h3,
.news_list h3 {
  font-size: 1.4rem;
  line-height: 1.4;
  font-weight: 600;
  color: #412210;
  position: relative;

}

.news a img,
.news_list a img {
  transition: .2s
}

.news a:hover img,
.news_list a:hover img {
  opacity: .8
}

.news a:hover h3,
.news_list a:hover h3 {
  color: #f36100
}

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

.news_list li {
  width: calc(100% / 4);
  list-style: none;
}

.news_list li a {
  padding: 0 10px 40px 10px;
  display: block;
  text-decoration: none;
}

.news_left {
  width: 70%;
}

.news_right {
  width: 22%;
  padding: 40px 0 0 0;
}

.news_left.article h4 {
  margin: 20px 0 30px 0;
  padding: 0 0 25px 0;
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: -.05em;
  line-height: 1.5;
  border-bottom: 1px solid var(--color4)
}

.news_right .btn {
  margin-top: 12px;
  display: block
}

.news_left.article span.event {
  width: 85px;
  height: 20px;
  margin: 0 0 0 10px;
  padding: 0;
  color: #fff;
  background: var(--color4);
  line-height: 16px;
  font-size: 1.2rem;
  text-align: center;
  display: inline-block
}

.news_left.article span.info {
  width: 85px;
  height: 20px;
  margin: 0 0 0 10px;
  padding: 0;
  color: #fff;
  line-height: 16px;
  font-size: 1.2rem;
  text-align: center;
  display: inline-block;
  background: var(--color_red)
}

img+.news_cts {
  margin: 30px 0
}

.news_cts p+p {
  margin: 10px 0 0 0
}

.news_cts .indent+.indent {
  margin: 0
}

.news_cts .pop {
  width: 200px;
  margin: 0 0 40px 40px;
  float: right
}

@media (max-width:820px) {
  .news .inner {
    width: 100%;
  }

  .news h2:after {
    left: calc(64% - 225px);
  }

  .news_list li {
    width: calc(100% / 3);
  }

  .news_left {
    width: 100%;
  }

  .news_right {
    width: 100%;
    margin-top: 60px;
  }
}

@media (max-width:480px) {

  .news h2 {
    margin-bottom: 30px;
    font-size: 5.6rem;
    line-height: 1.2;
  }

  .news h2:after {
    width: 225px;
    height: 42px;
    top: -10px;
    left: 50%;
  }

  .news .thumb {
    margin: 0 8px
  }

  .news h3 {
    font-size: 1.5rem;
  }

  .news_list {
    margin: 0 -10px;
  }

  .news_list li {
    width: calc(100% / 2);
  }

  .news_list li a {
    padding: 0 7px 30px 7px;
  }

  .news_cts .pop {
    width: 100%;
    margin: 0 0 20px 0;
    float: none;
  }
}


.bg1 {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background: url("../img/bg_day.webp") center top no-repeat;
  background-size: cover;
}

.bg2 {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background: url("../img/bg_sunset.webp") center top no-repeat;
  background-size: cover;
}

.cloud {
  width: 3960px;
  position: absolute;
  left: -1980px;
  top: -200px;
  animation: cloud_act 30s linear infinite;
}

@keyframes cloud_act {
  0% {
    left: -1980px;
  }

  100% {
    left: 0;
  }
}

.bg3 {
  width: 100vw;
  height: 100vh;
  /*min-width:1980px;
  min-height: 1280px;*/
  position: fixed;
  top: 0;
  left: 0;
  background: url("../img/bg_night.webp") center top no-repeat;
  background-size: cover;
}

.star1 {
  position: absolute;
  top: 40px;
  left: 80px;
  opacity: 0;
  animation: star1_act 3s infinite;
}

@keyframes star1_act {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.star2 {
  position: absolute;
  top: 0px;
  left: 30px;
  opacity: 0;
  animation: star2_act 2.5s infinite;
}

@keyframes star2_act {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.star3 {
  position: absolute;
  top: 30px;
  left: 160px;
  opacity: 0;
  animation: star3_act 4.0s infinite;
}

@keyframes star3_act {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.star4 {
  position: absolute;
  top: 40px;
  left: 80px;
  opacity: 0;
  animation: star4_act 1.5s infinite;
}

@keyframes star4_act {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.tobainuma {
  width: 100%;
}

.tobainuma .inner {
  width: 1000px;
  margin: 0 auto;
  padding: 80px 50px 80px 20px;
  background-image: url("../common/bg4.webp");
  background-repeat: repeat-y;
  background-position: center top;

  position: relative;
}

.tobainuma .inner .title {
  width: 45%;
}

.tobainuma .inner .article {
  width: 55%;
  padding-top: 20px;
}

.tobainuma .inner figure {
  width: 742px;
  height: 439px;
  margin: 60px auto 0 auto;
  padding: 0 0 0 30px;
  position: relative;
}

.tobainuma .map {
  width: 900px;
  height: 540px;
  margin: 100px auto 0 auto;
  position: relative;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.tobainuma .map .base {
  width: 900px;
  position: absolute;
  top: 8px;
  left: 0;
  opacity: 0.9;
}

.tobainuma .map .map_btn1 {
  width: 419px;
  height: 171px;
  display: block;
  position: absolute;
  top: 1px;
  left: 91px;
  background-image: url("../img/map_btn1.png"), url("../img/map_btn1_on.png");
  background-repeat: no-repeat, no-repeat;
  background-size: 419px 171px, 0 0;
}

.tobainuma .map .map_btn1:hover {
  background-size: 0 0, 419px 171px;
}

.tobainuma .map .map_btn2 {
  width: 186px;
  height: 196px;
  display: block;
  position: absolute;
  top: 1px;
  left: 658px;
  background-image: url("../img/map_btn2.png"), url("../img/map_btn2_on.png");
  background-repeat: no-repeat, no-repeat;
  background-size: 186px 196px, 0 0;
}

.tobainuma .map .map_btn2:hover {
  background-size: 0 0, 186px 196px;
}

.tobainuma .map .map_btn3 {
  width: 499px;
  height: 241px;
  display: block;
  position: absolute;
  top: 160px;
  left: 96px;
  background-image: url("../img/map_btn3.png"), url("../img/map_btn3_on.png");
  background-repeat: no-repeat, no-repeat;
  background-size: 499px 241px, 0 0;
}

.tobainuma .map .map_btn3:hover {
  background-size: 0 0, 499px 241px;
}



@media (max-width:820px) {
  .tobainuma .inner {
    width: 100%;
  }

  .tobainuma .inner figure {
    width: 100%;
    height: auto;
    margin: 60px auto 0 auto;
    position: relative;
  }

  .tobainuma .map {
    width: calc(900/var(--media-width) * 100vw);
    max-height: calc(540/var(--media-width) * 100vw);
    margin: 60px auto 0 auto;
  }

  .tobainuma .map .base {
    width: calc(900/var(--media-width) * 100vw);
    top: calc(8/var(--media-width) * 100vw);
  }

  .tobainuma .map .map_btn1 {
    width: calc(419/var(--media-width) * 100vw);
    height: calc(171/var(--media-width) * 100vw);
    top: calc(1/var(--media-width) * 100vw);
    left: calc(91/var(--media-width) * 100vw);
    background-size: calc(419/var(--media-width) * 100vw) calc(171/var(--media-width) * 100vw), 0 0;
  }

  .tobainuma .map .map_btn1:hover {
    background-size: 0 0, calc(419/var(--media-width) * 100vw) calc(171/var(--media-width) * 100vw);
  }

  .tobainuma .map .map_btn2 {
    width: calc(186/var(--media-width) * 100vw);
    height: calc(196/var(--media-width) * 100vw);
    top: calc(1/var(--media-width) * 100vw);
    left: calc(658/var(--media-width) * 100vw);
    background-size: calc(186/var(--media-width) * 100vw) calc(196/var(--media-width) * 100vw), 0 0;
  }

  .tobainuma .map .map_btn2:hover {
    background-size: 0 0, calc(186/var(--media-width) * 100vw) calc(196/var(--media-width) * 100vw);
  }

  .tobainuma .map .map_btn3 {
    width: calc(499/var(--media-width) * 100vw);
    height: calc(241/var(--media-width) * 100vw);
    top: calc(160/var(--media-width) * 100vw);
    left: calc(96/var(--media-width) * 100vw);
    background-size: calc(499/var(--media-width) * 100vw) calc(241/var(--media-width) * 100vw), 0 0;
  }

  .tobainuma .map .map_btn3:hover {
    background-size: 0 0, calc(499/var(--media-width) * 100vw) calc(241/var(--media-width) * 100vw);
  }

}

@media (max-width:480px) {
  .tobainuma .inner {
    padding: 80px 0 100px 0;
  }

  .tobainuma .inner .title {
    width: 100%;
  }

  .tobainuma .inner .article {
    width: 100%;
    padding: 20px 25px 0 25px;
  }

  .tobainuma .inner figure {
    padding: 0;
  }

  .tobainuma .map {
    width: calc(480/var(--media-sp-width) * 100vw);
    height: calc(328/var(--media-sp-width) * 100vw);
    margin: 80px auto 0 auto;
  }

  .tobainuma .map .base {
    width: calc(480/var(--media-sp-width) * 100vw);
    top: calc(14/var(--media-sp-width) * 100vw);
  }

  .tobainuma .map .map_btn1 {
    width: calc(198/var(--media-sp-width) * 100vw);
    height: calc(44/var(--media-sp-width) * 100vw);
    top: calc(2/var(--media-sp-width) * 100vw);
    left: calc(38/var(--media-sp-width) * 100vw);
    background: url("../img/map_btn1_sp.png") left top no-repeat;
    background-size: cover;
  }

  .tobainuma .map .map_btn2 {
    width: calc(104/var(--media-sp-width) * 100vw);
    height: calc(44/var(--media-sp-width) * 100vw);
    top: calc(20/var(--media-sp-width) * 100vw);
    left: calc(345/var(--media-sp-width) * 100vw);
    background: url("../img/map_btn2_sp.png") left top no-repeat;
    background-size: cover;
  }

  .tobainuma .map .map_btn3 {
    width: calc(149/var(--media-sp-width) * 100vw);
    height: calc(44/var(--media-sp-width) * 100vw);
    top: calc(170/var(--media-sp-width) * 100vw);
    left: calc(97/var(--media-sp-width) * 100vw);
    background: url("../img/map_btn3_sp.png") left top no-repeat;
    background-size: cover;
  }


}

.earthboat_title {
  width: 100%;
}

.earthboat_title .inner {
  width: 1000px;
  height: 670px;
  margin: 0 auto;
  background: url("../img/earthboat_bg.jpg") center center no-repeat;
  position: relative;

}

.earthboat_title .inner .copy {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.earthboat_title .inner .copy .mark {
  width: 62px;
  margin: 0 auto;
  text-align: center;
}

.earthboat_title .inner .copy h2 {
  width: 280px;
  margin: 20px auto;
}

.earthboat_title .inner .copy p {
  font-family: "ads-shiokaze", sans-serif;
  font-weight: 800;
  text-align: center;
  color: #fff;
  font-size: 2rem;
}

@media (max-width:820px) {
  .earthboat_title .inner {
    width: 100%;
    height: 549px;
    background-size: cover;
  }
}

@media (max-width:480px) {
  .earthboat_title .inner {
    width: 100%;
    height: 60vh;
  }

  .earthboat_title .inner .copy h2 {
    width: 260px;
  }
}

.earthboat {
  width: 100%;
}

.earthboat .inner {
  width: 1000px;
  margin: 0 auto;
  padding: 120px 0 120px 60px;
  background: url("../common/bg.webp") center top repeat-y;
  position: relative;

}

.earthboat .inner .bird {
  position: absolute;
  top: 120px;
  right: 40px;
}

.earthboat .inner h2 {
  font-size: 6rem;
  font-family: "Lilita One", sans-serif;
  color: var(--color2);
  line-height: 1.1;
  position: relative;
  z-index: 5;

}

/*
.earthboat .inner h2:before{
  width:443px;
  height: 162px;
  content: "";
  background: url("../img/mountain.png");
  background-size: cover;
  position: absolute;
  top:-80px;
  left:-30px;
  z-index: -1;
}*/
.earthboat .inner h3 {
  font-family: "ads-shiokaze", sans-serif;
  margin: 0 0 40px 0;
  color: var(--color2);
  font-size: 2rem;
  font-weight: 800;
  position: relative;
  z-index: 5;
}

.earthboat .inner .article {
  width: 50%;
  padding-right: 40px;
}

.earthboat .inner .slick02 {
  width: 50%;

}

.slick02_cts {
  width: 100%;
}

.btn {
  margin: 60px 0 0 0;
  text-align: center;
}

.btn.pa3 {
  margin: 60px 0 40px 0;
}

.btn.pa4 {
  margin: 80px 0 100px 0;
}

.btn.pa5 {
  margin: 60px 0 80px 0;
}

.btn1 {
  min-width: 300px;
  margin: 0 4px;
  padding: 18px 40px;
  text-align: center;
  text-decoration: none;

  color: #fff;
  background: #227446 url("../common/icon1.png") right 20px center no-repeat;
  background-size: 15px;
  display: inline-block;
  transition: 0.3s;
}

.btn1:hover {
  background: #f36100 url("../common/icon1.png") right 18px center no-repeat;
  background-size: 20px;
}

.btn1.reserve {
  background: #f36100 url("../common/icon1.png") right 20px center no-repeat;
  background-size: 15px;
}

.btn1.reserve:hover {
  background: #009ed2 url("../common/icon1.png") right 18px center no-repeat;
  background-size: 20px;
}

.btn2 {
  min-width: 300px;
  margin: 0 4px;
  padding: 18px 40px;
  text-align: center;
  text-decoration: none;

  color: #fff;
  background: #227446 url("../common/icon2.png") right 20px center no-repeat;
  background-size: 8px;
  display: inline-block;
  transition: 0.3s;
}

.btn2:hover {
  background: #f36100 url("../common/icon2.png") right 10px center no-repeat;
  background-size: 12px;
}

@media (max-width:820px) {
  .earthboat .inner {
    width: 100%;
    padding: 140px 60px 80px 60px;
    background: url("../common/bg.webp") center top repeat-y;
    position: relative;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  }
}

@media (max-width:480px) {
  .btn.pa2 {
    margin: 40px 0 0 0;
  }

  .btn.pa5 {
    margin: 60px 0 60px 0;
  }

  .btn1,
  .btn2 {
    margin: 0 4px 10px 4px;
  }

  .earthboat .inner {
    padding: 100px 25px 80px 25px;
  }

  .earthboat .inner h2 {
    font-size: 5.0rem;

  }

  .earthboat .inner h2:before {
    top: -90px;
    left: 20px;
    z-index: -1;
  }

  .earthboat .inner h3 {
    margin: 0 0 30px 0;
  }

  .earthboat .inner .bird {
    width: 12%;
    position: absolute;
    top: 40px;
    right: 20%;
    z-index: 5;
  }

  .earthboat .inner .article {
    width: 100%;
    padding-right: 0;
  }

  .earthboat .inner .slick02 {
    width: 100%;
    padding: 40px 0 0 0;
  }
}

.camp_title {
  width: 100%;
}

.camp_title .inner {
  width: 1000px;
  height: 670px;
  margin: 0 auto;
  background: url("../img/camp_bg.webp") center center no-repeat;
  position: relative;

}

.camp_title .inner .copy {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.camp_title .inner .copy .mark {
  width: 62px;
  margin: 0 auto;
  text-align: center;
}

.camp_title .inner .copy h2 {
  margin-top: 10px;
  font-family: "Lilita One", sans-serif;
  font-size: 5rem;
  text-align: center;
  color: #fff;
  line-height: 1.3;
  position: relative;
}

.camp_title .inner .copy p {
  font-family: "ads-shiokaze", sans-serif;
  font-weight: 800;
  text-align: center;
  font-size: 2rem;
  color: #fff;
}

@media (max-width:820px) {
  .camp_title .inner {
    width: 100%;
    height: 549px;
    background-size: cover;
  }
}

@media (max-width:480px) {
  .camp_title .inner {
    width: 100%;
    height: 60vh;
  }

  .camp_title .inner .copy h2 {
    margin-top: 10px;
    font-size: 4.6rem;
  }

  .camp_title .inner .copy p {
    letter-spacing: -0.1em;
  }
}

.camp {
  width: 100%;
}

.camp .inner {
  width: 1000px;
  margin: 0 auto;
  padding: 180px 60px 120px 60px;
  background-image: url("../img/leaf.png"), url("../img/mountain2.png"), url("../common/bg.webp");
  background-repeat: no-repeat, no-repeat, repeat-y;
  background-position: center top, center bottom, center top;
  position: relative;

}

.camp .inner h2 {
  width: 454px;
  position: relative;
  z-index: 5;
}

.camp .inner h2:before {
  width: 130px;
  height: 94px;
  content: "";
  background: url("../img/tent.png");
  background-size: cover;
  position: absolute;
  top: 80px;
  right: 0;
  z-index: -1;
}

.camp .inner .article {
  width: 50%;
}

.camp .inner .pic {
  width: 50%;
  padding: 40px 0 0 0;
}

.camp .inner h3 {
  font-family: "ads-shiokaze", sans-serif;
  margin: 40px 10px 10px 10px;
  color: var(--color2);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.camp .inner p {
  padding: 0 30px 0 14px;
}

@media (max-width:820px) {
  .camp .inner {
    width: 100%;
  }

  .camp .inner h2:before {
    width: 100px;
    height: 72px;
    top: 80px;
    right: 0;
  }

  .camp .inner .pic {
    padding: 150px 0 0 0;
  }

  .camp .inner p {
    padding: 0 10px 0 10px;
  }
}

@media (max-width:480px) {
  .camp .inner {
    padding: 100px 25px 80px 25px;
    background-image: url("../img/leaf.png"), url("../img/mountain2.png"), url("../common/bg.webp");
    background-repeat: no-repeat, no-repeat, repeat-y;
    background-position: left top, center bottom, center top;
    background-size: 200%, 200%, 200%;
  }

  .camp .inner .article {
    width: 100%;
  }

  .camp .inner .pic {
    width: 100%;
    padding: 30px 0 0 0;
  }

  .camp .inner h2 {
    width: 100%;
  }

  .camp .inner h3 {
    margin: 40px 0 10px -4px;
    letter-spacing: -0.1em;
  }

  .camp .inner p {
    padding: 0 0 0 0;
  }
}

.rv_title {
  width: 100%;
}

.rv_title .inner {
  width: 1000px;
  height: 670px;
  margin: 0 auto;
  background: url("../img/rv_bg.webp") center center no-repeat;
  position: relative;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.rv_title .inner .copy {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.rv_title .inner .copy .mark {
  width: 62px;
  margin: 0 auto;
  text-align: center;
}

.rv_title .inner .copy h2 {
  margin-top: 10px;
  font-family: "Lilita One", sans-serif;
  font-size: 5rem;
  text-align: center;
  color: #fff;
  line-height: 1.3;
  position: relative;
}

.rv_title .inner .copy p {
  font-family: "ads-shiokaze", sans-serif;
  font-weight: 800;
  font-size: 2rem;
  text-align: center;
  color: #fff;
}

@media (max-width:820px) {
  .rv_title .inner {
    width: 100%;
    height: 549px;
    background-size: cover;
  }
}

@media (max-width:480px) {
  .rv_title .inner {
    width: 100%;
    height: 60vh;
  }

  .rv_title .inner .copy h2 {
    margin-top: 10px;
    font-size: 4.6rem;
  }
}

.rv {
  width: 100%;
}

.rv .inner {
  width: 1000px;
  margin: 0 auto;
  padding: 180px 0 120px 60px;
  background-image: url("../common/bg3.png");
  background-repeat: repeat-y;
  background-position: center top;
  position: relative;
  /*box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  
  border-radius: 0 0 10px 10px;*/
}

.rv .inner h2 {
  width: 366px;
  position: relative;
  z-index: 5;
}

.rv .inner h2:before {
  width: 130px;
  height: 94px;
  content: "";
  background: url("../img/car.png");
  background-size: cover;
  opacity: 0.8;
  position: absolute;
  top: 90px;
  right: -100px;
  z-index: -1;
}

.rv .inner .article {
  width: 50%;
  padding: 60px 0 0 0;
}

.rv .inner .pic {
  width: 50%;
  padding: 0 0 0 0;
  opacity: 0.9;
}

.rv .inner h3 {
  font-family: "ads-shiokaze", sans-serif;
  margin: 40px 0 10px 0;
  color: #ffe119;
  font-size: 2rem;
  font-weight: 800;

}

.rv .inner p {
  padding: 0 0 0 4px;
  color: #fff;
}

.map {
  width: 100%;
  overflow-y: clip;
}

.map .inner {
  width: 1000px;
  height: 640px;
  margin: 0 auto;
  position: relative;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  border-radius: 10px 10px 0 0;
  overflow: hidden;
}

iframe {
  width: 100%;
  height: 100%;
  /*
  filter:hue-rotate(200deg);
  -webkit-filter:hue-rotate(300deg)*/
}

@media (max-width:820px) {
  .rv .inner {
    width: 100%;
    padding-right: 40px;
  }

  .rv .inner h2:before {
    width: 100px;
    height: 72px;
    top: 80px;
    right: 0;
  }

  .rv .inner .article {
    padding: 0 0 0 0;
  }

  .rv .inner .pic {
    padding: 0 0 0 0;
  }

  .rv .inner p {
    padding: 0 10px 0 10px;
  }

  .map .inner {
    width: 100%;
    height: 640px;
  }
}

@media (max-width:480px) {
  .rv .inner {
    padding: 140px 25px 80px 25px;
    background-image: url("../common/bg3.png");
    background-repeat: repeat-y;
    background-position: center top;
    background-size: 200%, 200%;
  }

  .rv .inner .article {
    width: 100%;
  }

  .rv .inner .pic {
    width: 100%;
    padding: 30px 0 0 0;
  }

  .rv .inner h2 {
    width: 80%;
  }

  .rv .inner h2:before {
    top: 80px;
    right: -80px;
  }

  .rv .inner h3 {
    margin: 40px 0 10px 0;
  }

  .rv .inner p {
    padding: 0;
  }

  .map .inner {
    width: 100%;
    height: 460px;
    border-radius: 0;
  }
}




/************************************  sub  *****************************************/

.main_camp {
  width: 100vw;
  min-width: 1200px;
  height: 60vh;
  min-height: 768px;
  background: url("../camp/img/title_bg.webp") center top no-repeat;
  background-size: cover;
  position: relative;
}

#glamping .main_camp {
  background: url("../glamping/img/title_bg.webp") center center no-repeat;
  background-size: cover;
}

#access .main_camp {
  background: url("../access/img/title_bg.webp") center center no-repeat;
  background-size: cover;
}

#qa .main_camp,
#guide .main_camp {
  background: url("../qa/img/title_bg.webp") center top no-repeat;
  background-size: cover;
}

#rental .main_camp {
  background: url("../rental/img/title_bg.webp") center center no-repeat;
  background-size: cover;
}

#rv .main_camp {
  background: url("../rv/img/title_bg.webp") center center no-repeat;
  background-size: cover;
}

#news .main_camp {
  background: url("../news/img/title_bg.webp") center center no-repeat;
  background-size: cover;
}

.main_camp .copy {
  width: 100%;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.main_camp .copy h2 {
  font-family: "ads-shiokaze", sans-serif;
  letter-spacing: -0.05em;
  color: #fff;
  font-size: 7rem;
  line-height: 1.2;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.6);
}

.main_camp .copy h3 {
  margin-top: 1em;
  font-family: "Lilita One", sans-serif;
  letter-spacing: 0.1em;
  color: #fff;
  font-size: 3rem;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.6);
}

#glamping .main_camp .copy h2 {
  letter-spacing: -0.1em;
}

#glamping .main_camp .copy h3 {
  width: 280px;
  margin: 20px auto;
}

.wrap {
  width: 100%;
  margin: 0;
  position: relative;
  z-index: 1;
  background: url("../common/bg.webp") center top 100px repeat;
}

.wrap2 {
  width: 100%;
  margin: 0;
  position: relative;
  z-index: 1;
  background: url("../common/bg3.png") center top 100px repeat;
}

.wrap .gra {
  width: 100%;
  height: 100px;
  margin: 0 auto;
  position: absolute;
  top: -100px;
  background-image: linear-gradient(180deg, transparent, #f1eddd);
}

.wrap .inner {
  width: 1000px;
  margin: 0 auto;
  padding: 100px 0 100px 0;
  /*box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);*/
}

.left {
  width: 50%;
  padding: 0 20px 0 0;
  position: relative;
}

.right {
  width: 50%;
  padding: 80px 0 0 60px;
}

.right.earthboat2 {
  width: 50%;
  padding: 10px 0 0 60px;
}

.reverse .left {
  width: 50%;
  padding: 0 0 0 20px;
  position: relative;
}

.reverse .right {
  width: 50%;
  padding: 10px 60px 0 0;
}

.right.pa2 {
  padding: 10px 0 0 60px;
}


.left h2 {
  margin: 0 0 1em 0;
  font-family: "ads-shiokaze", sans-serif;
  letter-spacing: -0.05em;
  color: var(--color2);
  font-size: 3rem;
  line-height: 1.3;
}

.left .tent {
  width: 130px;
  position: absolute;
  top: 10px;
  right: -60px;
  z-index: 1;
}

.table1 {
  margin-top: 40px;
}

.table1.full {
  margin: 40px 60px 0 60px;
}

.table1_item {
  width: calc(100% / 3);
  padding: 10px 0;
  text-align: center;
  background: #fff;
  border-right: 1px solid var(--color2);
  border-bottom: 1px solid var(--color2);
}

.table1_item:nth-child(3n + 1) {
  border-left: 1px solid var(--color2);
}

.table1_item.head {
  color: #fff;
  background: var(--color2);
}

.table1_item span {
  display: none;
}

.table2 {
  margin-top: 40px;
}

.table2_item {
  width: calc(100% / 2);
  padding: 10px 0;
  text-align: center;
  background: #fff;
  border-right: 1px solid var(--color2);
  border-bottom: 1px solid var(--color2);
}

.table2_item:nth-child(2n + 1) {
  border-left: 1px solid var(--color2);
}

.table2_item.head {
  color: #fff;
  background: var(--color2);
}

.table2_item span {
  display: none;
}

.table3 {
  margin: 40px 0;
}

.table3_item {
  width: calc(100% / 4);
  text-align: center;
  background: #fff;
  border-right: 1px solid var(--color2);
  border-bottom: 1px solid var(--color2);
}

.table3_item:nth-child(4n + 1) {
  border-left: 1px solid var(--color2);
}

.table3_item.head p {
  padding: 10px 0;
  color: #fff;
  background: var(--color2);
}

.table3_item.head span {
  padding: 10px 0;
  display: block;
}


.sub_title {
  margin: 120px auto 60px auto;
  text-align: center;
  line-height: 1.1;
  font-size: 5.2rem;
  color: var(--color2);
  /*font-family: "Lilita One", sans-serif;*/
  font-family: "ads-shiokaze", sans-serif;
  letter-spacing: -0.05em;
  display: block;
  position: relative;
}

.sub_title.ma2 {
  margin: 20px auto 60px auto;
}

.sub_title.w {
  margin: 0 auto 60px auto;
  color: #fff;
}

.sub_title span {

  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0;
  text-align: center;
  display: block;

}

.sub_title:before {
  content: "";
  width: 189px;
  height: 41px;
  margin: 0 0 0 -189px;
  /*background: url("../common/title_left.png") no-repeat;*/
  background-size: cover;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
}

.sub_title:after {
  content: "";
  width: 189px;
  height: 41px;
  margin: 0 0 0 189px;
  /*background: url("../common/title_right.png") no-repeat;*/
  background-size: cover;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
}

.sub_title.w:before {
  content: "";
  width: 189px;
  height: 41px;
  margin: 0 0 0 -189px;
  /*background: url("../common/title_left_w.png") no-repeat;*/
  background-size: cover;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
}

.sub_title.w:after {
  content: "";
  width: 189px;
  height: 41px;
  margin: 0 0 0 189px;
  /*background: url("../common/title_right_w.png") no-repeat;*/
  background-size: cover;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
}

.sub_title2 {
  min-height: 216px;
  margin: 80px 0 0 0;
  line-height: 1.1;
  font-size: 5.2rem;
  color: #5f4c3f;
  font-family: "Lilita One", sans-serif;
  display: block;
  display: flex;
  align-items: center;
  background: url("../common/sub_title_bg.png") center center no-repeat;
}

.sub_title2.ma2 {
  margin: 0 0 0 0;
}

.sub_title2.ma3 {
  margin: -80px 0 0 0;
}

.sub_title2:before {
  content: "";
  width: 50px;
  height: 2px;
  margin-right: 20px;
  background: linear-gradient(90deg, #227446 0, #227446 20%, #5f4c3f 20%);

  flex-grow: 1;
}

.sub_title2:after {
  content: "";
  width: 50px;
  height: 2px;
  margin-left: 20px;
  background: linear-gradient(-90deg, #227446 0, #227446 20%, #5f4c3f 20%);
  flex-grow: 1;
}

.sub_title3 {
  margin: -70px 0 70px 0;
  font-family: "Noto Serif JP", serif;
  color: #5f4c3f;

  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0;
  text-align: center;
  display: block;
}

.sub_title4 {
  margin: 0 auto 60px auto;
  text-align: center;
  line-height: 1.3;
  font-size: 3rem;
  color: var(--color2);
  font-family: "ads-shiokaze", sans-serif;
  letter-spacing: -0.05em;
  display: block;
  position: relative;
}

.sub_title5 {
  margin: -20px auto 20px auto;
  padding: 0 0 20px 0;
  line-height: 1.3;
  font-size: 2.4rem;
  font-weight: 600;
  color: #604c3f;
  border-bottom: 1px solid #604c3f;
}

.sub_title5.ma {
  margin: 60px auto 20px auto;
}

.sub_title4.ma2 {
  margin: 40px auto 50px auto;
}

.item_c3 {
  width: calc(100% / 3);
  padding: 0 10px 20px 10px;
}

.item_c3 figure {
  width: 100%;
  position: relative;
  overflow: hidden;
  background: #000;
}

.item_c3 figure img {
  transition: 0.6s;
  opacity: 0.6;
}

.item_c3 a:hover figure img {
  transform: scale(1.4);
  opacity: 1;
}

.item_c3 figure p {
  width: 100%;
  height: 100%;
  padding: 10px;
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
}

.slick01_other .thumb {
  margin: 0 10px;
  position: relative;
}

.slick01_other .thumb a {
  text-decoration: none;
  color: #fff;
}

.slick01_other .thumb p {
  height: 30px;
  padding: 2px 10px;
  display: inline-block;
  background: #49372d;
  position: relative;
  top: -30px;
}

.shadow {
  width: 100%;
  margin: -20px auto 0 auto;
  position: relative;
}

.shadow:after {
  position: absolute;
  content: "";
  box-shadow: 0 15px 10px rgba(0, 0, 0, .5);
  transform: rotate(3deg);
  right: 5px;
  left: auto;
  top: auto;
  bottom: 15px;
  z-index: -1;
  width: 50%;
  height: 20%;
}

.frame {
  position: relative;
  display: inline-block;
  border: 1 solid #f4f1e4;
  box-shadow: 0 0 2px rgba(0, 0, 0, .2);
  overflow: hidden;
}

.banner_rental {
  margin: 60px 0;
  padding: 0 40px;
  transition: 0.3s;
}

.banner_rental a:hover {
  opacity: 0.8;
}

@media (max-width:820px) {
  .main_camp {
    width: 100vw;
    min-width: auto;
    height: 70vh;
    min-height: auto;
  }

  .wrap .gra {
    width: 100%;
  }

  .wrap .inner {
    width: 100%;
    padding: 60px 40px;
  }

  .wrap .inner2 {
    width: 100%;
  }

  .wrap2 .inner {
    width: 100%;
  }

  .main_camp .copy h2 {
    font-size: 6rem;
  }

  .main_camp .copy h3 {
    font-size: 3rem;
  }

  .sub_title2.ma3 {
    margin: -40px 0 0 0;
  }

  #glamping .main_camp .copy h3 {
    width: 260px;
    margin: 20px auto;
  }
}

@media (max-width:480px) {
  .main_camp .copy h2 {
    font-size: 4rem;
  }

  .main_camp .copy h3 {
    font-size: 2rem;
  }

  #glamping .main_camp .copy h2 {
    font-size: 4.5rem;
  }

  #glamping .main_camp .copy h2 span {
    font-size: 2.8rem;
  }

  #glamping .main_camp .copy h3 {
    width: 200px;
    margin: 20px auto;
  }

  .wrap .inner {
    padding: 80px 25px 80px 25px;
  }

  .wrap2 .inner {
    padding: 80px 25px 80px 25px;
  }

  .left {
    width: 100%;
    padding: 0 0 0 0;
  }

  .right {
    width: 100%;
    padding: 40px 0 0 0;
  }

  .right.pa2 {
    padding: 40px 0 0 0;
  }

  .right.earthboat2 {
    width: 100%;
    padding: 40px 0 0 0;
  }

  .reverse .left {
    width: 100%;
    padding: 0 0 0 0;
    position: relative;
  }

  .reverse .right {
    width: 100%;
    padding: 40px 0 0 0;
  }

  .left .tent {
    width: 100px;
    position: absolute;
    top: 50px;
    right: -10px;
    z-index: 1;
  }

  .sub_title {
    margin: 120px auto 60px auto;
    font-size: 5.6rem;
  }

  .sub_title2 {
    margin: 80px 0 0 0;
    font-size: 5.0rem;
  }

  .sub_title2.ma2 {
    margin: -40px 0 0 0;
  }

  .sub_title2.ma3 {
    margin: -60px 0 -10px 0;
  }

  .sub_title4 {
    font-size: 2.8rem;
  }

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

  .table1_item {
    font-size: 1.4rem;
  }

  .item_c3 {
    width: calc(100% / 2);
    padding: 0 5px 10px 5px;
  }

  .table1.full {
    margin: 40px 0 0 0;
  }

  .banner_rental {
    margin: 60px 0;
    padding: 0 20px;
  }

  .wrap .banner_rental {
    margin: 60px 0;
    padding: 0 0;
  }

  .table3_item {
    width: calc(100% / 1);
    border-left: 1px solid var(--color2);
  }
}

#glamping .bird {
  width: 80px;
  position: absolute;
  top: -40px;
  right: 0;
}

.list_box {
  margin: 60px 0 0 0;
  padding: 20px 40px;
  border-radius: 10px;
  border: 1px solid #49372d;
  background: #fff;
}

.list_box.ma {
  margin: 30px 0 0 0;
}

.list_box2 {
  margin: 60px 0 -40px 0;
  padding: 30px 20px 20px 40px;
  border-radius: 10px;
  border: 1px solid #49372d;
  background: #fff;
}

.list_box2 li {
  display: inline-block;
  margin: 0 20px 10px 0;
  padding: 5px 20px;
  border-radius: 4px;
  color: #fff;
  background: #227446;
}

.earthboat_type {
  width: 100%;
  margin: 0;
  padding: 100px 0 140px 0;
  position: relative;
  top: 0;
  z-index: 1;
  background: url("../common/bg.webp") center top repeat;
  overflow: hidden;
}

.earthboat_type .inner {
  width: 1100px;
  margin: 0 auto;
}

.earthboat_type::before {
  content: '';
  height: 100%;
  position: absolute;
  top: 200px;
  bottom: 0;
  left: 0;
  right: 0;
  /*background-color: rgba(136, 197, 77, 0.6);*/
  background: url("../common/wood_bg.webp") no-repeat;
  opacity: 0.9;
  transform: skewY(-7deg);
  z-index: -1;
}

.slick04,
.slick05 {
  width: 50%;
  position: relative;
}

.slick_title {
  margin: 120px auto 60px auto;
  text-align: center;
  line-height: 1.1;
  font-size: 4.8rem;
  white-space: nowrap;
  color: #fff;
  /*font-family: "Lilita One", sans-serif;*/
  font-family: "ads-shiokaze", sans-serif;
  letter-spacing: -0.05em;
  display: block;
  position: absolute;
  top: 150px;
  left: 50%;
  transform: translateX(-50%);
}

.slick_title span {
  margin: 10px 0 0 0;

  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0;
  text-align: center;
  display: block;

}

.option_box {
  padding: 40px 100px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.6);
  border: 3px solid #604c3f;
}

.option_box.ma2 {
  margin: 80px 0 40px 0;
}

.option_right {
  width: 50%;
  padding: 0;
}

.option_left {
  width: 50%;
  padding: 0 40px 50px 0;
}

.option_right h5 {
  margin: 20px 0;
  font-family: "ads-shiokaze", sans-serif;
  letter-spacing: -0.05em;
  color: #5f4c3f;
  font-size: 3rem;
  line-height: 1.3;
}

.reverse .option_right {
  width: 50%;
  padding: 0;
}

.reverse .option_left {
  width: 50%;
  padding: 0 0 50px 40px;
}

.label_reserve {
  padding: 0 20px;
  color: #fff;
  font-size: 1.2rem;
  background: #ae402e;
  display: inline-block;
  position: relative;
  bottom: -16px;
}

.label_shop {
  padding: 0 20px;
  color: #fff;
  font-size: 1.2rem;
  background: #1a6a35;
  display: inline-block;
  position: relative;
  bottom: -16px;
}

#rv .car {
  width: 100px;
  position: absolute;
  top: 0;
  right: 0;
}

@media (max-width:820px) {
  .earthboat_type {
    width: 100%;
    margin: 0;
    padding: 100px 0 100px 0;
    position: relative;
    top: 0;
    z-index: 1;
    background: url("../common/bg.webp") center top repeat;
    overflow: hidden;
  }

  .earthboat_type .inner {
    width: 100%;
  }

  .earthboat_type::before {
    top: 0;
  }

  .option_box {
    padding: 10px 40px 40px 40px;
  }
}

@media (max-width:480px) {
  #glamping .bird {
    width: 80px;
    position: absolute;
    top: -100px;
    right: 0;
  }

  .slick04,
  .slick05 {
    width: 100%;
  }

  .earthboat_type {
    width: 100%;
    margin: -40px 0 0 0;
    padding: 100px 0 100px 0;
  }

  .earthboat_type .inner {
    width: 100%;
    padding: 0 30px;
  }

  .earthboat_type::before {
    top: 100px;
  }

  .slick_title {
    margin: 0 auto;
    font-size: 4.2rem;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -21px);
  }

  .option_box {
    padding: 10px 30px 30px 30px;
  }

  .option_left {
    width: 100%;
    padding: 0;
  }

  .option_right {
    width: 100%;
    padding: 0 0 40px 0;
  }

  .option_right h5 {
    margin: 15px 0 5px 0;
    line-height: 1;
    font-size: 2.4rem;
  }

  .reverse .option_left {
    width: 100%;
    padding: 0;
  }

  .reverse .option_right {
    width: 100%;
    padding: 0 0 40px 0;
  }

  .label_reserve {
    bottom: -6px;
  }

  .label_shop {
    bottom: -6px;
  }

  .list_box2 {
    margin: 40px 0 -40px 0;
    padding: 20px;
  }

  .list_box2 li {
    display: block;
    margin: 0 0 10px 0;
    padding: 5px;
    text-align: center;
  }

}

.small_t {
  width: 50%;
  padding: 35px;
  color: #fff;
  text-align: center;
  background: #449cb7;
}

.big_t {
  width: 50%;
  padding: 35px;
  color: #fff;
  text-align: center;
  background: #776950;
}

.small_t h4,
.big_t h4 {
  font-size: 3.6rem;
  letter-spacing: -0.05em;
  font-family: "ads-shiokaze", sans-serif;
}

.small_t figure,
.big_t figure {
  width: 100%;
  margin-top: 20px;
  border-radius: 4px;
  overflow: hidden;
}

.rental_list {
  margin: 40px 0;
}

.rental_items {
  width: calc(100%/ 4);
  margin: 0;
  position: relative;
}

.rental_items .cts {
  padding: 0 5px 10px 5px;
}

.rental_items a {
  text-decoration: none;
  color: #fff;
}

.rental_items p {
  height: 30px;
  padding: 2px 10px;
  display: inline-block;
  background: #49372d;
  position: relative;
  top: -30px;
}

@media (max-width:820px) {
  .rental_items {
    width: calc(100%/ 3);
  }

  .rental_items p {
    height: auto;
    bottom: 0;
  }
}

@media (max-width:480px) {
  .small_t {
    width: 100%;
    padding: 35px;
  }

  .big_t {
    width: 100%;
    padding: 35px;
  }

  .rental_list {
    margin: 60px 0;
  }

  .rental_items {
    width: calc(100%/ 2);
  }

  .rental_items p {
    height: auto;
    bottom: 0;
  }
}

.qa_list {
  max-width: 100%;
  margin-bottom: 15px;
  border: none;
  border-radius: 5px;
  box-shadow: 0 4px 4px rgb(0 0 0 / 2%), 0 2px 3px -2px rgba(0 0 0 / 5%);
  background-color: #fff;
}

.qa_list summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 20px 30px 20px 60px;
  font-weight: 800;
  font-size: 1.5rem;
  cursor: pointer;
}

.qa_list summary::before,
.qa_list p::before {
  position: absolute;
  left: 20px;
}

.qa_list summary::before {
  color: #227446;
  font-size: 3rem;
  line-height: 1;
  content: "Q";
  font-family: "Lilita One", sans-serif;
}

.qa_list summary::after {
  transform: translateY(-25%) rotate(45deg);
  width: 7px;
  height: 7px;
  margin-left: 10px;
  border-bottom: 3px solid #227446;
  border-right: 3px solid #227446;
  content: '';
  transition: transform .5s;
  position: absolute;
  z-index: 2;
  right: 15px;
}

.qa_list[open] summary::after {
  transform: rotate(225deg);
}

.qa_list p {
  border-top: 1px dotted #bbb;
  position: relative;
  transform: translateY(-20px);
  opacity: 0;
  margin: 0;
  padding: 20px 20px 20px 60px;
  transition: transform .5s, opacity .5s;

}

.qa_list[open] p {
  transform: none;
  opacity: 1;
}

.qa_list p::before {
  color: #449cb7;
  line-height: 1;
  font-size: 3rem;
  content: "A";
  font-family: "Lilita One", sans-serif;
}

.notes p.ma {
  margin-bottom: 20px;
}

.notes p.ma2 {
  margin-top: -20px;
}

.access_ma {
  margin-top: -100px;
}

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

.access_ma2 {
  margin-top: 60px;
}

.access_ma h5 {
  margin: -50px 0 10px 0;
  padding: 10px 0;
  color: var(--color2);
  font-size: 1.6rem;
  border-bottom: 1px dotted #776950;
}


.access_left {
  width: calc(50% - 60px);
  margin: 0 20px 0 40px;
  text-align: left;
}

.access_right {
  width: calc(50% - 60px);
  margin: 0 40px 0 20px;
}

.access_ma2 .access_left,
.access_ma2 .access_right {
  border: 1px solid var(--color2);
  background: #fff;
}

/*
.access_box {
  border: 1px solid var(--color2);
  background: #fff;
}
*/
.access_ma2 h6 {
  background: var(--color2);
  color: #fff;
  padding: 20px;
}

.access_ma2 p {
  padding: 20px;
}

@media (max-width:820px) {
  .access_ma {
    margin-top: -40px;
  }

  .access_left {
    width: calc(50% - 20px);
    margin: 0 20px 0 0;
  }

  .access_right {
    width: calc(50% - 20px);
    margin: 0 0 0 20px;
  }
}

@media (max-width:480px) {
  .access_ma {
    margin-top: -100px;
  }

  .access_left {
    width: 100%;
    margin: 0 0 40px 0;
  }

  .access_right {
    width: 100%;
    margin: 0 0 0 0;
  }
}